@charset "UTF-8";

/**
     * This injects Tailwind's base styles, which is a combination of
     * Normalize.css and some additional base styles.
     *
     * You can see the styles here:
     * https://github.com/tailwindcss/tailwindcss/blob/master/css/preflight.css
     *
     * If using `postcss-import`, use this import instead:
     *
     * @import "tailwindcss/preflight";
     */
@tailwind base;

/**
      * This injects any component classes registered by plugins.
      *
      * If using `postcss-import`, use this import instead:
      *
      * @import "tailwindcss/components";
      */

.contain {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.contain-fluid {
  width: 100%;
  max-width: 1460px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 576px) {
  .contain {
    max-width: 576px;
  }
}

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

@media (min-width: 992px) {
  .contain {
    max-width: 992px;
  }
}

@media (min-width: 1140px) {
  .contain {
    max-width: 1140px;
  }
}

@media (min-width: 1460px) {
  .contain {
    max-width: 1460px;
  }
}

/**
      * Here you would add any of your custom component classes; stuff that you'd
      * want loaded *before* the utilities so that the utilities could still
      * override them.
      *
      * Example:
      *
      * .btn { ... }
      * .form-input { ... }
      *
      * Or if using a preprocessor or `postcss-import`:
      *
      * @import "components/buttons";
      * @import "components/forms"; 
      */

/**
      * This injects all of Tailwind's utility classes, generated based on your
      * config file.
      *
      * If using `postcss-import`, use this import instead:
      *
      * @import "tailwindcss/utilities";
      */

.list-reset {
  list-style: none;
  padding: 0;
}

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-local {
  background-attachment: local;
}

.bg-scroll {
  background-attachment: scroll;
}

.bg-transparent {
  background-color: transparent;
}

.bg-currentColor {
  background-color: currentColor;
}

.bg-black {
  background-color: #222;
}

.bg-black-10 {
  background-color: rgba(0, 0, 0, .1);
}

.bg-black-20 {
  background-color: rgba(0, 0, 0, .2);
}

.bg-black-30 {
  background-color: rgba(0, 0, 0, .3);
}

.bg-black-40 {
  background-color: rgba(0, 0, 0, .4);
}

.bg-black-50 {
  background-color: rgba(0, 0, 0, .5);
}

.bg-black-60 {
  background-color: rgba(0, 0, 0, .6);
}

.bg-black-70 {
  background-color: rgba(0, 0, 0, .7);
}

.bg-black-80 {
  background-color: rgba(0, 0, 0, .8);
}

.bg-black-90 {
  background-color: rgba(0, 0, 0, .9);
}

.bg-black-1 {
  background-color: #313131;
}

.bg-white {
  background-color: #fff;
}

.bg-blue {
  background-color: #0277bd;
}

.bg-dark-blue {
  background-color: #0277bd;
}

.bg-blue-1 {
  background-color: #17214a;
}

.bg-light-blue {
  background-color: #0277bd;
}

.bg-red {
  background-color: #cb001c;
}

.bg-green {
  background-color: #00bea0;
}

.bg-purple {
  background-color: #5a80d1;
}

.bg-orange {
  background-color: #ff9a0a;
}

.bg-grey {
  background-color: #929a9d;
}

.bg-grey-light {
  background-color: #e2e2e2;
}

.bg-grey-1 {
  background-color: #f2f3f3;
}

.bg-grey-2 {
  background-color: #c2c6c8;
}

.bg-grey-3 {
  background-color: #6b7375;
}

.bg-grey-4 {
  background-color: #465052;
}

.bg-grey-5 {
  background-color: #828688;
}

.bg-sd-red {
  background-color: #ed1c24;
}

.bg-light-blue-1 {
  background-color: #21b8de;
}

.bg-dark-blue-1 {
  background-color: #0277bd;
}

.bg-dark-orange {
  background-color: #df8403;
}

.bg-g-blue {
  background-color: #17214a;
}

.bg-g-blue-1 {
  background-color: #556d88;
}

.bg-g-blue-2 {
  background-color: #3c4c65;
}

.bg-g-blue-3 {
  background-color: #222e4d;
}

.hover\:bg-transparent:hover {
  background-color: transparent;
}

.hover\:bg-currentColor:hover {
  background-color: currentColor;
}

.hover\:bg-black:hover {
  background-color: #222;
}

.hover\:bg-black-10:hover {
  background-color: rgba(0, 0, 0, .1);
}

.hover\:bg-black-20:hover {
  background-color: rgba(0, 0, 0, .2);
}

.hover\:bg-black-30:hover {
  background-color: rgba(0, 0, 0, .3);
}

.hover\:bg-black-40:hover {
  background-color: rgba(0, 0, 0, .4);
}

.hover\:bg-black-50:hover {
  background-color: rgba(0, 0, 0, .5);
}

.hover\:bg-black-60:hover {
  background-color: rgba(0, 0, 0, .6);
}

.hover\:bg-black-70:hover {
  background-color: rgba(0, 0, 0, .7);
}

.hover\:bg-black-80:hover {
  background-color: rgba(0, 0, 0, .8);
}

.hover\:bg-black-90:hover {
  background-color: rgba(0, 0, 0, .9);
}

.hover\:bg-black-1:hover {
  background-color: #313131;
}

.hover\:bg-white:hover {
  background-color: #fff;
}

.hover\:bg-blue:hover {
  background-color: #0277bd;
}

.hover\:bg-dark-blue:hover {
  background-color: #0277bd;
}

.hover\:bg-blue-1:hover {
  background-color: #17214a;
}

.hover\:bg-light-blue:hover {
  background-color: #0277bd;
}

.hover\:bg-red:hover {
  background-color: #cb001c;
}

.hover\:bg-green:hover {
  background-color: #00bea0;
}

.hover\:bg-purple:hover {
  background-color: #5a80d1;
}

.hover\:bg-orange:hover {
  background-color: #ff9a0a;
}

.hover\:bg-grey:hover {
  background-color: #929a9d;
}

.hover\:bg-grey-light:hover {
  background-color: #e2e2e2;
}

.hover\:bg-grey-1:hover {
  background-color: #f2f3f3;
}

.hover\:bg-grey-2:hover {
  background-color: #c2c6c8;
}

.hover\:bg-grey-3:hover {
  background-color: #6b7375;
}

.hover\:bg-grey-4:hover {
  background-color: #465052;
}

.hover\:bg-grey-5:hover {
  background-color: #828688;
}

.hover\:bg-sd-red:hover {
  background-color: #ed1c24;
}

.hover\:bg-light-blue-1:hover {
  background-color: #21b8de;
}

.hover\:bg-dark-blue-1:hover {
  background-color: #0277bd;
}

.hover\:bg-dark-orange:hover {
  background-color: #df8403;
}

.hover\:bg-g-blue:hover {
  background-color: #17214a;
}

.hover\:bg-g-blue-1:hover {
  background-color: #556d88;
}

.hover\:bg-g-blue-2:hover {
  background-color: #3c4c65;
}

.hover\:bg-g-blue-3:hover {
  background-color: #222e4d;
}

.bg-bottom {
  background-position: bottom;
}

.bg-center {
  background-position: center;
}

.bg-left {
  background-position: left;
}

.bg-left-bottom {
  background-position: left bottom;
}

.bg-left-top {
  background-position: left top;
}

.bg-right {
  background-position: right;
}

.bg-right-bottom {
  background-position: right bottom;
}

.bg-right-top {
  background-position: right top;
}

.bg-top {
  background-position: top;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat-x {
  background-repeat: repeat-x;
}

.bg-repeat-y {
  background-repeat: repeat-y;
}

.bg-auto {
  background-size: auto;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.border-transparent {
  border-color: transparent;
}

.border-currentColor {
  border-color: currentColor;
}

.border-black {
  border-color: #222;
}

.border-black-10 {
  border-color: rgba(0, 0, 0, .1);
}

.border-black-20 {
  border-color: rgba(0, 0, 0, .2);
}

.border-black-30 {
  border-color: rgba(0, 0, 0, .3);
}

.border-black-40 {
  border-color: rgba(0, 0, 0, .4);
}

.border-black-50 {
  border-color: rgba(0, 0, 0, .5);
}

.border-black-60 {
  border-color: rgba(0, 0, 0, .6);
}

.border-black-70 {
  border-color: rgba(0, 0, 0, .7);
}

.border-black-80 {
  border-color: rgba(0, 0, 0, .8);
}

.border-black-90 {
  border-color: rgba(0, 0, 0, .9);
}

.border-black-1 {
  border-color: #313131;
}

.border-white {
  border-color: #fff;
}

.border-blue {
  border-color: #0277bd;
}

.border-dark-blue {
  border-color: #0277bd;
}

.border-blue-1 {
  border-color: #17214a;
}

.border-light-blue {
  border-color: #0277bd;
}

.border-red {
  border-color: #cb001c;
}

.border-green {
  border-color: #00bea0;
}

.border-purple {
  border-color: #5a80d1;
}

.border-orange {
  border-color: #ff9a0a;
}

.border-grey {
  border-color: #929a9d;
}

.border-grey-light {
  border-color: #e2e2e2;
}

.border-grey-1 {
  border-color: #f2f3f3;
}

.border-grey-2 {
  border-color: #c2c6c8;
}

.border-grey-3 {
  border-color: #6b7375;
}

.border-grey-4 {
  border-color: #465052;
}

.border-grey-5 {
  border-color: #828688;
}

.border-sd-red {
  border-color: #ed1c24;
}

.border-light-blue-1 {
  border-color: #21b8de;
}

.border-dark-blue-1 {
  border-color: #0277bd;
}

.border-dark-orange {
  border-color: #df8403;
}

.border-g-blue {
  border-color: #17214a;
}

.border-g-blue-1 {
  border-color: #556d88;
}

.border-g-blue-2 {
  border-color: #3c4c65;
}

.border-g-blue-3 {
  border-color: #222e4d;
}

.hover\:border-transparent:hover {
  border-color: transparent;
}

.hover\:border-currentColor:hover {
  border-color: currentColor;
}

.hover\:border-black:hover {
  border-color: #222;
}

.hover\:border-black-10:hover {
  border-color: rgba(0, 0, 0, .1);
}

.hover\:border-black-20:hover {
  border-color: rgba(0, 0, 0, .2);
}

.hover\:border-black-30:hover {
  border-color: rgba(0, 0, 0, .3);
}

.hover\:border-black-40:hover {
  border-color: rgba(0, 0, 0, .4);
}

.hover\:border-black-50:hover {
  border-color: rgba(0, 0, 0, .5);
}

.hover\:border-black-60:hover {
  border-color: rgba(0, 0, 0, .6);
}

.hover\:border-black-70:hover {
  border-color: rgba(0, 0, 0, .7);
}

.hover\:border-black-80:hover {
  border-color: rgba(0, 0, 0, .8);
}

.hover\:border-black-90:hover {
  border-color: rgba(0, 0, 0, .9);
}

.hover\:border-black-1:hover {
  border-color: #313131;
}

.hover\:border-white:hover {
  border-color: #fff;
}

.hover\:border-blue:hover {
  border-color: #0277bd;
}

.hover\:border-dark-blue:hover {
  border-color: #0277bd;
}

.hover\:border-blue-1:hover {
  border-color: #17214a;
}

.hover\:border-light-blue:hover {
  border-color: #0277bd;
}

.hover\:border-red:hover {
  border-color: #cb001c;
}

.hover\:border-green:hover {
  border-color: #00bea0;
}

.hover\:border-purple:hover {
  border-color: #5a80d1;
}

.hover\:border-orange:hover {
  border-color: #ff9a0a;
}

.hover\:border-grey:hover {
  border-color: #929a9d;
}

.hover\:border-grey-light:hover {
  border-color: #e2e2e2;
}

.hover\:border-grey-1:hover {
  border-color: #f2f3f3;
}

.hover\:border-grey-2:hover {
  border-color: #c2c6c8;
}

.hover\:border-grey-3:hover {
  border-color: #6b7375;
}

.hover\:border-grey-4:hover {
  border-color: #465052;
}

.hover\:border-grey-5:hover {
  border-color: #828688;
}

.hover\:border-sd-red:hover {
  border-color: #ed1c24;
}

.hover\:border-light-blue-1:hover {
  border-color: #21b8de;
}

.hover\:border-dark-blue-1:hover {
  border-color: #0277bd;
}

.hover\:border-dark-orange:hover {
  border-color: #df8403;
}

.hover\:border-g-blue:hover {
  border-color: #17214a;
}

.hover\:border-g-blue-1:hover {
  border-color: #556d88;
}

.hover\:border-g-blue-2:hover {
  border-color: #3c4c65;
}

.hover\:border-g-blue-3:hover {
  border-color: #222e4d;
}

.rounded-none {
  border-radius: 0;
}

.rounded-sm {
  border-radius: .125rem;
}

.rounded {
  border-radius: .25rem;
}

.rounded-lg {
  border-radius: .5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-t-none {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.rounded-r-none {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rounded-b-none {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.rounded-l-none {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rounded-t-sm {
  border-top-left-radius: .125rem;
  border-top-right-radius: .125rem;
}

.rounded-r-sm {
  border-top-right-radius: .125rem;
  border-bottom-right-radius: .125rem;
}

.rounded-b-sm {
  border-bottom-right-radius: .125rem;
  border-bottom-left-radius: .125rem;
}

.rounded-l-sm {
  border-top-left-radius: .125rem;
  border-bottom-left-radius: .125rem;
}

.rounded-t {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.rounded-r {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.rounded-b {
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.rounded-l {
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.rounded-t-lg {
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.rounded-r-lg {
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.rounded-b-lg {
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
}

.rounded-l-lg {
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
}

.rounded-t-full {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.rounded-b-full {
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-l-full {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-tl-none {
  border-top-left-radius: 0;
}

.rounded-tr-none {
  border-top-right-radius: 0;
}

.rounded-br-none {
  border-bottom-right-radius: 0;
}

.rounded-bl-none {
  border-bottom-left-radius: 0;
}

.rounded-tl-sm {
  border-top-left-radius: .125rem;
}

.rounded-tr-sm {
  border-top-right-radius: .125rem;
}

.rounded-br-sm {
  border-bottom-right-radius: .125rem;
}

.rounded-bl-sm {
  border-bottom-left-radius: .125rem;
}

.rounded-tl {
  border-top-left-radius: .25rem;
}

.rounded-tr {
  border-top-right-radius: .25rem;
}

.rounded-br {
  border-bottom-right-radius: .25rem;
}

.rounded-bl {
  border-bottom-left-radius: .25rem;
}

.rounded-tl-lg {
  border-top-left-radius: .5rem;
}

.rounded-tr-lg {
  border-top-right-radius: .5rem;
}

.rounded-br-lg {
  border-bottom-right-radius: .5rem;
}

.rounded-bl-lg {
  border-bottom-left-radius: .5rem;
}

.rounded-tl-full {
  border-top-left-radius: 9999px;
}

.rounded-tr-full {
  border-top-right-radius: 9999px;
}

.rounded-br-full {
  border-bottom-right-radius: 9999px;
}

.rounded-bl-full {
  border-bottom-left-radius: 9999px;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-none {
  border-style: none;
}

.border-0 {
  border-width: 0;
}

.border-2 {
  border-width: 2px;
}

.border-3 {
  border-width: 3px;
}

.border-4 {
  border-width: 4px;
}

.border-5 {
  border-width: 5px;
}

.border-6 {
  border-width: 6px;
}

.border-7 {
  border-width: 7px;
}

.border-8 {
  border-width: 8px;
}

.border-9 {
  border-width: 9px;
}

.border-10 {
  border-width: 10px;
}

.border {
  border-width: 1px;
}

.border-t-0 {
  border-top-width: 0;
}

.border-r-0 {
  border-right-width: 0;
}

.border-b-0 {
  border-bottom-width: 0;
}

.border-l-0 {
  border-left-width: 0;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-r-2 {
  border-right-width: 2px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-t-3 {
  border-top-width: 3px;
}

.border-r-3 {
  border-right-width: 3px;
}

.border-b-3 {
  border-bottom-width: 3px;
}

.border-l-3 {
  border-left-width: 3px;
}

.border-t-4 {
  border-top-width: 4px;
}

.border-r-4 {
  border-right-width: 4px;
}

.border-b-4 {
  border-bottom-width: 4px;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-t-5 {
  border-top-width: 5px;
}

.border-r-5 {
  border-right-width: 5px;
}

.border-b-5 {
  border-bottom-width: 5px;
}

.border-l-5 {
  border-left-width: 5px;
}

.border-t-6 {
  border-top-width: 6px;
}

.border-r-6 {
  border-right-width: 6px;
}

.border-b-6 {
  border-bottom-width: 6px;
}

.border-l-6 {
  border-left-width: 6px;
}

.border-t-7 {
  border-top-width: 7px;
}

.border-r-7 {
  border-right-width: 7px;
}

.border-b-7 {
  border-bottom-width: 7px;
}

.border-l-7 {
  border-left-width: 7px;
}

.border-t-8 {
  border-top-width: 8px;
}

.border-r-8 {
  border-right-width: 8px;
}

.border-b-8 {
  border-bottom-width: 8px;
}

.border-l-8 {
  border-left-width: 8px;
}

.border-t-9 {
  border-top-width: 9px;
}

.border-r-9 {
  border-right-width: 9px;
}

.border-b-9 {
  border-bottom-width: 9px;
}

.border-l-9 {
  border-left-width: 9px;
}

.border-t-10 {
  border-top-width: 10px;
}

.border-r-10 {
  border-right-width: 10px;
}

.border-b-10 {
  border-bottom-width: 10px;
}

.border-l-10 {
  border-left-width: 10px;
}

.border-t {
  border-top-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l {
  border-left-width: 1px;
}

.cursor-auto {
  cursor: auto;
}

.cursor-default {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-wait {
  cursor: wait;
}

.cursor-move {
  cursor: move;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.table {
  display: table;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
}

.hidden {
  display: none;
}

.flex {
  display: -webkit-box;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: inline-flex;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
          flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-no-wrap {
  flex-wrap: nowrap;
}

.items-start {
  -webkit-box-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
          align-items: flex-end;
}

.items-center {
  -webkit-box-align: center;
          align-items: center;
}

.items-baseline {
  -webkit-box-align: baseline;
          align-items: baseline;
}

.items-stretch {
  -webkit-box-align: stretch;
          align-items: stretch;
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

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

.self-stretch {
  align-self: stretch;
}

.justify-start {
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

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

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.flex-1 {
  -webkit-box-flex: 1;
          flex: 1;
}

.flex-auto {
  -webkit-box-flex: 1;
          flex: auto;
}

.flex-initial {
  -webkit-box-flex: initial;
          flex: initial;
}

.flex-none {
  -webkit-box-flex: 0;
          flex: none;
}

.flex-grow {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-no-grow {
  -webkit-box-flex: 0;
          flex-grow: 0;
}

.flex-no-shrink {
  flex-shrink: 0;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.font-Roboto {
  font-family: Roboto;
}

.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-xxbold {
  font-weight: 900;
}

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

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

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

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

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

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

.hover\:font-xxbold:hover {
  font-weight: 900;
}

.h-0 {
  height: 0;
}

.h-1 {
  height: .25rem;
}

.h-2 {
  height: .5rem;
}

.h-3 {
  height: .75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-9 {
  height: 2.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.h-18 {
  height: 4.5rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-48 {
  height: 12rem;
}

.h-64 {
  height: 16rem;
}

.h-auto {
  height: auto;
}

.h-px {
  height: 1px;
}

.h-2px {
  height: 2px;
}

.h-42px {
  height: 2.625rem;
}

.h-50px {
  height: 50px;
}

.h-100px {
  height: 100px;
}

.h-125px {
  height: 125px;
}

.h-150px {
  height: 150px;
}

.h-175px {
  height: 175px;
}

.h-200px {
  height: 200px;
}

.h-225px {
  height: 225px;
}

.h-250px {
  height: 250px;
}

.h-275px {
  height: 275px;
}

.h-300px {
  height: 300px;
}

.h-325px {
  height: 325px;
}

.h-350px {
  height: 350px;
}

.h-375px {
  height: 375px;
}

.h-400px {
  height: 400px;
}

.h-500px {
  height: 500px;
}

.h-576px {
  height: 576px;
}

.h-600px {
  height: 600px;
}

.h-700px {
  height: 700px;
}

.h-768px {
  height: 768px;
}

.h-800px {
  height: 800px;
}

.h-900px {
  height: 900px;
}

.h-992px {
  height: 992px;
}

.h-1000px {
  height: 1000px;
}

.h-1140px {
  height: 1140px;
}

.h-1200px {
  height: 1200px;
}

.h-1460px {
  height: 1460px;
}

.h-1600px {
  height: 1600px;
}

.h-screen {
  height: 100vh;
}

.h-half {
  height: 50%;
}

.h-quarter {
  height: 75%;
}

.h-85\% {
  height: 85%;
}

.h-full {
  height: 100%;
}

.hover\:h-0:hover {
  height: 0;
}

.hover\:h-1:hover {
  height: .25rem;
}

.hover\:h-2:hover {
  height: .5rem;
}

.hover\:h-3:hover {
  height: .75rem;
}

.hover\:h-4:hover {
  height: 1rem;
}

.hover\:h-5:hover {
  height: 1.25rem;
}

.hover\:h-6:hover {
  height: 1.5rem;
}

.hover\:h-7:hover {
  height: 1.75rem;
}

.hover\:h-8:hover {
  height: 2rem;
}

.hover\:h-9:hover {
  height: 2.25rem;
}

.hover\:h-10:hover {
  height: 2.5rem;
}

.hover\:h-12:hover {
  height: 3rem;
}

.hover\:h-14:hover {
  height: 3.5rem;
}

.hover\:h-16:hover {
  height: 4rem;
}

.hover\:h-18:hover {
  height: 4.5rem;
}

.hover\:h-24:hover {
  height: 6rem;
}

.hover\:h-32:hover {
  height: 8rem;
}

.hover\:h-48:hover {
  height: 12rem;
}

.hover\:h-64:hover {
  height: 16rem;
}

.hover\:h-auto:hover {
  height: auto;
}

.hover\:h-px:hover {
  height: 1px;
}

.hover\:h-2px:hover {
  height: 2px;
}

.hover\:h-42px:hover {
  height: 2.625rem;
}

.hover\:h-50px:hover {
  height: 50px;
}

.hover\:h-100px:hover {
  height: 100px;
}

.hover\:h-125px:hover {
  height: 125px;
}

.hover\:h-150px:hover {
  height: 150px;
}

.hover\:h-175px:hover {
  height: 175px;
}

.hover\:h-200px:hover {
  height: 200px;
}

.hover\:h-225px:hover {
  height: 225px;
}

.hover\:h-250px:hover {
  height: 250px;
}

.hover\:h-275px:hover {
  height: 275px;
}

.hover\:h-300px:hover {
  height: 300px;
}

.hover\:h-325px:hover {
  height: 325px;
}

.hover\:h-350px:hover {
  height: 350px;
}

.hover\:h-375px:hover {
  height: 375px;
}

.hover\:h-400px:hover {
  height: 400px;
}

.hover\:h-500px:hover {
  height: 500px;
}

.hover\:h-576px:hover {
  height: 576px;
}

.hover\:h-600px:hover {
  height: 600px;
}

.hover\:h-700px:hover {
  height: 700px;
}

.hover\:h-768px:hover {
  height: 768px;
}

.hover\:h-800px:hover {
  height: 800px;
}

.hover\:h-900px:hover {
  height: 900px;
}

.hover\:h-992px:hover {
  height: 992px;
}

.hover\:h-1000px:hover {
  height: 1000px;
}

.hover\:h-1140px:hover {
  height: 1140px;
}

.hover\:h-1200px:hover {
  height: 1200px;
}

.hover\:h-1460px:hover {
  height: 1460px;
}

.hover\:h-1600px:hover {
  height: 1600px;
}

.hover\:h-screen:hover {
  height: 100vh;
}

.hover\:h-half:hover {
  height: 50%;
}

.hover\:h-quarter:hover {
  height: 75%;
}

.hover\:h-85\%:hover {
  height: 85%;
}

.hover\:h-full:hover {
  height: 100%;
}

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

.leading-heading {
  line-height: 1.1;
}

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

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

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

.m-0 {
  margin: 0;
}

.m-1 {
  margin: .25rem;
}

.m-2 {
  margin: .5rem;
}

.m-3 {
  margin: .75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-7 {
  margin: 1.75rem;
}

.m-8 {
  margin: 2rem;
}

.m-9 {
  margin: 2.25rem;
}

.m-10 {
  margin: 2.5rem;
}

.m-12 {
  margin: 3rem;
}

.m-16 {
  margin: 4rem;
}

.m-20 {
  margin: 5rem;
}

.m-24 {
  margin: 6rem;
}

.m-28 {
  margin: 7rem;
}

.m-32 {
  margin: 8rem;
}

.m-36 {
  margin: 9rem;
}

.m-40 {
  margin: 10rem;
}

.m-44 {
  margin: 11rem;
}

.m-48 {
  margin: 12rem;
}

.m-56 {
  margin: 14rem;
}

.m-60 {
  margin: 15rem;
}

.m-64 {
  margin: 16rem;
}

.m-80 {
  margin: 20rem;
}

.m-96 {
  margin: 24rem;
}

.m-120 {
  margin: 30rem;
}

.m-160 {
  margin: 40rem;
}

.m-auto {
  margin: auto;
}

.m-px {
  margin: 1px;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-1 {
  margin-top: .25rem;
  margin-bottom: .25rem;
}

.mx-1 {
  margin-left: .25rem;
  margin-right: .25rem;
}

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

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

.my-3 {
  margin-top: .75rem;
  margin-bottom: .75rem;
}

.mx-3 {
  margin-left: .75rem;
  margin-right: .75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-56 {
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.mx-56 {
  margin-left: 14rem;
  margin-right: 14rem;
}

.my-60 {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.mx-60 {
  margin-left: 15rem;
  margin-right: 15rem;
}

.my-64 {
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.mx-64 {
  margin-left: 16rem;
  margin-right: 16rem;
}

.my-80 {
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.mx-80 {
  margin-left: 20rem;
  margin-right: 20rem;
}

.my-96 {
  margin-top: 24rem;
  margin-bottom: 24rem;
}

.mx-96 {
  margin-left: 24rem;
  margin-right: 24rem;
}

.my-120 {
  margin-top: 30rem;
  margin-bottom: 30rem;
}

.mx-120 {
  margin-left: 30rem;
  margin-right: 30rem;
}

.my-160 {
  margin-top: 40rem;
  margin-bottom: 40rem;
}

.mx-160 {
  margin-left: 40rem;
  margin-right: 40rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-px {
  margin-top: 1px;
  margin-bottom: 1px;
}

.mx-px {
  margin-left: 1px;
  margin-right: 1px;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

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

.ml-0 {
  margin-left: 0;
}

.mt-1 {
  margin-top: .25rem;
}

.mr-1 {
  margin-right: .25rem;
}

.mb-1 {
  margin-bottom: .25rem;
}

.ml-1 {
  margin-left: .25rem;
}

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

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

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

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

.mt-3 {
  margin-top: .75rem;
}

.mr-3 {
  margin-right: .75rem;
}

.mb-3 {
  margin-bottom: .75rem;
}

.ml-3 {
  margin-left: .75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-56 {
  margin-top: 14rem;
}

.mr-56 {
  margin-right: 14rem;
}

.mb-56 {
  margin-bottom: 14rem;
}

.ml-56 {
  margin-left: 14rem;
}

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

.mr-60 {
  margin-right: 15rem;
}

.mb-60 {
  margin-bottom: 15rem;
}

.ml-60 {
  margin-left: 15rem;
}

.mt-64 {
  margin-top: 16rem;
}

.mr-64 {
  margin-right: 16rem;
}

.mb-64 {
  margin-bottom: 16rem;
}

.ml-64 {
  margin-left: 16rem;
}

.mt-80 {
  margin-top: 20rem;
}

.mr-80 {
  margin-right: 20rem;
}

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

.ml-80 {
  margin-left: 20rem;
}

.mt-96 {
  margin-top: 24rem;
}

.mr-96 {
  margin-right: 24rem;
}

.mb-96 {
  margin-bottom: 24rem;
}

.ml-96 {
  margin-left: 24rem;
}

.mt-120 {
  margin-top: 30rem;
}

.mr-120 {
  margin-right: 30rem;
}

.mb-120 {
  margin-bottom: 30rem;
}

.ml-120 {
  margin-left: 30rem;
}

.mt-160 {
  margin-top: 40rem;
}

.mr-160 {
  margin-right: 40rem;
}

.mb-160 {
  margin-bottom: 40rem;
}

.ml-160 {
  margin-left: 40rem;
}

.mt-auto {
  margin-top: auto;
}

.mr-auto {
  margin-right: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.mt-px {
  margin-top: 1px;
}

.mr-px {
  margin-right: 1px;
}

.mb-px {
  margin-bottom: 1px;
}

.ml-px {
  margin-left: 1px;
}

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

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

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

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

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

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

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

.max-h-7 {
  max-height: 1.75rem;
}

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

.max-h-9 {
  max-height: 2.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.max-h-screen {
  max-height: 100vw;
}

.max-h-half {
  max-height: 50%;
}

.max-h-quarter {
  max-height: 75%;
}

.max-h-85\% {
  max-height: 85%;
}

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

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

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

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

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

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

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

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

.max-w-7 {
  max-width: 1.75rem;
}

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

.max-w-9 {
  max-width: 2.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.max-w-half {
  max-width: 50%;
}

.max-w-quarter {
  max-width: 75%;
}

.max-w-85\% {
  max-width: 85%;
}

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

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

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

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

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

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

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

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

.min-h-7 {
  min-height: 1.75rem;
}

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

.min-h-9 {
  min-height: 2.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.min-h-screen {
  min-height: 100vw;
}

.min-h-half {
  min-height: 50%;
}

.min-h-quarter {
  min-height: 75%;
}

.min-h-85\% {
  min-height: 85%;
}

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

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

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

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

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

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

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

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

.min-w-7 {
  min-width: 1.75rem;
}

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

.min-w-9 {
  min-width: 2.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.min-w-half {
  min-width: 50%;
}

.min-w-quarter {
  min-width: 75%;
}

.min-w-85\% {
  min-width: 85%;
}

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

.-m-0 {
  margin: 0;
}

.-m-1 {
  margin: -0.25rem;
}

.-m-2 {
  margin: -0.5rem;
}

.-m-3 {
  margin: -0.75rem;
}

.-m-4 {
  margin: -1rem;
}

.-m-5 {
  margin: -1.25rem;
}

.-m-6 {
  margin: -1.5rem;
}

.-m-7 {
  margin: -1.75rem;
}

.-m-8 {
  margin: -2rem;
}

.-m-9 {
  margin: -2.25rem;
}

.-m-10 {
  margin: -2.5rem;
}

.-m-12 {
  margin: -3rem;
}

.-m-16 {
  margin: -4rem;
}

.-m-20 {
  margin: -5rem;
}

.-m-24 {
  margin: -6rem;
}

.-m-28 {
  margin: -7rem;
}

.-m-32 {
  margin: -8rem;
}

.-m-36 {
  margin: -9rem;
}

.-m-40 {
  margin: -10rem;
}

.-m-44 {
  margin: -11rem;
}

.-m-48 {
  margin: -12rem;
}

.-m-56 {
  margin: -14rem;
}

.-m-60 {
  margin: -15rem;
}

.-m-64 {
  margin: -16rem;
}

.-m-80 {
  margin: -20rem;
}

.-m-96 {
  margin: -24rem;
}

.-m-120 {
  margin: -30rem;
}

.-m-160 {
  margin: -40rem;
}

.-m-auto {
  margin: -auto;
}

.-m-px {
  margin: -1px;
}

.-my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.-mx-0 {
  margin-left: 0;
  margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.-my-56 {
  margin-top: -14rem;
  margin-bottom: -14rem;
}

.-mx-56 {
  margin-left: -14rem;
  margin-right: -14rem;
}

.-my-60 {
  margin-top: -15rem;
  margin-bottom: -15rem;
}

.-mx-60 {
  margin-left: -15rem;
  margin-right: -15rem;
}

.-my-64 {
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.-mx-64 {
  margin-left: -16rem;
  margin-right: -16rem;
}

.-my-80 {
  margin-top: -20rem;
  margin-bottom: -20rem;
}

.-mx-80 {
  margin-left: -20rem;
  margin-right: -20rem;
}

.-my-96 {
  margin-top: -24rem;
  margin-bottom: -24rem;
}

.-mx-96 {
  margin-left: -24rem;
  margin-right: -24rem;
}

.-my-120 {
  margin-top: -30rem;
  margin-bottom: -30rem;
}

.-mx-120 {
  margin-left: -30rem;
  margin-right: -30rem;
}

.-my-160 {
  margin-top: -40rem;
  margin-bottom: -40rem;
}

.-mx-160 {
  margin-left: -40rem;
  margin-right: -40rem;
}

.-my-auto {
  margin-top: -auto;
  margin-bottom: -auto;
}

.-mx-auto {
  margin-left: -auto;
  margin-right: -auto;
}

.-my-px {
  margin-top: -1px;
  margin-bottom: -1px;
}

.-mx-px {
  margin-left: -1px;
  margin-right: -1px;
}

.-mt-0 {
  margin-top: 0;
}

.-mr-0 {
  margin-right: 0;
}

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

.-ml-0 {
  margin-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.-mt-56 {
  margin-top: -14rem;
}

.-mr-56 {
  margin-right: -14rem;
}

.-mb-56 {
  margin-bottom: -14rem;
}

.-ml-56 {
  margin-left: -14rem;
}

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

.-mr-60 {
  margin-right: -15rem;
}

.-mb-60 {
  margin-bottom: -15rem;
}

.-ml-60 {
  margin-left: -15rem;
}

.-mt-64 {
  margin-top: -16rem;
}

.-mr-64 {
  margin-right: -16rem;
}

.-mb-64 {
  margin-bottom: -16rem;
}

.-ml-64 {
  margin-left: -16rem;
}

.-mt-80 {
  margin-top: -20rem;
}

.-mr-80 {
  margin-right: -20rem;
}

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

.-ml-80 {
  margin-left: -20rem;
}

.-mt-96 {
  margin-top: -24rem;
}

.-mr-96 {
  margin-right: -24rem;
}

.-mb-96 {
  margin-bottom: -24rem;
}

.-ml-96 {
  margin-left: -24rem;
}

.-mt-120 {
  margin-top: -30rem;
}

.-mr-120 {
  margin-right: -30rem;
}

.-mb-120 {
  margin-bottom: -30rem;
}

.-ml-120 {
  margin-left: -30rem;
}

.-mt-160 {
  margin-top: -40rem;
}

.-mr-160 {
  margin-right: -40rem;
}

.-mb-160 {
  margin-bottom: -40rem;
}

.-ml-160 {
  margin-left: -40rem;
}

.-mt-auto {
  margin-top: -auto;
}

.-mr-auto {
  margin-right: -auto;
}

.-mb-auto {
  margin-bottom: -auto;
}

.-ml-auto {
  margin-left: -auto;
}

.-mt-px {
  margin-top: -1px;
}

.-mr-px {
  margin-right: -1px;
}

.-mb-px {
  margin-bottom: -1px;
}

.-ml-px {
  margin-left: -1px;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: .25;
}

.opacity-50 {
  opacity: .5;
}

.opacity-75 {
  opacity: .75;
}

.opacity-100 {
  opacity: 1;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.scrolling-touch {
  -webkit-overflow-scrolling: touch;
}

.scrolling-auto {
  -webkit-overflow-scrolling: auto;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: .25rem;
}

.p-2 {
  padding: .5rem;
}

.p-3 {
  padding: .75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.p-9 {
  padding: 2.25rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-12 {
  padding: 3rem;
}

.p-16 {
  padding: 4rem;
}

.p-20 {
  padding: 5rem;
}

.p-24 {
  padding: 6rem;
}

.p-28 {
  padding: 7rem;
}

.p-32 {
  padding: 8rem;
}

.p-36 {
  padding: 9rem;
}

.p-40 {
  padding: 10rem;
}

.p-44 {
  padding: 11rem;
}

.p-48 {
  padding: 12rem;
}

.p-56 {
  padding: 14rem;
}

.p-60 {
  padding: 15rem;
}

.p-64 {
  padding: 16rem;
}

.p-80 {
  padding: 20rem;
}

.p-96 {
  padding: 24rem;
}

.p-120 {
  padding: 30rem;
}

.p-160 {
  padding: 40rem;
}

.p-px {
  padding: 1px;
}

.p-10\% {
  padding: 10%;
}

.p-20\% {
  padding: 20%;
}

.p-30\% {
  padding: 30%;
}

.p-40\% {
  padding: 40%;
}

.p-50\% {
  padding: 50%;
}

.p-60\% {
  padding: 60%;
}

.p-70\% {
  padding: 70%;
}

.p-80\% {
  padding: 80%;
}

.p-90\% {
  padding: 90%;
}

.p-1vw {
  padding: 1vw;
}

.p-2vw {
  padding: 2vw;
}

.p-3vw {
  padding: 3vw;
}

.p-4vw {
  padding: 4vw;
}

.p-5vw {
  padding: 5vw;
}

.p-6vw {
  padding: 6vw;
}

.p-7vw {
  padding: 7vw;
}

.p-8vw {
  padding: 8vw;
}

.p-9vw {
  padding: 9vw;
}

.p-10vw {
  padding: 10vw;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-1 {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.px-1 {
  padding-left: .25rem;
  padding-right: .25rem;
}

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

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

.py-3 {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.px-3 {
  padding-left: .75rem;
  padding-right: .75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-56 {
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.px-56 {
  padding-left: 14rem;
  padding-right: 14rem;
}

.py-60 {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.px-60 {
  padding-left: 15rem;
  padding-right: 15rem;
}

.py-64 {
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.px-64 {
  padding-left: 16rem;
  padding-right: 16rem;
}

.py-80 {
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.px-80 {
  padding-left: 20rem;
  padding-right: 20rem;
}

.py-96 {
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.px-96 {
  padding-left: 24rem;
  padding-right: 24rem;
}

.py-120 {
  padding-top: 30rem;
  padding-bottom: 30rem;
}

.px-120 {
  padding-left: 30rem;
  padding-right: 30rem;
}

.py-160 {
  padding-top: 40rem;
  padding-bottom: 40rem;
}

.px-160 {
  padding-left: 40rem;
  padding-right: 40rem;
}

.py-px {
  padding-top: 1px;
  padding-bottom: 1px;
}

.px-px {
  padding-left: 1px;
  padding-right: 1px;
}

.py-10\% {
  padding-top: 10%;
  padding-bottom: 10%;
}

.px-10\% {
  padding-left: 10%;
  padding-right: 10%;
}

.py-20\% {
  padding-top: 20%;
  padding-bottom: 20%;
}

.px-20\% {
  padding-left: 20%;
  padding-right: 20%;
}

.py-30\% {
  padding-top: 30%;
  padding-bottom: 30%;
}

.px-30\% {
  padding-left: 30%;
  padding-right: 30%;
}

.py-40\% {
  padding-top: 40%;
  padding-bottom: 40%;
}

.px-40\% {
  padding-left: 40%;
  padding-right: 40%;
}

.py-50\% {
  padding-top: 50%;
  padding-bottom: 50%;
}

.px-50\% {
  padding-left: 50%;
  padding-right: 50%;
}

.py-60\% {
  padding-top: 60%;
  padding-bottom: 60%;
}

.px-60\% {
  padding-left: 60%;
  padding-right: 60%;
}

.py-70\% {
  padding-top: 70%;
  padding-bottom: 70%;
}

.px-70\% {
  padding-left: 70%;
  padding-right: 70%;
}

.py-80\% {
  padding-top: 80%;
  padding-bottom: 80%;
}

.px-80\% {
  padding-left: 80%;
  padding-right: 80%;
}

.py-90\% {
  padding-top: 90%;
  padding-bottom: 90%;
}

.px-90\% {
  padding-left: 90%;
  padding-right: 90%;
}

.py-1vw {
  padding-top: 1vw;
  padding-bottom: 1vw;
}

.px-1vw {
  padding-left: 1vw;
  padding-right: 1vw;
}

.py-2vw {
  padding-top: 2vw;
  padding-bottom: 2vw;
}

.px-2vw {
  padding-left: 2vw;
  padding-right: 2vw;
}

.py-3vw {
  padding-top: 3vw;
  padding-bottom: 3vw;
}

.px-3vw {
  padding-left: 3vw;
  padding-right: 3vw;
}

.py-4vw {
  padding-top: 4vw;
  padding-bottom: 4vw;
}

.px-4vw {
  padding-left: 4vw;
  padding-right: 4vw;
}

.py-5vw {
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.px-5vw {
  padding-left: 5vw;
  padding-right: 5vw;
}

.py-6vw {
  padding-top: 6vw;
  padding-bottom: 6vw;
}

.px-6vw {
  padding-left: 6vw;
  padding-right: 6vw;
}

.py-7vw {
  padding-top: 7vw;
  padding-bottom: 7vw;
}

.px-7vw {
  padding-left: 7vw;
  padding-right: 7vw;
}

.py-8vw {
  padding-top: 8vw;
  padding-bottom: 8vw;
}

.px-8vw {
  padding-left: 8vw;
  padding-right: 8vw;
}

.py-9vw {
  padding-top: 9vw;
  padding-bottom: 9vw;
}

.px-9vw {
  padding-left: 9vw;
  padding-right: 9vw;
}

.py-10vw {
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.px-10vw {
  padding-left: 10vw;
  padding-right: 10vw;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pt-1 {
  padding-top: .25rem;
}

.pr-1 {
  padding-right: .25rem;
}

.pb-1 {
  padding-bottom: .25rem;
}

.pl-1 {
  padding-left: .25rem;
}

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

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

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

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

.pt-3 {
  padding-top: .75rem;
}

.pr-3 {
  padding-right: .75rem;
}

.pb-3 {
  padding-bottom: .75rem;
}

.pl-3 {
  padding-left: .75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-56 {
  padding-top: 14rem;
}

.pr-56 {
  padding-right: 14rem;
}

.pb-56 {
  padding-bottom: 14rem;
}

.pl-56 {
  padding-left: 14rem;
}

.pt-60 {
  padding-top: 15rem;
}

.pr-60 {
  padding-right: 15rem;
}

.pb-60 {
  padding-bottom: 15rem;
}

.pl-60 {
  padding-left: 15rem;
}

.pt-64 {
  padding-top: 16rem;
}

.pr-64 {
  padding-right: 16rem;
}

.pb-64 {
  padding-bottom: 16rem;
}

.pl-64 {
  padding-left: 16rem;
}

.pt-80 {
  padding-top: 20rem;
}

.pr-80 {
  padding-right: 20rem;
}

.pb-80 {
  padding-bottom: 20rem;
}

.pl-80 {
  padding-left: 20rem;
}

.pt-96 {
  padding-top: 24rem;
}

.pr-96 {
  padding-right: 24rem;
}

.pb-96 {
  padding-bottom: 24rem;
}

.pl-96 {
  padding-left: 24rem;
}

.pt-120 {
  padding-top: 30rem;
}

.pr-120 {
  padding-right: 30rem;
}

.pb-120 {
  padding-bottom: 30rem;
}

.pl-120 {
  padding-left: 30rem;
}

.pt-160 {
  padding-top: 40rem;
}

.pr-160 {
  padding-right: 40rem;
}

.pb-160 {
  padding-bottom: 40rem;
}

.pl-160 {
  padding-left: 40rem;
}

.pt-px {
  padding-top: 1px;
}

.pr-px {
  padding-right: 1px;
}

.pb-px {
  padding-bottom: 1px;
}

.pl-px {
  padding-left: 1px;
}

.pt-10\% {
  padding-top: 10%;
}

.pr-10\% {
  padding-right: 10%;
}

.pb-10\% {
  padding-bottom: 10%;
}

.pl-10\% {
  padding-left: 10%;
}

.pt-20\% {
  padding-top: 20%;
}

.pr-20\% {
  padding-right: 20%;
}

.pb-20\% {
  padding-bottom: 20%;
}

.pl-20\% {
  padding-left: 20%;
}

.pt-30\% {
  padding-top: 30%;
}

.pr-30\% {
  padding-right: 30%;
}

.pb-30\% {
  padding-bottom: 30%;
}

.pl-30\% {
  padding-left: 30%;
}

.pt-40\% {
  padding-top: 40%;
}

.pr-40\% {
  padding-right: 40%;
}

.pb-40\% {
  padding-bottom: 40%;
}

.pl-40\% {
  padding-left: 40%;
}

.pt-50\% {
  padding-top: 50%;
}

.pr-50\% {
  padding-right: 50%;
}

.pb-50\% {
  padding-bottom: 50%;
}

.pl-50\% {
  padding-left: 50%;
}

.pt-60\% {
  padding-top: 60%;
}

.pr-60\% {
  padding-right: 60%;
}

.pb-60\% {
  padding-bottom: 60%;
}

.pl-60\% {
  padding-left: 60%;
}

.pt-70\% {
  padding-top: 70%;
}

.pr-70\% {
  padding-right: 70%;
}

.pb-70\% {
  padding-bottom: 70%;
}

.pl-70\% {
  padding-left: 70%;
}

.pt-80\% {
  padding-top: 80%;
}

.pr-80\% {
  padding-right: 80%;
}

.pb-80\% {
  padding-bottom: 80%;
}

.pl-80\% {
  padding-left: 80%;
}

.pt-90\% {
  padding-top: 90%;
}

.pr-90\% {
  padding-right: 90%;
}

.pb-90\% {
  padding-bottom: 90%;
}

.pl-90\% {
  padding-left: 90%;
}

.pt-1vw {
  padding-top: 1vw;
}

.pr-1vw {
  padding-right: 1vw;
}

.pb-1vw {
  padding-bottom: 1vw;
}

.pl-1vw {
  padding-left: 1vw;
}

.pt-2vw {
  padding-top: 2vw;
}

.pr-2vw {
  padding-right: 2vw;
}

.pb-2vw {
  padding-bottom: 2vw;
}

.pl-2vw {
  padding-left: 2vw;
}

.pt-3vw {
  padding-top: 3vw;
}

.pr-3vw {
  padding-right: 3vw;
}

.pb-3vw {
  padding-bottom: 3vw;
}

.pl-3vw {
  padding-left: 3vw;
}

.pt-4vw {
  padding-top: 4vw;
}

.pr-4vw {
  padding-right: 4vw;
}

.pb-4vw {
  padding-bottom: 4vw;
}

.pl-4vw {
  padding-left: 4vw;
}

.pt-5vw {
  padding-top: 5vw;
}

.pr-5vw {
  padding-right: 5vw;
}

.pb-5vw {
  padding-bottom: 5vw;
}

.pl-5vw {
  padding-left: 5vw;
}

.pt-6vw {
  padding-top: 6vw;
}

.pr-6vw {
  padding-right: 6vw;
}

.pb-6vw {
  padding-bottom: 6vw;
}

.pl-6vw {
  padding-left: 6vw;
}

.pt-7vw {
  padding-top: 7vw;
}

.pr-7vw {
  padding-right: 7vw;
}

.pb-7vw {
  padding-bottom: 7vw;
}

.pl-7vw {
  padding-left: 7vw;
}

.pt-8vw {
  padding-top: 8vw;
}

.pr-8vw {
  padding-right: 8vw;
}

.pb-8vw {
  padding-bottom: 8vw;
}

.pl-8vw {
  padding-left: 8vw;
}

.pt-9vw {
  padding-top: 9vw;
}

.pr-9vw {
  padding-right: 9vw;
}

.pb-9vw {
  padding-bottom: 9vw;
}

.pl-9vw {
  padding-left: 9vw;
}

.pt-10vw {
  padding-top: 10vw;
}

.pr-10vw {
  padding-right: 10vw;
}

.pb-10vw {
  padding-bottom: 10vw;
}

.pl-10vw {
  padding-left: 10vw;
}

.hover\:p-0:hover {
  padding: 0;
}

.hover\:p-1:hover {
  padding: .25rem;
}

.hover\:p-2:hover {
  padding: .5rem;
}

.hover\:p-3:hover {
  padding: .75rem;
}

.hover\:p-4:hover {
  padding: 1rem;
}

.hover\:p-5:hover {
  padding: 1.25rem;
}

.hover\:p-6:hover {
  padding: 1.5rem;
}

.hover\:p-7:hover {
  padding: 1.75rem;
}

.hover\:p-8:hover {
  padding: 2rem;
}

.hover\:p-9:hover {
  padding: 2.25rem;
}

.hover\:p-10:hover {
  padding: 2.5rem;
}

.hover\:p-12:hover {
  padding: 3rem;
}

.hover\:p-16:hover {
  padding: 4rem;
}

.hover\:p-20:hover {
  padding: 5rem;
}

.hover\:p-24:hover {
  padding: 6rem;
}

.hover\:p-28:hover {
  padding: 7rem;
}

.hover\:p-32:hover {
  padding: 8rem;
}

.hover\:p-36:hover {
  padding: 9rem;
}

.hover\:p-40:hover {
  padding: 10rem;
}

.hover\:p-44:hover {
  padding: 11rem;
}

.hover\:p-48:hover {
  padding: 12rem;
}

.hover\:p-56:hover {
  padding: 14rem;
}

.hover\:p-60:hover {
  padding: 15rem;
}

.hover\:p-64:hover {
  padding: 16rem;
}

.hover\:p-80:hover {
  padding: 20rem;
}

.hover\:p-96:hover {
  padding: 24rem;
}

.hover\:p-120:hover {
  padding: 30rem;
}

.hover\:p-160:hover {
  padding: 40rem;
}

.hover\:p-px:hover {
  padding: 1px;
}

.hover\:p-10\%:hover {
  padding: 10%;
}

.hover\:p-20\%:hover {
  padding: 20%;
}

.hover\:p-30\%:hover {
  padding: 30%;
}

.hover\:p-40\%:hover {
  padding: 40%;
}

.hover\:p-50\%:hover {
  padding: 50%;
}

.hover\:p-60\%:hover {
  padding: 60%;
}

.hover\:p-70\%:hover {
  padding: 70%;
}

.hover\:p-80\%:hover {
  padding: 80%;
}

.hover\:p-90\%:hover {
  padding: 90%;
}

.hover\:p-1vw:hover {
  padding: 1vw;
}

.hover\:p-2vw:hover {
  padding: 2vw;
}

.hover\:p-3vw:hover {
  padding: 3vw;
}

.hover\:p-4vw:hover {
  padding: 4vw;
}

.hover\:p-5vw:hover {
  padding: 5vw;
}

.hover\:p-6vw:hover {
  padding: 6vw;
}

.hover\:p-7vw:hover {
  padding: 7vw;
}

.hover\:p-8vw:hover {
  padding: 8vw;
}

.hover\:p-9vw:hover {
  padding: 9vw;
}

.hover\:p-10vw:hover {
  padding: 10vw;
}

.hover\:py-0:hover {
  padding-top: 0;
  padding-bottom: 0;
}

.hover\:px-0:hover {
  padding-left: 0;
  padding-right: 0;
}

.hover\:py-1:hover {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.hover\:px-1:hover {
  padding-left: .25rem;
  padding-right: .25rem;
}

.hover\:py-2:hover {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.hover\:px-2:hover {
  padding-left: .5rem;
  padding-right: .5rem;
}

.hover\:py-3:hover {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.hover\:px-3:hover {
  padding-left: .75rem;
  padding-right: .75rem;
}

.hover\:py-4:hover {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.hover\:px-4:hover {
  padding-left: 1rem;
  padding-right: 1rem;
}

.hover\:py-5:hover {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.hover\:px-5:hover {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hover\:py-6:hover {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hover\:px-6:hover {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hover\:py-7:hover {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.hover\:px-7:hover {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.hover\:py-8:hover {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hover\:px-8:hover {
  padding-left: 2rem;
  padding-right: 2rem;
}

.hover\:py-9:hover {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.hover\:px-9:hover {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.hover\:py-10:hover {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hover\:px-10:hover {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.hover\:py-12:hover {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hover\:px-12:hover {
  padding-left: 3rem;
  padding-right: 3rem;
}

.hover\:py-16:hover {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hover\:px-16:hover {
  padding-left: 4rem;
  padding-right: 4rem;
}

.hover\:py-20:hover {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hover\:px-20:hover {
  padding-left: 5rem;
  padding-right: 5rem;
}

.hover\:py-24:hover {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hover\:px-24:hover {
  padding-left: 6rem;
  padding-right: 6rem;
}

.hover\:py-28:hover {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hover\:px-28:hover {
  padding-left: 7rem;
  padding-right: 7rem;
}

.hover\:py-32:hover {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.hover\:px-32:hover {
  padding-left: 8rem;
  padding-right: 8rem;
}

.hover\:py-36:hover {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.hover\:px-36:hover {
  padding-left: 9rem;
  padding-right: 9rem;
}

.hover\:py-40:hover {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.hover\:px-40:hover {
  padding-left: 10rem;
  padding-right: 10rem;
}

.hover\:py-44:hover {
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.hover\:px-44:hover {
  padding-left: 11rem;
  padding-right: 11rem;
}

.hover\:py-48:hover {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.hover\:px-48:hover {
  padding-left: 12rem;
  padding-right: 12rem;
}

.hover\:py-56:hover {
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.hover\:px-56:hover {
  padding-left: 14rem;
  padding-right: 14rem;
}

.hover\:py-60:hover {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.hover\:px-60:hover {
  padding-left: 15rem;
  padding-right: 15rem;
}

.hover\:py-64:hover {
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.hover\:px-64:hover {
  padding-left: 16rem;
  padding-right: 16rem;
}

.hover\:py-80:hover {
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.hover\:px-80:hover {
  padding-left: 20rem;
  padding-right: 20rem;
}

.hover\:py-96:hover {
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.hover\:px-96:hover {
  padding-left: 24rem;
  padding-right: 24rem;
}

.hover\:py-120:hover {
  padding-top: 30rem;
  padding-bottom: 30rem;
}

.hover\:px-120:hover {
  padding-left: 30rem;
  padding-right: 30rem;
}

.hover\:py-160:hover {
  padding-top: 40rem;
  padding-bottom: 40rem;
}

.hover\:px-160:hover {
  padding-left: 40rem;
  padding-right: 40rem;
}

.hover\:py-px:hover {
  padding-top: 1px;
  padding-bottom: 1px;
}

.hover\:px-px:hover {
  padding-left: 1px;
  padding-right: 1px;
}

.hover\:py-10\%:hover {
  padding-top: 10%;
  padding-bottom: 10%;
}

.hover\:px-10\%:hover {
  padding-left: 10%;
  padding-right: 10%;
}

.hover\:py-20\%:hover {
  padding-top: 20%;
  padding-bottom: 20%;
}

.hover\:px-20\%:hover {
  padding-left: 20%;
  padding-right: 20%;
}

.hover\:py-30\%:hover {
  padding-top: 30%;
  padding-bottom: 30%;
}

.hover\:px-30\%:hover {
  padding-left: 30%;
  padding-right: 30%;
}

.hover\:py-40\%:hover {
  padding-top: 40%;
  padding-bottom: 40%;
}

.hover\:px-40\%:hover {
  padding-left: 40%;
  padding-right: 40%;
}

.hover\:py-50\%:hover {
  padding-top: 50%;
  padding-bottom: 50%;
}

.hover\:px-50\%:hover {
  padding-left: 50%;
  padding-right: 50%;
}

.hover\:py-60\%:hover {
  padding-top: 60%;
  padding-bottom: 60%;
}

.hover\:px-60\%:hover {
  padding-left: 60%;
  padding-right: 60%;
}

.hover\:py-70\%:hover {
  padding-top: 70%;
  padding-bottom: 70%;
}

.hover\:px-70\%:hover {
  padding-left: 70%;
  padding-right: 70%;
}

.hover\:py-80\%:hover {
  padding-top: 80%;
  padding-bottom: 80%;
}

.hover\:px-80\%:hover {
  padding-left: 80%;
  padding-right: 80%;
}

.hover\:py-90\%:hover {
  padding-top: 90%;
  padding-bottom: 90%;
}

.hover\:px-90\%:hover {
  padding-left: 90%;
  padding-right: 90%;
}

.hover\:py-1vw:hover {
  padding-top: 1vw;
  padding-bottom: 1vw;
}

.hover\:px-1vw:hover {
  padding-left: 1vw;
  padding-right: 1vw;
}

.hover\:py-2vw:hover {
  padding-top: 2vw;
  padding-bottom: 2vw;
}

.hover\:px-2vw:hover {
  padding-left: 2vw;
  padding-right: 2vw;
}

.hover\:py-3vw:hover {
  padding-top: 3vw;
  padding-bottom: 3vw;
}

.hover\:px-3vw:hover {
  padding-left: 3vw;
  padding-right: 3vw;
}

.hover\:py-4vw:hover {
  padding-top: 4vw;
  padding-bottom: 4vw;
}

.hover\:px-4vw:hover {
  padding-left: 4vw;
  padding-right: 4vw;
}

.hover\:py-5vw:hover {
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.hover\:px-5vw:hover {
  padding-left: 5vw;
  padding-right: 5vw;
}

.hover\:py-6vw:hover {
  padding-top: 6vw;
  padding-bottom: 6vw;
}

.hover\:px-6vw:hover {
  padding-left: 6vw;
  padding-right: 6vw;
}

.hover\:py-7vw:hover {
  padding-top: 7vw;
  padding-bottom: 7vw;
}

.hover\:px-7vw:hover {
  padding-left: 7vw;
  padding-right: 7vw;
}

.hover\:py-8vw:hover {
  padding-top: 8vw;
  padding-bottom: 8vw;
}

.hover\:px-8vw:hover {
  padding-left: 8vw;
  padding-right: 8vw;
}

.hover\:py-9vw:hover {
  padding-top: 9vw;
  padding-bottom: 9vw;
}

.hover\:px-9vw:hover {
  padding-left: 9vw;
  padding-right: 9vw;
}

.hover\:py-10vw:hover {
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.hover\:px-10vw:hover {
  padding-left: 10vw;
  padding-right: 10vw;
}

.hover\:pt-0:hover {
  padding-top: 0;
}

.hover\:pr-0:hover {
  padding-right: 0;
}

.hover\:pb-0:hover {
  padding-bottom: 0;
}

.hover\:pl-0:hover {
  padding-left: 0;
}

.hover\:pt-1:hover {
  padding-top: .25rem;
}

.hover\:pr-1:hover {
  padding-right: .25rem;
}

.hover\:pb-1:hover {
  padding-bottom: .25rem;
}

.hover\:pl-1:hover {
  padding-left: .25rem;
}

.hover\:pt-2:hover {
  padding-top: .5rem;
}

.hover\:pr-2:hover {
  padding-right: .5rem;
}

.hover\:pb-2:hover {
  padding-bottom: .5rem;
}

.hover\:pl-2:hover {
  padding-left: .5rem;
}

.hover\:pt-3:hover {
  padding-top: .75rem;
}

.hover\:pr-3:hover {
  padding-right: .75rem;
}

.hover\:pb-3:hover {
  padding-bottom: .75rem;
}

.hover\:pl-3:hover {
  padding-left: .75rem;
}

.hover\:pt-4:hover {
  padding-top: 1rem;
}

.hover\:pr-4:hover {
  padding-right: 1rem;
}

.hover\:pb-4:hover {
  padding-bottom: 1rem;
}

.hover\:pl-4:hover {
  padding-left: 1rem;
}

.hover\:pt-5:hover {
  padding-top: 1.25rem;
}

.hover\:pr-5:hover {
  padding-right: 1.25rem;
}

.hover\:pb-5:hover {
  padding-bottom: 1.25rem;
}

.hover\:pl-5:hover {
  padding-left: 1.25rem;
}

.hover\:pt-6:hover {
  padding-top: 1.5rem;
}

.hover\:pr-6:hover {
  padding-right: 1.5rem;
}

.hover\:pb-6:hover {
  padding-bottom: 1.5rem;
}

.hover\:pl-6:hover {
  padding-left: 1.5rem;
}

.hover\:pt-7:hover {
  padding-top: 1.75rem;
}

.hover\:pr-7:hover {
  padding-right: 1.75rem;
}

.hover\:pb-7:hover {
  padding-bottom: 1.75rem;
}

.hover\:pl-7:hover {
  padding-left: 1.75rem;
}

.hover\:pt-8:hover {
  padding-top: 2rem;
}

.hover\:pr-8:hover {
  padding-right: 2rem;
}

.hover\:pb-8:hover {
  padding-bottom: 2rem;
}

.hover\:pl-8:hover {
  padding-left: 2rem;
}

.hover\:pt-9:hover {
  padding-top: 2.25rem;
}

.hover\:pr-9:hover {
  padding-right: 2.25rem;
}

.hover\:pb-9:hover {
  padding-bottom: 2.25rem;
}

.hover\:pl-9:hover {
  padding-left: 2.25rem;
}

.hover\:pt-10:hover {
  padding-top: 2.5rem;
}

.hover\:pr-10:hover {
  padding-right: 2.5rem;
}

.hover\:pb-10:hover {
  padding-bottom: 2.5rem;
}

.hover\:pl-10:hover {
  padding-left: 2.5rem;
}

.hover\:pt-12:hover {
  padding-top: 3rem;
}

.hover\:pr-12:hover {
  padding-right: 3rem;
}

.hover\:pb-12:hover {
  padding-bottom: 3rem;
}

.hover\:pl-12:hover {
  padding-left: 3rem;
}

.hover\:pt-16:hover {
  padding-top: 4rem;
}

.hover\:pr-16:hover {
  padding-right: 4rem;
}

.hover\:pb-16:hover {
  padding-bottom: 4rem;
}

.hover\:pl-16:hover {
  padding-left: 4rem;
}

.hover\:pt-20:hover {
  padding-top: 5rem;
}

.hover\:pr-20:hover {
  padding-right: 5rem;
}

.hover\:pb-20:hover {
  padding-bottom: 5rem;
}

.hover\:pl-20:hover {
  padding-left: 5rem;
}

.hover\:pt-24:hover {
  padding-top: 6rem;
}

.hover\:pr-24:hover {
  padding-right: 6rem;
}

.hover\:pb-24:hover {
  padding-bottom: 6rem;
}

.hover\:pl-24:hover {
  padding-left: 6rem;
}

.hover\:pt-28:hover {
  padding-top: 7rem;
}

.hover\:pr-28:hover {
  padding-right: 7rem;
}

.hover\:pb-28:hover {
  padding-bottom: 7rem;
}

.hover\:pl-28:hover {
  padding-left: 7rem;
}

.hover\:pt-32:hover {
  padding-top: 8rem;
}

.hover\:pr-32:hover {
  padding-right: 8rem;
}

.hover\:pb-32:hover {
  padding-bottom: 8rem;
}

.hover\:pl-32:hover {
  padding-left: 8rem;
}

.hover\:pt-36:hover {
  padding-top: 9rem;
}

.hover\:pr-36:hover {
  padding-right: 9rem;
}

.hover\:pb-36:hover {
  padding-bottom: 9rem;
}

.hover\:pl-36:hover {
  padding-left: 9rem;
}

.hover\:pt-40:hover {
  padding-top: 10rem;
}

.hover\:pr-40:hover {
  padding-right: 10rem;
}

.hover\:pb-40:hover {
  padding-bottom: 10rem;
}

.hover\:pl-40:hover {
  padding-left: 10rem;
}

.hover\:pt-44:hover {
  padding-top: 11rem;
}

.hover\:pr-44:hover {
  padding-right: 11rem;
}

.hover\:pb-44:hover {
  padding-bottom: 11rem;
}

.hover\:pl-44:hover {
  padding-left: 11rem;
}

.hover\:pt-48:hover {
  padding-top: 12rem;
}

.hover\:pr-48:hover {
  padding-right: 12rem;
}

.hover\:pb-48:hover {
  padding-bottom: 12rem;
}

.hover\:pl-48:hover {
  padding-left: 12rem;
}

.hover\:pt-56:hover {
  padding-top: 14rem;
}

.hover\:pr-56:hover {
  padding-right: 14rem;
}

.hover\:pb-56:hover {
  padding-bottom: 14rem;
}

.hover\:pl-56:hover {
  padding-left: 14rem;
}

.hover\:pt-60:hover {
  padding-top: 15rem;
}

.hover\:pr-60:hover {
  padding-right: 15rem;
}

.hover\:pb-60:hover {
  padding-bottom: 15rem;
}

.hover\:pl-60:hover {
  padding-left: 15rem;
}

.hover\:pt-64:hover {
  padding-top: 16rem;
}

.hover\:pr-64:hover {
  padding-right: 16rem;
}

.hover\:pb-64:hover {
  padding-bottom: 16rem;
}

.hover\:pl-64:hover {
  padding-left: 16rem;
}

.hover\:pt-80:hover {
  padding-top: 20rem;
}

.hover\:pr-80:hover {
  padding-right: 20rem;
}

.hover\:pb-80:hover {
  padding-bottom: 20rem;
}

.hover\:pl-80:hover {
  padding-left: 20rem;
}

.hover\:pt-96:hover {
  padding-top: 24rem;
}

.hover\:pr-96:hover {
  padding-right: 24rem;
}

.hover\:pb-96:hover {
  padding-bottom: 24rem;
}

.hover\:pl-96:hover {
  padding-left: 24rem;
}

.hover\:pt-120:hover {
  padding-top: 30rem;
}

.hover\:pr-120:hover {
  padding-right: 30rem;
}

.hover\:pb-120:hover {
  padding-bottom: 30rem;
}

.hover\:pl-120:hover {
  padding-left: 30rem;
}

.hover\:pt-160:hover {
  padding-top: 40rem;
}

.hover\:pr-160:hover {
  padding-right: 40rem;
}

.hover\:pb-160:hover {
  padding-bottom: 40rem;
}

.hover\:pl-160:hover {
  padding-left: 40rem;
}

.hover\:pt-px:hover {
  padding-top: 1px;
}

.hover\:pr-px:hover {
  padding-right: 1px;
}

.hover\:pb-px:hover {
  padding-bottom: 1px;
}

.hover\:pl-px:hover {
  padding-left: 1px;
}

.hover\:pt-10\%:hover {
  padding-top: 10%;
}

.hover\:pr-10\%:hover {
  padding-right: 10%;
}

.hover\:pb-10\%:hover {
  padding-bottom: 10%;
}

.hover\:pl-10\%:hover {
  padding-left: 10%;
}

.hover\:pt-20\%:hover {
  padding-top: 20%;
}

.hover\:pr-20\%:hover {
  padding-right: 20%;
}

.hover\:pb-20\%:hover {
  padding-bottom: 20%;
}

.hover\:pl-20\%:hover {
  padding-left: 20%;
}

.hover\:pt-30\%:hover {
  padding-top: 30%;
}

.hover\:pr-30\%:hover {
  padding-right: 30%;
}

.hover\:pb-30\%:hover {
  padding-bottom: 30%;
}

.hover\:pl-30\%:hover {
  padding-left: 30%;
}

.hover\:pt-40\%:hover {
  padding-top: 40%;
}

.hover\:pr-40\%:hover {
  padding-right: 40%;
}

.hover\:pb-40\%:hover {
  padding-bottom: 40%;
}

.hover\:pl-40\%:hover {
  padding-left: 40%;
}

.hover\:pt-50\%:hover {
  padding-top: 50%;
}

.hover\:pr-50\%:hover {
  padding-right: 50%;
}

.hover\:pb-50\%:hover {
  padding-bottom: 50%;
}

.hover\:pl-50\%:hover {
  padding-left: 50%;
}

.hover\:pt-60\%:hover {
  padding-top: 60%;
}

.hover\:pr-60\%:hover {
  padding-right: 60%;
}

.hover\:pb-60\%:hover {
  padding-bottom: 60%;
}

.hover\:pl-60\%:hover {
  padding-left: 60%;
}

.hover\:pt-70\%:hover {
  padding-top: 70%;
}

.hover\:pr-70\%:hover {
  padding-right: 70%;
}

.hover\:pb-70\%:hover {
  padding-bottom: 70%;
}

.hover\:pl-70\%:hover {
  padding-left: 70%;
}

.hover\:pt-80\%:hover {
  padding-top: 80%;
}

.hover\:pr-80\%:hover {
  padding-right: 80%;
}

.hover\:pb-80\%:hover {
  padding-bottom: 80%;
}

.hover\:pl-80\%:hover {
  padding-left: 80%;
}

.hover\:pt-90\%:hover {
  padding-top: 90%;
}

.hover\:pr-90\%:hover {
  padding-right: 90%;
}

.hover\:pb-90\%:hover {
  padding-bottom: 90%;
}

.hover\:pl-90\%:hover {
  padding-left: 90%;
}

.hover\:pt-1vw:hover {
  padding-top: 1vw;
}

.hover\:pr-1vw:hover {
  padding-right: 1vw;
}

.hover\:pb-1vw:hover {
  padding-bottom: 1vw;
}

.hover\:pl-1vw:hover {
  padding-left: 1vw;
}

.hover\:pt-2vw:hover {
  padding-top: 2vw;
}

.hover\:pr-2vw:hover {
  padding-right: 2vw;
}

.hover\:pb-2vw:hover {
  padding-bottom: 2vw;
}

.hover\:pl-2vw:hover {
  padding-left: 2vw;
}

.hover\:pt-3vw:hover {
  padding-top: 3vw;
}

.hover\:pr-3vw:hover {
  padding-right: 3vw;
}

.hover\:pb-3vw:hover {
  padding-bottom: 3vw;
}

.hover\:pl-3vw:hover {
  padding-left: 3vw;
}

.hover\:pt-4vw:hover {
  padding-top: 4vw;
}

.hover\:pr-4vw:hover {
  padding-right: 4vw;
}

.hover\:pb-4vw:hover {
  padding-bottom: 4vw;
}

.hover\:pl-4vw:hover {
  padding-left: 4vw;
}

.hover\:pt-5vw:hover {
  padding-top: 5vw;
}

.hover\:pr-5vw:hover {
  padding-right: 5vw;
}

.hover\:pb-5vw:hover {
  padding-bottom: 5vw;
}

.hover\:pl-5vw:hover {
  padding-left: 5vw;
}

.hover\:pt-6vw:hover {
  padding-top: 6vw;
}

.hover\:pr-6vw:hover {
  padding-right: 6vw;
}

.hover\:pb-6vw:hover {
  padding-bottom: 6vw;
}

.hover\:pl-6vw:hover {
  padding-left: 6vw;
}

.hover\:pt-7vw:hover {
  padding-top: 7vw;
}

.hover\:pr-7vw:hover {
  padding-right: 7vw;
}

.hover\:pb-7vw:hover {
  padding-bottom: 7vw;
}

.hover\:pl-7vw:hover {
  padding-left: 7vw;
}

.hover\:pt-8vw:hover {
  padding-top: 8vw;
}

.hover\:pr-8vw:hover {
  padding-right: 8vw;
}

.hover\:pb-8vw:hover {
  padding-bottom: 8vw;
}

.hover\:pl-8vw:hover {
  padding-left: 8vw;
}

.hover\:pt-9vw:hover {
  padding-top: 9vw;
}

.hover\:pr-9vw:hover {
  padding-right: 9vw;
}

.hover\:pb-9vw:hover {
  padding-bottom: 9vw;
}

.hover\:pl-9vw:hover {
  padding-left: 9vw;
}

.hover\:pt-10vw:hover {
  padding-top: 10vw;
}

.hover\:pr-10vw:hover {
  padding-right: 10vw;
}

.hover\:pb-10vw:hover {
  padding-bottom: 10vw;
}

.hover\:pl-10vw:hover {
  padding-left: 10vw;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.pin-none {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.pin {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.pin-y {
  top: 0;
  bottom: 0;
}

.pin-x {
  right: 0;
  left: 0;
}

.pin-t {
  top: 0;
}

.pin-r {
  right: 0;
}

.pin-b {
  bottom: 0;
}

.pin-l {
  left: 0;
}

.hover\:static:hover {
  position: static;
}

.hover\:fixed:hover {
  position: fixed;
}

.hover\:absolute:hover {
  position: absolute;
}

.hover\:relative:hover {
  position: relative;
}

.hover\:sticky:hover {
  position: -webkit-sticky;
  position: sticky;
}

.hover\:pin-none:hover {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.hover\:pin:hover {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hover\:pin-y:hover {
  top: 0;
  bottom: 0;
}

.hover\:pin-x:hover {
  right: 0;
  left: 0;
}

.hover\:pin-t:hover {
  top: 0;
}

.hover\:pin-r:hover {
  right: 0;
}

.hover\:pin-b:hover {
  bottom: 0;
}

.hover\:pin-l:hover {
  left: 0;
}

.resize-none {
  resize: none;
}

.resize-y {
  resize: vertical;
}

.resize-x {
  resize: horizontal;
}

.resize {
  resize: both;
}

.shadow {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}

.shadow-md {
  box-shadow: 0 0 20px rgba(0, 0, 0, .15);
}

.shadow-lg {
  box-shadow: 0 0 100px rgba(0, 0, 0, .15);
}

.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
}

.shadow-none {
  box-shadow: none;
}

.hover\:shadow:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}

.hover\:shadow-md:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, .15);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 0 100px rgba(0, 0, 0, .15);
}

.hover\:shadow-inner:hover {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
}

.hover\:shadow-none:hover {
  box-shadow: none;
}

.fill-current {
  fill: currentColor;
}

.stroke-current {
  stroke: currentColor;
}

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

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

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

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

.text-transparent {
  color: transparent;
}

.text-currentColor {
  color: currentColor;
}

.text-black {
  color: #222;
}

.text-black-10 {
  color: rgba(0, 0, 0, .1);
}

.text-black-20 {
  color: rgba(0, 0, 0, .2);
}

.text-black-30 {
  color: rgba(0, 0, 0, .3);
}

.text-black-40 {
  color: rgba(0, 0, 0, .4);
}

.text-black-50 {
  color: rgba(0, 0, 0, .5);
}

.text-black-60 {
  color: rgba(0, 0, 0, .6);
}

.text-black-70 {
  color: rgba(0, 0, 0, .7);
}

.text-black-80 {
  color: rgba(0, 0, 0, .8);
}

.text-black-90 {
  color: rgba(0, 0, 0, .9);
}

.text-black-1 {
  color: #313131;
}

.text-white {
  color: #fff;
}

.text-blue {
  color: #0277bd;
}

.text-dark-blue {
  color: #0277bd;
}

.text-blue-1 {
  color: #17214a;
}

.text-light-blue {
  color: #0277bd;
}

.text-red {
  color: #cb001c;
}

.text-green {
  color: #00bea0;
}

.text-purple {
  color: #5a80d1;
}

.text-orange {
  color: #ff9a0a;
}

.text-grey {
  color: #929a9d;
}

.text-grey-light {
  color: #e2e2e2;
}

.text-grey-1 {
  color: #f2f3f3;
}

.text-grey-2 {
  color: #c2c6c8;
}

.text-grey-3 {
  color: #6b7375;
}

.text-grey-4 {
  color: #465052;
}

.text-grey-5 {
  color: #828688;
}

.text-sd-red {
  color: #ed1c24;
}

.text-light-blue-1 {
  color: #21b8de;
}

.text-dark-blue-1 {
  color: #0277bd;
}

.text-dark-orange {
  color: #df8403;
}

.text-g-blue {
  color: #17214a;
}

.text-g-blue-1 {
  color: #556d88;
}

.text-g-blue-2 {
  color: #3c4c65;
}

.text-g-blue-3 {
  color: #222e4d;
}

.hover\:text-transparent:hover {
  color: transparent;
}

.hover\:text-currentColor:hover {
  color: currentColor;
}

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

.hover\:text-black-10:hover {
  color: rgba(0, 0, 0, .1);
}

.hover\:text-black-20:hover {
  color: rgba(0, 0, 0, .2);
}

.hover\:text-black-30:hover {
  color: rgba(0, 0, 0, .3);
}

.hover\:text-black-40:hover {
  color: rgba(0, 0, 0, .4);
}

.hover\:text-black-50:hover {
  color: rgba(0, 0, 0, .5);
}

.hover\:text-black-60:hover {
  color: rgba(0, 0, 0, .6);
}

.hover\:text-black-70:hover {
  color: rgba(0, 0, 0, .7);
}

.hover\:text-black-80:hover {
  color: rgba(0, 0, 0, .8);
}

.hover\:text-black-90:hover {
  color: rgba(0, 0, 0, .9);
}

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

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

.hover\:text-blue:hover {
  color: #0277bd;
}

.hover\:text-dark-blue:hover {
  color: #0277bd;
}

.hover\:text-blue-1:hover {
  color: #17214a;
}

.hover\:text-light-blue:hover {
  color: #0277bd;
}

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

.hover\:text-green:hover {
  color: #00bea0;
}

.hover\:text-purple:hover {
  color: #5a80d1;
}

.hover\:text-orange:hover {
  color: #ff9a0a;
}

.hover\:text-grey:hover {
  color: #929a9d;
}

.hover\:text-grey-light:hover {
  color: #e2e2e2;
}

.hover\:text-grey-1:hover {
  color: #f2f3f3;
}

.hover\:text-grey-2:hover {
  color: #c2c6c8;
}

.hover\:text-grey-3:hover {
  color: #6b7375;
}

.hover\:text-grey-4:hover {
  color: #465052;
}

.hover\:text-grey-5:hover {
  color: #828688;
}

.hover\:text-sd-red:hover {
  color: #ed1c24;
}

.hover\:text-light-blue-1:hover {
  color: #21b8de;
}

.hover\:text-dark-blue-1:hover {
  color: #0277bd;
}

.hover\:text-dark-orange:hover {
  color: #df8403;
}

.hover\:text-g-blue:hover {
  color: #17214a;
}

.hover\:text-g-blue-1:hover {
  color: #556d88;
}

.hover\:text-g-blue-2:hover {
  color: #3c4c65;
}

.hover\:text-g-blue-3:hover {
  color: #222e4d;
}

.text-xxxs {
  font-size: .625rem;;
}

.text-xxs {
  font-size: .75rem;
}

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

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

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

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

.text-2lg {
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

.italic {
  font-style: italic;
}

.roman {
  font-style: normal;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

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

.underline {
  text-decoration: underline;
}

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

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

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subpixel-antialiased {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.hover\:italic:hover {
  font-style: italic;
}

.hover\:roman:hover {
  font-style: normal;
}

.hover\:uppercase:hover {
  text-transform: uppercase;
}

.hover\:lowercase:hover {
  text-transform: lowercase;
}

.hover\:capitalize:hover {
  text-transform: capitalize;
}

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

.hover\:underline:hover {
  text-decoration: underline;
}

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

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

.hover\:antialiased:hover {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hover\:subpixel-antialiased:hover {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

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

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

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

.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.select-text {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.align-text-top {
  vertical-align: text-top;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

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

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

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

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

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

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

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

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

.w-0 {
  width: 0;
}

.w-1 {
  width: .25rem;
}

.w-2 {
  width: .5rem;
}

.w-3 {
  width: .75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-9 {
  width: 2.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-40 {
  width: 10rem;
}

.w-48 {
  width: 12rem;
}

.w-64 {
  width: 16rem;
}

.w-70 {
  width: 18rem;
}

.w-80 {
  width: 20rem;
}

.w-96 {
  width: 24rem;
}

.w-112 {
  width: 28rem;
}

.w-128 {
  width: 32rem;
}

.w-auto {
  width: auto;
}

.w-px {
  width: 1px;
}

.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.w-100px {
  width: 100px;
}

.w-200px {
  width: 200px;
}

.w-300px {
  width: 300px;
}

.w-400px {
  width: 400px;
}

.w-500px {
  width: 500px;
}

.w-576px {
  width: 576px;
}

.w-600px {
  width: 600px;
}

.w-700px {
  width: 700px;
}

.w-768px {
  width: 768px;
}

.w-800px {
  width: 800px;
}

.w-900px {
  width: 900px;
}

.w-992px {
  width: 992px;
}

.w-1000px {
  width: 1000px;
}

.w-1140px {
  width: 1140px;
}

.w-1200px {
  width: 1200px;
}

.w-1460px {
  width: 1460px;
}

.w-1600px {
  width: 1600px;
}

.w-screen {
  width: 100vw;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-4 {
  z-index: 4;
}

.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-60 {
  z-index: 60;
}

.z-70 {
  z-index: 70;
}

.z-80 {
  z-index: 80;
}

.z-90 {
  z-index: 90;
}

.z-100 {
  z-index: 100;
}

.z-auto {
  z-index: auto;
}

.hover\:z-0:hover {
  z-index: 0;
}

.hover\:z-1:hover {
  z-index: 1;
}

.hover\:z-4:hover {
  z-index: 4;
}

.hover\:z-10:hover {
  z-index: 10;
}

.hover\:z-20:hover {
  z-index: 20;
}

.hover\:z-30:hover {
  z-index: 30;
}

.hover\:z-40:hover {
  z-index: 40;
}

.hover\:z-50:hover {
  z-index: 50;
}

.hover\:z-60:hover {
  z-index: 60;
}

.hover\:z-70:hover {
  z-index: 70;
}

.hover\:z-80:hover {
  z-index: 80;
}

.hover\:z-90:hover {
  z-index: 90;
}

.hover\:z-100:hover {
  z-index: 100;
}

.hover\:z-auto:hover {
  z-index: auto;
}

.grid-14 > .cols-1 {
  width: 7.14286%;
}

.grid-14 > .cols-14 {
  width: 100%;
}

.grid-14 > .offs-1 {
  margin-left: 7.14286%;
}

.grid-14 > .offs-0 {
  margin-left: 0%;
}

.grid-14 > .cols-2 {
  width: 14.28571%;
}

.grid-14 > .offs-2 {
  margin-left: 14.28571%;
}

.grid-14 > .cols-3 {
  width: 21.42857%;
}

.grid-14 > .offs-3 {
  margin-left: 21.42857%;
}

.grid-14 > .cols-4 {
  width: 28.57143%;
}

.grid-14 > .offs-4 {
  margin-left: 28.57143%;
}

.grid-14 > .cols-5 {
  width: 35.71429%;
}

.grid-14 > .offs-5 {
  margin-left: 35.71429%;
}

.grid-14 > .cols-6 {
  width: 42.85714%;
}

.grid-14 > .offs-6 {
  margin-left: 42.85714%;
}

.grid-14 > .cols-7 {
  width: 50%;
}

.grid-14 > .offs-7 {
  margin-left: 50%;
}

.grid-14 > .cols-8 {
  width: 57.14286%;
}

.grid-14 > .offs-8 {
  margin-left: 57.14286%;
}

.grid-14 > .cols-9 {
  width: 64.28571%;
}

.grid-14 > .offs-9 {
  margin-left: 64.28571%;
}

.grid-14 > .cols-10 {
  width: 71.42857%;
}

.grid-14 > .offs-10 {
  margin-left: 71.42857%;
}

.grid-14 > .cols-11 {
  width: 78.57143%;
}

.grid-14 > .offs-11 {
  margin-left: 78.57143%;
}

.grid-14 > .cols-12 {
  width: 85.71429%;
}

.grid-14 > .offs-12 {
  margin-left: 85.71429%;
}

.grid-14 > .cols-13 {
  width: 92.85714%;
}

.grid-14 > .offs-13 {
  margin-left: 92.85714%;
}

.grid-12 > .cols-1 {
  width: 8.33333%;
}

.grid-12 > .cols-12 {
  width: 100%;
}

.grid-12 > .offs-1 {
  margin-left: 8.33333%;
}

.grid-12 > .offs-0 {
  margin-left: 0%;
}

.grid-12 > .cols-2 {
  width: 16.66667%;
}

.grid-12 > .offs-2 {
  margin-left: 16.66667%;
}

.grid-12 > .cols-3 {
  width: 25%;
}

.grid-12 > .offs-3 {
  margin-left: 25%;
}

.grid-12 > .cols-4 {
  width: 33.33333%;
}

.grid-12 > .offs-4 {
  margin-left: 33.33333%;
}

.grid-12 > .cols-5 {
  width: 41.66667%;
}

.grid-12 > .offs-5 {
  margin-left: 41.66667%;
}

.grid-12 > .cols-6 {
  width: 50%;
}

.grid-12 > .offs-6 {
  margin-left: 50%;
}

.grid-12 > .cols-7 {
  width: 58.33333%;
}

.grid-12 > .offs-7 {
  margin-left: 58.33333%;
}

.grid-12 > .cols-8 {
  width: 66.66667%;
}

.grid-12 > .offs-8 {
  margin-left: 66.66667%;
}

.grid-12 > .cols-9 {
  width: 75%;
}

.grid-12 > .offs-9 {
  margin-left: 75%;
}

.grid-12 > .cols-10 {
  width: 83.33333%;
}

.grid-12 > .offs-10 {
  margin-left: 83.33333%;
}

.grid-12 > .cols-11 {
  width: 91.66667%;
}

.grid-12 > .offs-11 {
  margin-left: 91.66667%;
}

.grid-10 > .cols-1 {
  width: 10%;
}

.grid-10 > .cols-10 {
  width: 100%;
}

.grid-10 > .offs-1 {
  margin-left: 10%;
}

.grid-10 > .offs-0 {
  margin-left: 0%;
}

.grid-10 > .cols-2 {
  width: 20%;
}

.grid-10 > .offs-2 {
  margin-left: 20%;
}

.grid-10 > .cols-3 {
  width: 30%;
}

.grid-10 > .offs-3 {
  margin-left: 30%;
}

.grid-10 > .cols-4 {
  width: 40%;
}

.grid-10 > .offs-4 {
  margin-left: 40%;
}

.grid-10 > .cols-5 {
  width: 50%;
}

.grid-10 > .offs-5 {
  margin-left: 50%;
}

.grid-10 > .cols-6 {
  width: 60%;
}

.grid-10 > .offs-6 {
  margin-left: 60%;
}

.grid-10 > .cols-7 {
  width: 70%;
}

.grid-10 > .offs-7 {
  margin-left: 70%;
}

.grid-10 > .cols-8 {
  width: 80%;
}

.grid-10 > .offs-8 {
  margin-left: 80%;
}

.grid-10 > .cols-9 {
  width: 90%;
}

.grid-10 > .offs-9 {
  margin-left: 90%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
          order: -1;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
          order: 12;
}

.order-13 {
  -webkit-box-ordinal-group: 14;
          order: 13;
}

.order-14 {
  -webkit-box-ordinal-group: 15;
          order: 14;
}

.order-last {
  -webkit-box-ordinal-group: 16;
          order: 15;
}

@media (min-width: 576px) {
  .xs\:grid-14 > .xs\:cols-1 {
    width: 7.14286%;
  }

  .grid-14 > .xs\:cols-14 {
    width: 100%;
  }

  .xs\:grid-14 > .xs\:offs-1 {
    margin-left: 7.14286%;
  }

  .grid-14 > .xs\:offs-0 {
    margin-left: 0%;
  }

  .xs\:grid-14 > .xs\:cols-2 {
    width: 14.28571%;
  }

  .xs\:grid-14 > .xs\:offs-2 {
    margin-left: 14.28571%;
  }

  .xs\:grid-14 > .xs\:cols-3 {
    width: 21.42857%;
  }

  .xs\:grid-14 > .xs\:offs-3 {
    margin-left: 21.42857%;
  }

  .xs\:grid-14 > .xs\:cols-4 {
    width: 28.57143%;
  }

  .xs\:grid-14 > .xs\:offs-4 {
    margin-left: 28.57143%;
  }

  .xs\:grid-14 > .xs\:cols-5 {
    width: 35.71429%;
  }

  .xs\:grid-14 > .xs\:offs-5 {
    margin-left: 35.71429%;
  }

  .xs\:grid-14 > .xs\:cols-6 {
    width: 42.85714%;
  }

  .xs\:grid-14 > .xs\:offs-6 {
    margin-left: 42.85714%;
  }

  .xs\:grid-14 > .xs\:cols-7 {
    width: 50%;
  }

  .xs\:grid-14 > .xs\:offs-7 {
    margin-left: 50%;
  }

  .xs\:grid-14 > .xs\:cols-8 {
    width: 57.14286%;
  }

  .xs\:grid-14 > .xs\:offs-8 {
    margin-left: 57.14286%;
  }

  .xs\:grid-14 > .xs\:cols-9 {
    width: 64.28571%;
  }

  .xs\:grid-14 > .xs\:offs-9 {
    margin-left: 64.28571%;
  }

  .xs\:grid-14 > .xs\:cols-10 {
    width: 71.42857%;
  }

  .xs\:grid-14 > .xs\:offs-10 {
    margin-left: 71.42857%;
  }

  .xs\:grid-14 > .xs\:cols-11 {
    width: 78.57143%;
  }

  .xs\:grid-14 > .xs\:offs-11 {
    margin-left: 78.57143%;
  }

  .xs\:grid-14 > .xs\:cols-12 {
    width: 85.71429%;
  }

  .xs\:grid-14 > .xs\:offs-12 {
    margin-left: 85.71429%;
  }

  .xs\:grid-14 > .xs\:cols-13 {
    width: 92.85714%;
  }

  .xs\:grid-14 > .xs\:offs-13 {
    margin-left: 92.85714%;
  }

  .xs\:grid-12 > .xs\:cols-1 {
    width: 8.33333%;
  }

  .grid-12 > .xs\:cols-12 {
    width: 100%;
  }

  .xs\:grid-12 > .xs\:offs-1 {
    margin-left: 8.33333%;
  }

  .grid-12 > .xs\:offs-0 {
    margin-left: 0%;
  }

  .xs\:grid-12 > .xs\:cols-2 {
    width: 16.66667%;
  }

  .xs\:grid-12 > .xs\:offs-2 {
    margin-left: 16.66667%;
  }

  .xs\:grid-12 > .xs\:cols-3 {
    width: 25%;
  }

  .xs\:grid-12 > .xs\:offs-3 {
    margin-left: 25%;
  }

  .xs\:grid-12 > .xs\:cols-4 {
    width: 33.33333%;
  }

  .xs\:grid-12 > .xs\:offs-4 {
    margin-left: 33.33333%;
  }

  .xs\:grid-12 > .xs\:cols-5 {
    width: 41.66667%;
  }

  .xs\:grid-12 > .xs\:offs-5 {
    margin-left: 41.66667%;
  }

  .xs\:grid-12 > .xs\:cols-6 {
    width: 50%;
  }

  .xs\:grid-12 > .xs\:offs-6 {
    margin-left: 50%;
  }

  .xs\:grid-12 > .xs\:cols-7 {
    width: 58.33333%;
  }

  .xs\:grid-12 > .xs\:offs-7 {
    margin-left: 58.33333%;
  }

  .xs\:grid-12 > .xs\:cols-8 {
    width: 66.66667%;
  }

  .xs\:grid-12 > .xs\:offs-8 {
    margin-left: 66.66667%;
  }

  .xs\:grid-12 > .xs\:cols-9 {
    width: 75%;
  }

  .xs\:grid-12 > .xs\:offs-9 {
    margin-left: 75%;
  }

  .xs\:grid-12 > .xs\:cols-10 {
    width: 83.33333%;
  }

  .xs\:grid-12 > .xs\:offs-10 {
    margin-left: 83.33333%;
  }

  .xs\:grid-12 > .xs\:cols-11 {
    width: 91.66667%;
  }

  .xs\:grid-12 > .xs\:offs-11 {
    margin-left: 91.66667%;
  }

  .xs\:grid-10 > .xs\:cols-1 {
    width: 10%;
  }

  .grid-10 > .xs\:cols-10 {
    width: 100%;
  }

  .xs\:grid-10 > .xs\:offs-1 {
    margin-left: 10%;
  }

  .grid-10 > .xs\:offs-0 {
    margin-left: 0%;
  }

  .xs\:grid-10 > .xs\:cols-2 {
    width: 20%;
  }

  .xs\:grid-10 > .xs\:offs-2 {
    margin-left: 20%;
  }

  .xs\:grid-10 > .xs\:cols-3 {
    width: 30%;
  }

  .xs\:grid-10 > .xs\:offs-3 {
    margin-left: 30%;
  }

  .xs\:grid-10 > .xs\:cols-4 {
    width: 40%;
  }

  .xs\:grid-10 > .xs\:offs-4 {
    margin-left: 40%;
  }

  .xs\:grid-10 > .xs\:cols-5 {
    width: 50%;
  }

  .xs\:grid-10 > .xs\:offs-5 {
    margin-left: 50%;
  }

  .xs\:grid-10 > .xs\:cols-6 {
    width: 60%;
  }

  .xs\:grid-10 > .xs\:offs-6 {
    margin-left: 60%;
  }

  .xs\:grid-10 > .xs\:cols-7 {
    width: 70%;
  }

  .xs\:grid-10 > .xs\:offs-7 {
    margin-left: 70%;
  }

  .xs\:grid-10 > .xs\:cols-8 {
    width: 80%;
  }

  .xs\:grid-10 > .xs\:offs-8 {
    margin-left: 80%;
  }

  .xs\:grid-10 > .xs\:cols-9 {
    width: 90%;
  }

  .xs\:grid-10 > .xs\:offs-9 {
    margin-left: 90%;
  }

  .xs\:order-first {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }

  .xs\:order-0 {
    -webkit-box-ordinal-group: 1;
            order: 0;
  }

  .xs\:order-1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }

  .xs\:order-2 {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }

  .xs\:order-3 {
    -webkit-box-ordinal-group: 4;
            order: 3;
  }

  .xs\:order-4 {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }

  .xs\:order-5 {
    -webkit-box-ordinal-group: 6;
            order: 5;
  }

  .xs\:order-6 {
    -webkit-box-ordinal-group: 7;
            order: 6;
  }

  .xs\:order-7 {
    -webkit-box-ordinal-group: 8;
            order: 7;
  }

  .xs\:order-8 {
    -webkit-box-ordinal-group: 9;
            order: 8;
  }

  .xs\:order-9 {
    -webkit-box-ordinal-group: 10;
            order: 9;
  }

  .xs\:order-10 {
    -webkit-box-ordinal-group: 11;
            order: 10;
  }

  .xs\:order-11 {
    -webkit-box-ordinal-group: 12;
            order: 11;
  }

  .xs\:order-12 {
    -webkit-box-ordinal-group: 13;
            order: 12;
  }

  .xs\:order-13 {
    -webkit-box-ordinal-group: 14;
            order: 13;
  }

  .xs\:order-14 {
    -webkit-box-ordinal-group: 15;
            order: 14;
  }

  .xs\:order-last {
    -webkit-box-ordinal-group: 16;
            order: 15;
  }
}

@media (min-width: 768px) {
  .sm\:grid-14 > .sm\:cols-1 {
    width: 7.14286%;
  }

  .grid-14 > .sm\:cols-14 {
    width: 100%;
  }

  .sm\:grid-14 > .sm\:offs-1 {
    margin-left: 7.14286%;
  }

  .grid-14 > .sm\:offs-0 {
    margin-left: 0%;
  }

  .sm\:grid-14 > .sm\:cols-2 {
    width: 14.28571%;
  }

  .sm\:grid-14 > .sm\:offs-2 {
    margin-left: 14.28571%;
  }

  .sm\:grid-14 > .sm\:cols-3 {
    width: 21.42857%;
  }

  .sm\:grid-14 > .sm\:offs-3 {
    margin-left: 21.42857%;
  }

  .sm\:grid-14 > .sm\:cols-4 {
    width: 28.57143%;
  }

  .sm\:grid-14 > .sm\:offs-4 {
    margin-left: 28.57143%;
  }

  .sm\:grid-14 > .sm\:cols-5 {
    width: 35.71429%;
  }

  .sm\:grid-14 > .sm\:offs-5 {
    margin-left: 35.71429%;
  }

  .sm\:grid-14 > .sm\:cols-6 {
    width: 42.85714%;
  }

  .sm\:grid-14 > .sm\:offs-6 {
    margin-left: 42.85714%;
  }

  .sm\:grid-14 > .sm\:cols-7 {
    width: 50%;
  }

  .sm\:grid-14 > .sm\:offs-7 {
    margin-left: 50%;
  }

  .sm\:grid-14 > .sm\:cols-8 {
    width: 57.14286%;
  }

  .sm\:grid-14 > .sm\:offs-8 {
    margin-left: 57.14286%;
  }

  .sm\:grid-14 > .sm\:cols-9 {
    width: 64.28571%;
  }

  .sm\:grid-14 > .sm\:offs-9 {
    margin-left: 64.28571%;
  }

  .sm\:grid-14 > .sm\:cols-10 {
    width: 71.42857%;
  }

  .sm\:grid-14 > .sm\:offs-10 {
    margin-left: 71.42857%;
  }

  .sm\:grid-14 > .sm\:cols-11 {
    width: 78.57143%;
  }

  .sm\:grid-14 > .sm\:offs-11 {
    margin-left: 78.57143%;
  }

  .sm\:grid-14 > .sm\:cols-12 {
    width: 85.71429%;
  }

  .sm\:grid-14 > .sm\:offs-12 {
    margin-left: 85.71429%;
  }

  .sm\:grid-14 > .sm\:cols-13 {
    width: 92.85714%;
  }

  .sm\:grid-14 > .sm\:offs-13 {
    margin-left: 92.85714%;
  }

  .sm\:grid-12 > .sm\:cols-1 {
    width: 8.33333%;
  }

  .grid-12 > .sm\:cols-12 {
    width: 100%;
  }

  .sm\:grid-12 > .sm\:offs-1 {
    margin-left: 8.33333%;
  }

  .grid-12 > .sm\:offs-0 {
    margin-left: 0%;
  }

  .sm\:grid-12 > .sm\:cols-2 {
    width: 16.66667%;
  }

  .sm\:grid-12 > .sm\:offs-2 {
    margin-left: 16.66667%;
  }

  .sm\:grid-12 > .sm\:cols-3 {
    width: 25%;
  }

  .sm\:grid-12 > .sm\:offs-3 {
    margin-left: 25%;
  }

  .sm\:grid-12 > .sm\:cols-4 {
    width: 33.33333%;
  }

  .sm\:grid-12 > .sm\:offs-4 {
    margin-left: 33.33333%;
  }

  .sm\:grid-12 > .sm\:cols-5 {
    width: 41.66667%;
  }

  .sm\:grid-12 > .sm\:offs-5 {
    margin-left: 41.66667%;
  }

  .sm\:grid-12 > .sm\:cols-6 {
    width: 50%;
  }

  .sm\:grid-12 > .sm\:offs-6 {
    margin-left: 50%;
  }

  .sm\:grid-12 > .sm\:cols-7 {
    width: 58.33333%;
  }

  .sm\:grid-12 > .sm\:offs-7 {
    margin-left: 58.33333%;
  }

  .sm\:grid-12 > .sm\:cols-8 {
    width: 66.66667%;
  }

  .sm\:grid-12 > .sm\:offs-8 {
    margin-left: 66.66667%;
  }

  .sm\:grid-12 > .sm\:cols-9 {
    width: 75%;
  }

  .sm\:grid-12 > .sm\:offs-9 {
    margin-left: 75%;
  }

  .sm\:grid-12 > .sm\:cols-10 {
    width: 83.33333%;
  }

  .sm\:grid-12 > .sm\:offs-10 {
    margin-left: 83.33333%;
  }

  .sm\:grid-12 > .sm\:cols-11 {
    width: 91.66667%;
  }

  .sm\:grid-12 > .sm\:offs-11 {
    margin-left: 91.66667%;
  }

  .sm\:grid-10 > .sm\:cols-1 {
    width: 10%;
  }

  .grid-10 > .sm\:cols-10 {
    width: 100%;
  }

  .sm\:grid-10 > .sm\:offs-1 {
    margin-left: 10%;
  }

  .grid-10 > .sm\:offs-0 {
    margin-left: 0%;
  }

  .sm\:grid-10 > .sm\:cols-2 {
    width: 20%;
  }

  .sm\:grid-10 > .sm\:offs-2 {
    margin-left: 20%;
  }

  .sm\:grid-10 > .sm\:cols-3 {
    width: 30%;
  }

  .sm\:grid-10 > .sm\:offs-3 {
    margin-left: 30%;
  }

  .sm\:grid-10 > .sm\:cols-4 {
    width: 40%;
  }

  .sm\:grid-10 > .sm\:offs-4 {
    margin-left: 40%;
  }

  .sm\:grid-10 > .sm\:cols-5 {
    width: 50%;
  }

  .sm\:grid-10 > .sm\:offs-5 {
    margin-left: 50%;
  }

  .sm\:grid-10 > .sm\:cols-6 {
    width: 60%;
  }

  .sm\:grid-10 > .sm\:offs-6 {
    margin-left: 60%;
  }

  .sm\:grid-10 > .sm\:cols-7 {
    width: 70%;
  }

  .sm\:grid-10 > .sm\:offs-7 {
    margin-left: 70%;
  }

  .sm\:grid-10 > .sm\:cols-8 {
    width: 80%;
  }

  .sm\:grid-10 > .sm\:offs-8 {
    margin-left: 80%;
  }

  .sm\:grid-10 > .sm\:cols-9 {
    width: 90%;
  }

  .sm\:grid-10 > .sm\:offs-9 {
    margin-left: 90%;
  }

  .sm\:order-first {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }

  .sm\:order-0 {
    -webkit-box-ordinal-group: 1;
            order: 0;
  }

  .sm\:order-1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }

  .sm\:order-2 {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }

  .sm\:order-3 {
    -webkit-box-ordinal-group: 4;
            order: 3;
  }

  .sm\:order-4 {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }

  .sm\:order-5 {
    -webkit-box-ordinal-group: 6;
            order: 5;
  }

  .sm\:order-6 {
    -webkit-box-ordinal-group: 7;
            order: 6;
  }

  .sm\:order-7 {
    -webkit-box-ordinal-group: 8;
            order: 7;
  }

  .sm\:order-8 {
    -webkit-box-ordinal-group: 9;
            order: 8;
  }

  .sm\:order-9 {
    -webkit-box-ordinal-group: 10;
            order: 9;
  }

  .sm\:order-10 {
    -webkit-box-ordinal-group: 11;
            order: 10;
  }

  .sm\:order-11 {
    -webkit-box-ordinal-group: 12;
            order: 11;
  }

  .sm\:order-12 {
    -webkit-box-ordinal-group: 13;
            order: 12;
  }

  .sm\:order-13 {
    -webkit-box-ordinal-group: 14;
            order: 13;
  }

  .sm\:order-14 {
    -webkit-box-ordinal-group: 15;
            order: 14;
  }

  .sm\:order-last {
    -webkit-box-ordinal-group: 16;
            order: 15;
  }
}

@media (min-width: 992px) {
  .md\:grid-14 > .md\:cols-1 {
    width: 7.14286%;
  }

  .grid-14 > .md\:cols-14 {
    width: 100%;
  }

  .md\:grid-14 > .md\:offs-1 {
    margin-left: 7.14286%;
  }

  .grid-14 > .md\:offs-0 {
    margin-left: 0%;
  }

  .md\:grid-14 > .md\:cols-2 {
    width: 14.28571%;
  }

  .md\:grid-14 > .md\:offs-2 {
    margin-left: 14.28571%;
  }

  .md\:grid-14 > .md\:cols-3 {
    width: 21.42857%;
  }

  .md\:grid-14 > .md\:offs-3 {
    margin-left: 21.42857%;
  }

  .md\:grid-14 > .md\:cols-4 {
    width: 28.57143%;
  }

  .md\:grid-14 > .md\:offs-4 {
    margin-left: 28.57143%;
  }

  .md\:grid-14 > .md\:cols-5 {
    width: 35.71429%;
  }

  .md\:grid-14 > .md\:offs-5 {
    margin-left: 35.71429%;
  }

  .md\:grid-14 > .md\:cols-6 {
    width: 42.85714%;
  }

  .md\:grid-14 > .md\:offs-6 {
    margin-left: 42.85714%;
  }

  .md\:grid-14 > .md\:cols-7 {
    width: 50%;
  }

  .md\:grid-14 > .md\:offs-7 {
    margin-left: 50%;
  }

  .md\:grid-14 > .md\:cols-8 {
    width: 57.14286%;
  }

  .md\:grid-14 > .md\:offs-8 {
    margin-left: 57.14286%;
  }

  .md\:grid-14 > .md\:cols-9 {
    width: 64.28571%;
  }

  .md\:grid-14 > .md\:offs-9 {
    margin-left: 64.28571%;
  }

  .md\:grid-14 > .md\:cols-10 {
    width: 71.42857%;
  }

  .md\:grid-14 > .md\:offs-10 {
    margin-left: 71.42857%;
  }

  .md\:grid-14 > .md\:cols-11 {
    width: 78.57143%;
  }

  .md\:grid-14 > .md\:offs-11 {
    margin-left: 78.57143%;
  }

  .md\:grid-14 > .md\:cols-12 {
    width: 85.71429%;
  }

  .md\:grid-14 > .md\:offs-12 {
    margin-left: 85.71429%;
  }

  .md\:grid-14 > .md\:cols-13 {
    width: 92.85714%;
  }

  .md\:grid-14 > .md\:offs-13 {
    margin-left: 92.85714%;
  }

  .md\:grid-12 > .md\:cols-1 {
    width: 8.33333%;
  }

  .grid-12 > .md\:cols-12 {
    width: 100%;
  }

  .md\:grid-12 > .md\:offs-1 {
    margin-left: 8.33333%;
  }

  .grid-12 > .md\:offs-0 {
    margin-left: 0%;
  }

  .md\:grid-12 > .md\:cols-2 {
    width: 16.66667%;
  }

  .md\:grid-12 > .md\:offs-2 {
    margin-left: 16.66667%;
  }

  .md\:grid-12 > .md\:cols-3 {
    width: 25%;
  }

  .md\:grid-12 > .md\:offs-3 {
    margin-left: 25%;
  }

  .md\:grid-12 > .md\:cols-4 {
    width: 33.33333%;
  }

  .md\:grid-12 > .md\:offs-4 {
    margin-left: 33.33333%;
  }

  .md\:grid-12 > .md\:cols-5 {
    width: 41.66667%;
  }

  .md\:grid-12 > .md\:offs-5 {
    margin-left: 41.66667%;
  }

  .md\:grid-12 > .md\:cols-6 {
    width: 50%;
  }

  .md\:grid-12 > .md\:offs-6 {
    margin-left: 50%;
  }

  .md\:grid-12 > .md\:cols-7 {
    width: 58.33333%;
  }

  .md\:grid-12 > .md\:offs-7 {
    margin-left: 58.33333%;
  }

  .md\:grid-12 > .md\:cols-8 {
    width: 66.66667%;
  }

  .md\:grid-12 > .md\:offs-8 {
    margin-left: 66.66667%;
  }

  .md\:grid-12 > .md\:cols-9 {
    width: 75%;
  }

  .md\:grid-12 > .md\:offs-9 {
    margin-left: 75%;
  }

  .md\:grid-12 > .md\:cols-10 {
    width: 83.33333%;
  }

  .md\:grid-12 > .md\:offs-10 {
    margin-left: 83.33333%;
  }

  .md\:grid-12 > .md\:cols-11 {
    width: 91.66667%;
  }

  .md\:grid-12 > .md\:offs-11 {
    margin-left: 91.66667%;
  }

  .md\:grid-10 > .md\:cols-1 {
    width: 10%;
  }

  .grid-10 > .md\:cols-10 {
    width: 100%;
  }

  .md\:grid-10 > .md\:offs-1 {
    margin-left: 10%;
  }

  .grid-10 > .md\:offs-0 {
    margin-left: 0%;
  }

  .md\:grid-10 > .md\:cols-2 {
    width: 20%;
  }

  .md\:grid-10 > .md\:offs-2 {
    margin-left: 20%;
  }

  .md\:grid-10 > .md\:cols-3 {
    width: 30%;
  }

  .md\:grid-10 > .md\:offs-3 {
    margin-left: 30%;
  }

  .md\:grid-10 > .md\:cols-4 {
    width: 40%;
  }

  .md\:grid-10 > .md\:offs-4 {
    margin-left: 40%;
  }

  .md\:grid-10 > .md\:cols-5 {
    width: 50%;
  }

  .md\:grid-10 > .md\:offs-5 {
    margin-left: 50%;
  }

  .md\:grid-10 > .md\:cols-6 {
    width: 60%;
  }

  .md\:grid-10 > .md\:offs-6 {
    margin-left: 60%;
  }

  .md\:grid-10 > .md\:cols-7 {
    width: 70%;
  }

  .md\:grid-10 > .md\:offs-7 {
    margin-left: 70%;
  }

  .md\:grid-10 > .md\:cols-8 {
    width: 80%;
  }

  .md\:grid-10 > .md\:offs-8 {
    margin-left: 80%;
  }

  .md\:grid-10 > .md\:cols-9 {
    width: 90%;
  }

  .md\:grid-10 > .md\:offs-9 {
    margin-left: 90%;
  }

  .md\:order-first {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }

  .md\:order-0 {
    -webkit-box-ordinal-group: 1;
            order: 0;
  }

  .md\:order-1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }

  .md\:order-2 {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }

  .md\:order-3 {
    -webkit-box-ordinal-group: 4;
            order: 3;
  }

  .md\:order-4 {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }

  .md\:order-5 {
    -webkit-box-ordinal-group: 6;
            order: 5;
  }

  .md\:order-6 {
    -webkit-box-ordinal-group: 7;
            order: 6;
  }

  .md\:order-7 {
    -webkit-box-ordinal-group: 8;
            order: 7;
  }

  .md\:order-8 {
    -webkit-box-ordinal-group: 9;
            order: 8;
  }

  .md\:order-9 {
    -webkit-box-ordinal-group: 10;
            order: 9;
  }

  .md\:order-10 {
    -webkit-box-ordinal-group: 11;
            order: 10;
  }

  .md\:order-11 {
    -webkit-box-ordinal-group: 12;
            order: 11;
  }

  .md\:order-12 {
    -webkit-box-ordinal-group: 13;
            order: 12;
  }

  .md\:order-13 {
    -webkit-box-ordinal-group: 14;
            order: 13;
  }

  .md\:order-14 {
    -webkit-box-ordinal-group: 15;
            order: 14;
  }

  .md\:order-last {
    -webkit-box-ordinal-group: 16;
            order: 15;
  }
}

@media (min-width: 1140px) {
  .lg\:grid-14 > .lg\:cols-1 {
    width: 7.14286%;
  }

  .grid-14 > .lg\:cols-14 {
    width: 100%;
  }

  .lg\:grid-14 > .lg\:offs-1 {
    margin-left: 7.14286%;
  }

  .grid-14 > .lg\:offs-0 {
    margin-left: 0%;
  }

  .lg\:grid-14 > .lg\:cols-2 {
    width: 14.28571%;
  }

  .lg\:grid-14 > .lg\:offs-2 {
    margin-left: 14.28571%;
  }

  .lg\:grid-14 > .lg\:cols-3 {
    width: 21.42857%;
  }

  .lg\:grid-14 > .lg\:offs-3 {
    margin-left: 21.42857%;
  }

  .lg\:grid-14 > .lg\:cols-4 {
    width: 28.57143%;
  }

  .lg\:grid-14 > .lg\:offs-4 {
    margin-left: 28.57143%;
  }

  .lg\:grid-14 > .lg\:cols-5 {
    width: 35.71429%;
  }

  .lg\:grid-14 > .lg\:offs-5 {
    margin-left: 35.71429%;
  }

  .lg\:grid-14 > .lg\:cols-6 {
    width: 42.85714%;
  }

  .lg\:grid-14 > .lg\:offs-6 {
    margin-left: 42.85714%;
  }

  .lg\:grid-14 > .lg\:cols-7 {
    width: 50%;
  }

  .lg\:grid-14 > .lg\:offs-7 {
    margin-left: 50%;
  }

  .lg\:grid-14 > .lg\:cols-8 {
    width: 57.14286%;
  }

  .lg\:grid-14 > .lg\:offs-8 {
    margin-left: 57.14286%;
  }

  .lg\:grid-14 > .lg\:cols-9 {
    width: 64.28571%;
  }

  .lg\:grid-14 > .lg\:offs-9 {
    margin-left: 64.28571%;
  }

  .lg\:grid-14 > .lg\:cols-10 {
    width: 71.42857%;
  }

  .lg\:grid-14 > .lg\:offs-10 {
    margin-left: 71.42857%;
  }

  .lg\:grid-14 > .lg\:cols-11 {
    width: 78.57143%;
  }

  .lg\:grid-14 > .lg\:offs-11 {
    margin-left: 78.57143%;
  }

  .lg\:grid-14 > .lg\:cols-12 {
    width: 85.71429%;
  }

  .lg\:grid-14 > .lg\:offs-12 {
    margin-left: 85.71429%;
  }

  .lg\:grid-14 > .lg\:cols-13 {
    width: 92.85714%;
  }

  .lg\:grid-14 > .lg\:offs-13 {
    margin-left: 92.85714%;
  }

  .lg\:grid-12 > .lg\:cols-1 {
    width: 8.33333%;
  }

  .grid-12 > .lg\:cols-12 {
    width: 100%;
  }

  .lg\:grid-12 > .lg\:offs-1 {
    margin-left: 8.33333%;
  }

  .grid-12 > .lg\:offs-0 {
    margin-left: 0%;
  }

  .lg\:grid-12 > .lg\:cols-2 {
    width: 16.66667%;
  }

  .lg\:grid-12 > .lg\:offs-2 {
    margin-left: 16.66667%;
  }

  .lg\:grid-12 > .lg\:cols-3 {
    width: 25%;
  }

  .lg\:grid-12 > .lg\:offs-3 {
    margin-left: 25%;
  }

  .lg\:grid-12 > .lg\:cols-4 {
    width: 33.33333%;
  }

  .lg\:grid-12 > .lg\:offs-4 {
    margin-left: 33.33333%;
  }

  .lg\:grid-12 > .lg\:cols-5 {
    width: 41.66667%;
  }

  .lg\:grid-12 > .lg\:offs-5 {
    margin-left: 41.66667%;
  }

  .lg\:grid-12 > .lg\:cols-6 {
    width: 50%;
  }

  .lg\:grid-12 > .lg\:offs-6 {
    margin-left: 50%;
  }

  .lg\:grid-12 > .lg\:cols-7 {
    width: 58.33333%;
  }

  .lg\:grid-12 > .lg\:offs-7 {
    margin-left: 58.33333%;
  }

  .lg\:grid-12 > .lg\:cols-8 {
    width: 66.66667%;
  }

  .lg\:grid-12 > .lg\:offs-8 {
    margin-left: 66.66667%;
  }

  .lg\:grid-12 > .lg\:cols-9 {
    width: 75%;
  }

  .lg\:grid-12 > .lg\:offs-9 {
    margin-left: 75%;
  }

  .lg\:grid-12 > .lg\:cols-10 {
    width: 83.33333%;
  }

  .lg\:grid-12 > .lg\:offs-10 {
    margin-left: 83.33333%;
  }

  .lg\:grid-12 > .lg\:cols-11 {
    width: 91.66667%;
  }

  .lg\:grid-12 > .lg\:offs-11 {
    margin-left: 91.66667%;
  }

  .lg\:grid-10 > .lg\:cols-1 {
    width: 10%;
  }

  .grid-10 > .lg\:cols-10 {
    width: 100%;
  }

  .lg\:grid-10 > .lg\:offs-1 {
    margin-left: 10%;
  }

  .grid-10 > .lg\:offs-0 {
    margin-left: 0%;
  }

  .lg\:grid-10 > .lg\:cols-2 {
    width: 20%;
  }

  .lg\:grid-10 > .lg\:offs-2 {
    margin-left: 20%;
  }

  .lg\:grid-10 > .lg\:cols-3 {
    width: 30%;
  }

  .lg\:grid-10 > .lg\:offs-3 {
    margin-left: 30%;
  }

  .lg\:grid-10 > .lg\:cols-4 {
    width: 40%;
  }

  .lg\:grid-10 > .lg\:offs-4 {
    margin-left: 40%;
  }

  .lg\:grid-10 > .lg\:cols-5 {
    width: 50%;
  }

  .lg\:grid-10 > .lg\:offs-5 {
    margin-left: 50%;
  }

  .lg\:grid-10 > .lg\:cols-6 {
    width: 60%;
  }

  .lg\:grid-10 > .lg\:offs-6 {
    margin-left: 60%;
  }

  .lg\:grid-10 > .lg\:cols-7 {
    width: 70%;
  }

  .lg\:grid-10 > .lg\:offs-7 {
    margin-left: 70%;
  }

  .lg\:grid-10 > .lg\:cols-8 {
    width: 80%;
  }

  .lg\:grid-10 > .lg\:offs-8 {
    margin-left: 80%;
  }

  .lg\:grid-10 > .lg\:cols-9 {
    width: 90%;
  }

  .lg\:grid-10 > .lg\:offs-9 {
    margin-left: 90%;
  }

  .lg\:order-first {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }

  .lg\:order-0 {
    -webkit-box-ordinal-group: 1;
            order: 0;
  }

  .lg\:order-1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }

  .lg\:order-2 {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }

  .lg\:order-3 {
    -webkit-box-ordinal-group: 4;
            order: 3;
  }

  .lg\:order-4 {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }

  .lg\:order-5 {
    -webkit-box-ordinal-group: 6;
            order: 5;
  }

  .lg\:order-6 {
    -webkit-box-ordinal-group: 7;
            order: 6;
  }

  .lg\:order-7 {
    -webkit-box-ordinal-group: 8;
            order: 7;
  }

  .lg\:order-8 {
    -webkit-box-ordinal-group: 9;
            order: 8;
  }

  .lg\:order-9 {
    -webkit-box-ordinal-group: 10;
            order: 9;
  }

  .lg\:order-10 {
    -webkit-box-ordinal-group: 11;
            order: 10;
  }

  .lg\:order-11 {
    -webkit-box-ordinal-group: 12;
            order: 11;
  }

  .lg\:order-12 {
    -webkit-box-ordinal-group: 13;
            order: 12;
  }

  .lg\:order-13 {
    -webkit-box-ordinal-group: 14;
            order: 13;
  }

  .lg\:order-14 {
    -webkit-box-ordinal-group: 15;
            order: 14;
  }

  .lg\:order-last {
    -webkit-box-ordinal-group: 16;
            order: 15;
  }
}

@media (min-width: 1460px) {
  .xl\:grid-14 > .xl\:cols-1 {
    width: 7.14286%;
  }

  .grid-14 > .xl\:cols-14 {
    width: 100%;
  }

  .xl\:grid-14 > .xl\:offs-1 {
    margin-left: 7.14286%;
  }

  .grid-14 > .xl\:offs-0 {
    margin-left: 0%;
  }

  .xl\:grid-14 > .xl\:cols-2 {
    width: 14.28571%;
  }

  .xl\:grid-14 > .xl\:offs-2 {
    margin-left: 14.28571%;
  }

  .xl\:grid-14 > .xl\:cols-3 {
    width: 21.42857%;
  }

  .xl\:grid-14 > .xl\:offs-3 {
    margin-left: 21.42857%;
  }

  .xl\:grid-14 > .xl\:cols-4 {
    width: 28.57143%;
  }

  .xl\:grid-14 > .xl\:offs-4 {
    margin-left: 28.57143%;
  }

  .xl\:grid-14 > .xl\:cols-5 {
    width: 35.71429%;
  }

  .xl\:grid-14 > .xl\:offs-5 {
    margin-left: 35.71429%;
  }

  .xl\:grid-14 > .xl\:cols-6 {
    width: 42.85714%;
  }

  .xl\:grid-14 > .xl\:offs-6 {
    margin-left: 42.85714%;
  }

  .xl\:grid-14 > .xl\:cols-7 {
    width: 50%;
  }

  .xl\:grid-14 > .xl\:offs-7 {
    margin-left: 50%;
  }

  .xl\:grid-14 > .xl\:cols-8 {
    width: 57.14286%;
  }

  .xl\:grid-14 > .xl\:offs-8 {
    margin-left: 57.14286%;
  }

  .xl\:grid-14 > .xl\:cols-9 {
    width: 64.28571%;
  }

  .xl\:grid-14 > .xl\:offs-9 {
    margin-left: 64.28571%;
  }

  .xl\:grid-14 > .xl\:cols-10 {
    width: 71.42857%;
  }

  .xl\:grid-14 > .xl\:offs-10 {
    margin-left: 71.42857%;
  }

  .xl\:grid-14 > .xl\:cols-11 {
    width: 78.57143%;
  }

  .xl\:grid-14 > .xl\:offs-11 {
    margin-left: 78.57143%;
  }

  .xl\:grid-14 > .xl\:cols-12 {
    width: 85.71429%;
  }

  .xl\:grid-14 > .xl\:offs-12 {
    margin-left: 85.71429%;
  }

  .xl\:grid-14 > .xl\:cols-13 {
    width: 92.85714%;
  }

  .xl\:grid-14 > .xl\:offs-13 {
    margin-left: 92.85714%;
  }

  .xl\:grid-12 > .xl\:cols-1 {
    width: 8.33333%;
  }

  .grid-12 > .xl\:cols-12 {
    width: 100%;
  }

  .xl\:grid-12 > .xl\:offs-1 {
    margin-left: 8.33333%;
  }

  .grid-12 > .xl\:offs-0 {
    margin-left: 0%;
  }

  .xl\:grid-12 > .xl\:cols-2 {
    width: 16.66667%;
  }

  .xl\:grid-12 > .xl\:offs-2 {
    margin-left: 16.66667%;
  }

  .xl\:grid-12 > .xl\:cols-3 {
    width: 25%;
  }

  .xl\:grid-12 > .xl\:offs-3 {
    margin-left: 25%;
  }

  .xl\:grid-12 > .xl\:cols-4 {
    width: 33.33333%;
  }

  .xl\:grid-12 > .xl\:offs-4 {
    margin-left: 33.33333%;
  }

  .xl\:grid-12 > .xl\:cols-5 {
    width: 41.66667%;
  }

  .xl\:grid-12 > .xl\:offs-5 {
    margin-left: 41.66667%;
  }

  .xl\:grid-12 > .xl\:cols-6 {
    width: 50%;
  }

  .xl\:grid-12 > .xl\:offs-6 {
    margin-left: 50%;
  }

  .xl\:grid-12 > .xl\:cols-7 {
    width: 58.33333%;
  }

  .xl\:grid-12 > .xl\:offs-7 {
    margin-left: 58.33333%;
  }

  .xl\:grid-12 > .xl\:cols-8 {
    width: 66.66667%;
  }

  .xl\:grid-12 > .xl\:offs-8 {
    margin-left: 66.66667%;
  }

  .xl\:grid-12 > .xl\:cols-9 {
    width: 75%;
  }

  .xl\:grid-12 > .xl\:offs-9 {
    margin-left: 75%;
  }

  .xl\:grid-12 > .xl\:cols-10 {
    width: 83.33333%;
  }

  .xl\:grid-12 > .xl\:offs-10 {
    margin-left: 83.33333%;
  }

  .xl\:grid-12 > .xl\:cols-11 {
    width: 91.66667%;
  }

  .xl\:grid-12 > .xl\:offs-11 {
    margin-left: 91.66667%;
  }

  .xl\:grid-10 > .xl\:cols-1 {
    width: 10%;
  }

  .grid-10 > .xl\:cols-10 {
    width: 100%;
  }

  .xl\:grid-10 > .xl\:offs-1 {
    margin-left: 10%;
  }

  .grid-10 > .xl\:offs-0 {
    margin-left: 0%;
  }

  .xl\:grid-10 > .xl\:cols-2 {
    width: 20%;
  }

  .xl\:grid-10 > .xl\:offs-2 {
    margin-left: 20%;
  }

  .xl\:grid-10 > .xl\:cols-3 {
    width: 30%;
  }

  .xl\:grid-10 > .xl\:offs-3 {
    margin-left: 30%;
  }

  .xl\:grid-10 > .xl\:cols-4 {
    width: 40%;
  }

  .xl\:grid-10 > .xl\:offs-4 {
    margin-left: 40%;
  }

  .xl\:grid-10 > .xl\:cols-5 {
    width: 50%;
  }

  .xl\:grid-10 > .xl\:offs-5 {
    margin-left: 50%;
  }

  .xl\:grid-10 > .xl\:cols-6 {
    width: 60%;
  }

  .xl\:grid-10 > .xl\:offs-6 {
    margin-left: 60%;
  }

  .xl\:grid-10 > .xl\:cols-7 {
    width: 70%;
  }

  .xl\:grid-10 > .xl\:offs-7 {
    margin-left: 70%;
  }

  .xl\:grid-10 > .xl\:cols-8 {
    width: 80%;
  }

  .xl\:grid-10 > .xl\:offs-8 {
    margin-left: 80%;
  }

  .xl\:grid-10 > .xl\:cols-9 {
    width: 90%;
  }

  .xl\:grid-10 > .xl\:offs-9 {
    margin-left: 90%;
  }

  .xl\:order-first {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }

  .xl\:order-0 {
    -webkit-box-ordinal-group: 1;
            order: 0;
  }

  .xl\:order-1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }

  .xl\:order-2 {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }

  .xl\:order-3 {
    -webkit-box-ordinal-group: 4;
            order: 3;
  }

  .xl\:order-4 {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }

  .xl\:order-5 {
    -webkit-box-ordinal-group: 6;
            order: 5;
  }

  .xl\:order-6 {
    -webkit-box-ordinal-group: 7;
            order: 6;
  }

  .xl\:order-7 {
    -webkit-box-ordinal-group: 8;
            order: 7;
  }

  .xl\:order-8 {
    -webkit-box-ordinal-group: 9;
            order: 8;
  }

  .xl\:order-9 {
    -webkit-box-ordinal-group: 10;
            order: 9;
  }

  .xl\:order-10 {
    -webkit-box-ordinal-group: 11;
            order: 10;
  }

  .xl\:order-11 {
    -webkit-box-ordinal-group: 12;
            order: 11;
  }

  .xl\:order-12 {
    -webkit-box-ordinal-group: 13;
            order: 12;
  }

  .xl\:order-13 {
    -webkit-box-ordinal-group: 14;
            order: 13;
  }

  .xl\:order-14 {
    -webkit-box-ordinal-group: 15;
            order: 14;
  }

  .xl\:order-last {
    -webkit-box-ordinal-group: 16;
            order: 15;
  }
}

.bg-gradient-blue-green {
  background-image: -webkit-gradient(linear, left top, right top, from(#0277bd), to(#00bea0));
  background-image: linear-gradient(to right, #0277bd, #00bea0);
}

.bg-gradient-blue-purple {
  background-image: -webkit-gradient(linear, left top, right top, from(#0277bd), to(#5a80d1));
  background-image: linear-gradient(to right, #0277bd, #5a80d1);
}

.bg-gradient-green-blue {
  background-image: -webkit-gradient(linear, left top, right top, from(#00bea0), to(#0277bd));
  background-image: linear-gradient(to right, #00bea0, #0277bd);
}

.bg-gradient-purple-blue {
  background-image: -webkit-gradient(linear, left top, right top, from(#5a80d1), to(#0277bd));
  background-image: linear-gradient(to right, #5a80d1, #0277bd);
}

.bg-gradient-red-orange {
  background-image: -webkit-gradient(linear, left top, right top, from(#cb001c), to(#ff9a0a));
  background-image: linear-gradient(to right, #cb001c, #ff9a0a);
}

.pin-t-0 {
  top: 0;
}

.pin-r-0 {
  right: 0;
}

.pin-b-0 {
  bottom: 0;
}

.pin-l-0 {
  left: 0;
}

.pin-t-1 {
  top: 1px;
}

.pin-r-1 {
  right: 1px;
}

.pin-b-1 {
  bottom: 1px;
}

.pin-l-1 {
  left: 1px;
}

.pin-t-3 {
  top: 3px;
}

.pin-r-3 {
  right: 3px;
}

.pin-b-3 {
  bottom: 3px;
}

.pin-l-3 {
  left: 3px;
}

.pin-t-5 {
  top: 5px;
}

.pin-r-5 {
  right: 5px;
}

.pin-b-5 {
  bottom: 5px;
}

.pin-l-5 {
  left: 5px;
}

.pin-t-6 {
  top: 6px;
}

.pin-r-6 {
  right: 6px;
}

.pin-b-6 {
  bottom: 6px;
}

.pin-l-6 {
  left: 6px;
}

.pin-t-10 {
  top: 10px;
}

.pin-r-10 {
  right: 10px;
}

.pin-b-10 {
  bottom: 10px;
}

.pin-l-10 {
  left: 10px;
}

.pin-t-11 {
  top: 11px;
}

.pin-r-11 {
  right: 11px;
}

.pin-b-11 {
  bottom: 11px;
}

.pin-l-11 {
  left: 11px;
}

.pin-t-12 {
  top: 3rem;
}

.pin-r-12 {
  right: 3rem;
}

.pin-b-12 {
  bottom: 3rem;
}

.pin-l-12 {
  left: 3rem;
}

.pin-t-15 {
  top: 15px;
}

.pin-r-15 {
  right: 15px;
}

.pin-b-15 {
  bottom: 15px;
}

.pin-l-15 {
  left: 15px;
}

.pin-t-16 {
  top: 4rem;
}

.pin-r-16 {
  right: 4rem;
}

.pin-b-16 {
  bottom: 4rem;
}

.pin-l-16 {
  left: 4rem;
}

.pin-t-20 {
  top: 20px;
}

.pin-r-20 {
  right: 20px;
}

.pin-b-20 {
  bottom: 20px;
}

.pin-l-20 {
  left: 20px;
}

.pin-t-25 {
  top: 25px;
}

.pin-r-25 {
  right: 25px;
}

.pin-b-25 {
  bottom: 25px;
}

.pin-l-25 {
  left: 25px;
}

.pin-t-50 {
  top: 50px;
}

.pin-r-50 {
  right: 50px;
}

.pin-b-50 {
  bottom: 50px;
}

.pin-l-50 {
  left: 50px;
}

.pin-t-64 {
  top: 64px;
}

.pin-r-64 {
  right: 64px;
}

.pin-b-64 {
  bottom: 64px;
}

.pin-l-64 {
  left: 64px;
}

.pin-t-75 {
  top: 75px;
}

.pin-r-75 {
  right: 75px;
}

.pin-b-75 {
  bottom: 75px;
}

.pin-l-75 {
  left: 75px;
}

.pin-t-80 {
  top: 80px;
}

.pin-r-80 {
  right: 80px;
}

.pin-b-80 {
  bottom: 80px;
}

.pin-l-80 {
  left: 80px;
}

.pin-t-100 {
  top: 100px;
}

.pin-r-100 {
  right: 100px;
}

.pin-b-100 {
  bottom: 100px;
}

.pin-l-100 {
  left: 100px;
}

.pin-t-150 {
  top: 150px;
}

.pin-r-150 {
  right: 150px;
}

.pin-b-150 {
  bottom: 150px;
}

.pin-l-150 {
  left: 150px;
}

.pin-t-200 {
  top: 150px;
}

.pin-r-200 {
  right: 150px;
}

.pin-b-200 {
  bottom: 150px;
}

.pin-l-200 {
  left: 150px;
}

.pin-t-250 {
  top: 250px;
}

.pin-r-250 {
  right: 250px;
}

.pin-b-250 {
  bottom: 250px;
}

.pin-l-250 {
  left: 250px;
}

.pin-t-300 {
  top: 300px;
}

.pin-r-300 {
  right: 300px;
}

.pin-b-300 {
  bottom: 300px;
}

.pin-l-300 {
  left: 300px;
}

.pin-t-400 {
  top: 400px;
}

.pin-r-400 {
  right: 400px;
}

.pin-b-400 {
  bottom: 400px;
}

.pin-l-400 {
  left: 400px;
}

.pin-t-500 {
  top: 500px;
}

.pin-r-500 {
  right: 500px;
}

.pin-b-500 {
  bottom: 500px;
}

.pin-l-500 {
  left: 500px;
}

.-pin-t-5 {
  top: -5px;
}

.-pin-r-5 {
  right: -5px;
}

.-pin-b-5 {
  bottom: -5px;
}

.-pin-l-5 {
  left: -5px;
}

.-pin-t-6 {
  top: -6px;
}

.-pin-r-6 {
  right: -6px;
}

.-pin-b-6 {
  bottom: -6px;
}

.-pin-l-6 {
  left: -6px;
}

.-pin-t-10 {
  top: -10px;
}

.-pin-r-10 {
  right: -10px;
}

.-pin-b-10 {
  bottom: -10px;
}

.-pin-l-10 {
  left: -10px;
}

.-pin-t-15 {
  top: -15px;
}

.-pin-r-15 {
  right: -15px;
}

.-pin-b-15 {
  bottom: -15px;
}

.-pin-l-15 {
  left: -15px;
}

.-pin-t-20 {
  top: -20px;
}

.-pin-r-20 {
  right: -20px;
}

.-pin-b-20 {
  bottom: -20px;
}

.-pin-l-20 {
  left: -20px;
}

.-pin-t-12 {
  top: -3rem;
}

.-pin-r-12 {
  right: -3rem;
}

.-pin-b-12 {
  bottom: -3rem;
}

.-pin-l-12 {
  left: -3rem;
}

.-pin-t-16 {
  top: -4rem;
}

.-pin-r-16 {
  right: -4rem;
}

.-pin-b-16 {
  bottom: -4rem;
}

.-pin-l-16 {
  left: -4rem;
}

.-pin-t-25 {
  top: -25px;
}

.-pin-r-25 {
  right: -25px;
}

.-pin-b-25 {
  bottom: -25px;
}

.-pin-l-25 {
  left: -25px;
}

.-pin-t-50 {
  top: -50px;
}

.-pin-r-50 {
  right: -50px;
}

.-pin-b-50 {
  bottom: -50px;
}

.-pin-l-50 {
  left: -50px;
}

.-pin-t-75 {
  top: 75px;
}

.-pin-r-75 {
  right: 75px;
}

.-pin-b-75 {
  bottom: 75px;
}

.-pin-l-75 {
  left: 75px;
}

.-pin-t-80 {
  top: -80px;
}

.-pin-r-80 {
  right: -80px;
}

.-pin-b-80 {
  bottom: -80px;
}

.-pin-l-80 {
  left: -80px;
}

.-pin-t-100 {
  top: -100px;
}

.-pin-r-100 {
  right: -100px;
}

.-pin-b-100 {
  bottom: -100px;
}

.-pin-l-100 {
  left: -100px;
}

.-pin-t-150 {
  top: -150px;
}

.-pin-r-150 {
  right: -150px;
}

.-pin-b-150 {
  bottom: -150px;
}

.-pin-l-150 {
  left: -150px;
}

.-pin-t-200 {
  top: -200px;
}

.-pin-r-200 {
  right: -200px;
}

.-pin-b-200 {
  bottom: -200px;
}

.-pin-l-200 {
  left: -200px;
}

.-pin-t-250 {
  top: -250px;
}

.-pin-r-250 {
  right: -250px;
}

.-pin-b-250 {
  bottom: -250px;
}

.-pin-l-250 {
  left: -250px;
}

.-pin-t-300 {
  top: -300px;
}

.-pin-r-300 {
  right: -300px;
}

.-pin-b-300 {
  bottom: -300px;
}

.-pin-l-300 {
  left: -300px;
}

.-pin-t-400 {
  top: -400px;
}

.-pin-r-400 {
  right: -400px;
}

.-pin-b-400 {
  bottom: -400px;
}

.-pin-l-400 {
  left: -400px;
}

.-pin-t-500 {
  top: -500px;
}

.-pin-r-500 {
  right: -500px;
}

.-pin-b-500 {
  bottom: -500px;
}

.-pin-l-500 {
  left: -500px;
}

.pin-t-half {
  top: 50%;
}

.pin-r-half {
  right: 50%;
}

.pin-b-half {
  bottom: 50%;
}

.pin-l-half {
  left: 50%;
}

.-pin-t-half {
  top: -50%;
}

.-pin-r-half {
  right: -50%;
}

.-pin-b-half {
  bottom: -50%;
}

.-pin-l-half {
  left: -50%;
}

.rotate-45 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.rotate-90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.-rotate-45 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.-rotate-90 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.-rotate-180 {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.-translateX-50 {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.-translateY-50 {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hover\:rotate-45:hover {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hover\:rotate-90:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.hover\:rotate-180:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.hover\:-rotate-45:hover {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hover\:-rotate-90:hover {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.hover\:-rotate-180:hover {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.hover\:-translateX-50:hover {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hover\:-translateY-50:hover {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/**
      * Here you would add any custom utilities you need that don't come out of the
      * box with Tailwind.
      *
      * Example :
      *
      * .bg-pattern-graph-paper { ... }
      * .skew-45 { ... }
      *
      * Or if using a preprocessor or `postcss-import`:
      *
      * @import "utilities/background-patterns";
      * @import "utilities/skew-transforms";
      */

/******************************************************************************/

/* variables.scss
/* Non color based variables.
/******************************************************************************/

/* Responsive Sizes */

/*=============================================*/

/* gradiant selection */

.green-cerulean-horizontal {
  background: #00bea0;
  background: -webkit-gradient(linear, left top, right top, from(#00bea0), color-stop(26%, #00bea0), color-stop(66%, #07b4dc), to(#07b4dc));
  background: linear-gradient(to right, #00bea0 0%, #00bea0 26%, #07b4dc 66%, #07b4dc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00bea0', endColorstr='#07b4dc', GradientType=1);
}

.green-cerulean-vertical {
  background: #00bea0;
  background: -webkit-gradient(linear, left top, left bottom, from(#00bea0), color-stop(26%, #00bea0), color-stop(66%, #07b4dc), to(#07b4dc));
  background: linear-gradient(to bottom, #00bea0 0%, #00bea0 26%, #07b4dc 66%, #07b4dc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00bea0', endColorstr='#07b4dc', GradientType=0);
}

.green-dodger-blue-horizontal {
  background: #00bea0;
  background: linear-gradient(45deg, #00bea0 0%, #1ea8c0 32%, #4091e3 51%, #5a82ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00bea0', endColorstr='#5a82ff', GradientType=1);
}

.green-dodger-blue-vertical {
  background: #00bea0;
  background: -webkit-gradient(linear, left top, left bottom, from(#00bea0), color-stop(34%, #1ea8c0), color-stop(52%, #4091e3), to(#5a82ff));
  background: linear-gradient(to bottom, #00bea0 0%, #1ea8c0 34%, #4091e3 52%, #5a82ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00bea0', endColorstr='#5a82ff', GradientType=0);
}

.dodger-blue-radical-red-horizontal {
  background: #5a82ff;
  background: -webkit-gradient(linear, left top, right top, from(#5a82ff), to(#ff3c5a));
  background: linear-gradient(to right, #5a82ff 0%, #ff3c5a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5a82ff', endColorstr='#ff3c5a', GradientType=1);
}

.dodger-blue-radical-red-vertical {
  background: #5a82ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#5a82ff), color-stop(85%, #ef4167), to(#ff3c5a));
  background: linear-gradient(to bottom, #5a82ff 0%, #ef4167 85%, #ff3c5a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5a82ff', endColorstr='#ff3c5a', GradientType=0);
}

.carribean-green-west-side-horizontal {
  background: #00bea0;
  background: -webkit-gradient(linear, left top, right top, from(#00bea0), color-stop(63%, #ff960a), color-stop(81%, #ff960a));
  background: linear-gradient(to right, #00bea0 0%, #ff960a 63%, #ff960a 81%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00bea0', endColorstr='#ff960a', GradientType=1);
}

.carribean-green-west-side-vertical {
  background: #00bea0;
  background: -webkit-gradient(linear, left top, left bottom, from(#00bea0), color-stop(63%, #ff960a), to(#ff960a));
  background: linear-gradient(to bottom, #00bea0 0%, #ff960a 63%, #ff960a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00bea0', endColorstr='#ff960a', GradientType=0);
}

.radical-red-west-side-horizontal {
  background: #ff3c5a;
  background: -webkit-gradient(linear, left top, right top, from(#ff3c5a), color-stop(50%, #ff7028), color-stop(78%, #ff960a));
  background: linear-gradient(to right, #ff3c5a 0%, #ff7028 50%, #ff960a 78%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c5a', endColorstr='#ff960a', GradientType=1);
}

.radical-red-west-side-vertical {
  background: #ff3c5a;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff3c5a), color-stop(45%, #ff7028), color-stop(82%, #ff960a));
  background: linear-gradient(to bottom, #ff3c5a 0%, #ff7028 45%, #ff960a 82%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c5a', endColorstr='#ff960a', GradientType=0);
}

/* end gradiant selection */

/*------Fonts--------*/

@font-face {
  font-family: 'aileronbold';
  src: url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/aileron-webfonts/aileron-bold-webfont.woff2") format("woff2"), url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/aileron-webfonts/aileron-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'aileronregular';
  src: url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/aileron-webfonts/aileron-regular-webfont.woff2") format("woff2"), url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/aileron-webfonts/aileron-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'aileronthin';
  src: url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/aileron-webfonts/aileron-thin-webfont.woff2") format("woff2"), url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/aileron-webfonts/aileron-thin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/*CeraPRO*/

@font-face {
  font-family: CeraPRO-Light;
  src: url(https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/cerapro/CeraPRO-Light.woff) format("woff"), url(https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/cerapro/CeraPRO-Light.otf) format("opentype");
}

@font-face {
  font-family: CeraPRO-Medium;
  src: url(https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/cerapro/CeraPRO-Medium.woff) format("woff"), url(https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/cerapro/CeraPRO-Medium.otf) format("opentype");
}

@font-face {
  font-family: CeraPRO-Regular;
  src: url(https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/cerapro/CeraPRO-Regular.woff) format("woff"), url(https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/cerapro/CeraPRO-Regular.otf) format("opentype");
}

/*End CeraPRO*/

@font-face {
  font-family: 'geom_graphicbold';
  src: url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/geom-graphic/geomgraphic_bold-webfont.woff2") format("woff2"), url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/geom-graphic/geomgraphic_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/*Icon fonts*/

@font-face {
  font-family: 'icomoon';
  src: url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/icommon/icomoon.eot?cepp4g");
  src: url("careers-westerndigital/icommon/icomoon.eot?cepp4g#iefix") format("embedded-opentype"), url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/icommon/icomoon.woff2?cepp4g") format("woff2"), url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/icommon/icomoon.ttf?cepp4g") format("truetype"), url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/icommon/icomoon.woff?cepp4g") format("woff"), url("https://static.sandisk.com/etc.clientlibs/wd-static/designs/fonts/icommon/icomoon.svg?cepp4g#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*End*/

/*butoon style bootstrap override*/

.form-control-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  padding: .65rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .3rem;
}

.btn {
  text-transform: uppercase;
  word-break: break-word;
  white-space: normal;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .btn {
    max-width: 95%;
  }
}

.btn.btn-sm {
  padding: .625rem 2.5rem;
}

@media (max-width: 480px) {
  .btn.btn-sm.btnMobileSmall {
    padding: .625rem 1.875rem;
  }
}

.btn.btn-xs {
  padding: .4rem 1.5rem;
  font-size: .7rem;
  font-weight: 700;
}

.btn.btn-lg {
  padding: .75rem 3.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.btn.btn-primary {
  background: none;
  border-color: #00a0dd;
}

.btn.btn-primary.outline {
  color: #00a0dd;
}

.btn.btn-primary.outline:before,
.btn.btn-primary.outline:after {
  background-color: transparent;
}

.btn.btn-primary:focus {
  color: #fff;
}

.btn.btn-primary:before,
.btn.btn-primary:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00a0dd;
  border-color: #00a0dd;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: width .25s ease;
  transition: width .25s ease;
  z-index: -1;
}

.btn.btn-primary:after {
  width: 0;
  background-color: #0991c7;
  border-color: #0991c7;
}

.btn.btn-primary:hover::after {
  width: 100%;
}

.btn.btn-light {
  color: #00a0dd;
  background: none;
  border-color: #fff;
}

.btn.btn-light.outline {
  color: #fff;
}

.btn.btn-light.outline:before,
.btn.btn-light.outline:after {
  background-color: transparent;
}

.btn.btn-light:before,
.btn.btn-light:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-color: #fff;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: width .25s ease;
  transition: width .25s ease;
  z-index: -1;
}

.btn.btn-light:after {
  width: 0;
  background-color: #ecedee;
  border-color: #ecedee;
}

.btn.btn-light:hover::after {
  width: 100%;
}

.btn.btn-dark {
  color: #fff;
  background: none;
  border-color: #000;
}

.btn.btn-dark.outline {
  color: #000;
}

.btn.btn-dark.outline:before,
.btn.btn-dark.outline:after {
  background-color: transparent;
}

.btn.btn-dark:before,
.btn.btn-dark:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-color: #000;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: width .25s ease;
  transition: width .25s ease;
  z-index: -1;
}

.btn.btn-dark:after {
  width: 0;
  background-color: #333;
  border-color: #333;
}

.btn.btn-dark:hover::after {
  width: 100%;
}

.btn.btn-orange {
  color: #fff;
  background: none;
  border-color: #f88d2b;
}

.btn.btn-orange.outline {
  color: #f88d2b;
}

.btn.btn-orange.outline:before,
.btn.btn-orange.outline:after {
  background-color: transparent;
}

.btn.btn-orange:before,
.btn.btn-orange:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f88d2b;
  border-color: #f88d2b;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: width .25s ease;
  transition: width .25s ease;
  z-index: -1;
}

.btn.btn-orange:after {
  width: 0;
  background-color: #f79337;
  border-color: #f79337;
}

.btn.btn-orange:hover::after {
  width: 100%;
}

.btn.link-with-arrow {
  outline: none;
  border: none;
  outline: none;
  box-shadow: none;
  color: #000;
}

.btn.link-with-arrow:after {
  content: "\f054";
  color: #00a0dd;
  margin-left: .2rem;
  font-family: FontAwesome;
  position: relative;
  left: 10px;
  margin-left: -5px;
}

.btn.link-with-arrow.focus {
  box-shadow: none;
}

.btn.link-with-custom-icon {
  background: none;
  padding: 0;
}

.btn.link-with-custom-icon.fa {
  font-family: aileronregular, Arimo, Helvetica, Arial, sans-serif;
  font-weight: 900;
}

.btn.link-with-custom-icon.fa:before {
  font: normal normal normal 14px/1 FontAwesome;
  margin-right: .5rem;
}

.btn.link-with-custom-icon.fas {
  font-family: aileronregular, Arimo, Helvetica, Arial, sans-serif;
  font-weight: 900;
}

.btn.link-with-custom-icon.fas:before {
  font-family: Font Awesome\ 5 Free;
  margin-right: .5rem;
}

.btn.link-with-custom-icon.btn-lg.fa:before,
.btn.link-with-custom-icon.btn-lg.fas:before {
  font-size: 1rem;
}

.btn.link-with-custom-icon.btn-sm.fa:before,
.btn.link-with-custom-icon.btn-sm.fas:before {
  font-size: .875rem;
}

.btn.link-with-custom-icon.btn-xs.fa:before,
.btn.link-with-custom-icon.btn-xs.fas:before {
  font-size: .7rem;
}

.btn.btn-wd-default {
  text-transform: uppercase;
  font-size: 1.25rem;
  padding: 0;
  color: #000;
  -webkit-transition: .2s color ease;
          transition: .2s color ease;
}

.btn.btn-wd-default:hover {
  color: #000;
  -webkit-transition: .2s color ease-in-out;
          transition: .2s color ease-in-out;
}

.btn.btn-wd-default:hover .arrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.btn.btn-wd-default .arrow {
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 10px;
  font-weight: 100;
  line-height: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: .2s ease-in-out;
          transition: .2s ease-in-out;
}

.btn.btn-wd-default .arrow:before {
  font-size: 1.5rem;
}

/*end*/

/*Select btn*/

.select-wrap:before {
  content: "\f078";
  z-index: 999;
  font-family: FontAwesome;
  right: 24px;
  position: absolute;
  top: 12px;
  pointer-events: none;
  color: #fff;
}

.select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.select-wrap select::-ms-expand {
  display: none;
}

.select-btn {
  height: 48px;
  border-radius: 5px;
  padding: 0 1rem;
  text-align: left;
  width: 100%;
}

.select-btn.primary-select {
  background: #00a0dd;
  color: #fff;
}

.select-btn.primary-select option {
  background: #fff;
  color: #000;
}

@supports (-ms-ime-align: auto) {
  /* Microsoft EdgeV13&14 CSS styles go here */

  .select-btn {
    padding: 0;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10 & IE11 CSS styles go here */

  .select-btn {
    padding: 0;
  }
}

/*End*/

/*button style*/

@-webkit-keyframes pulse {
  0% {
    border: 83px solid rgba(182, 239, 253, 0);
  }

  7% {
    border: 83px solid rgba(182, 239, 253, .08);
  }

  14% {
    border: 83px solid rgba(182, 239, 253, .16);
  }

  21% {
    border: 83px solid rgba(182, 239, 253, .24);
  }

  28% {
    border: 83px solid rgba(182, 239, 253, .32);
  }

  35% {
    border: 83px solid rgba(182, 239, 253, .4);
  }

  42% {
    border: 83px solid rgba(182, 239, 253, .48);
  }

  49% {
    border: 83px solid rgba(182, 239, 253, .58);
  }

  56% {
    border: 83px solid rgba(182, 239, 253, .7);
  }

  63% {
    border: 83px solid rgba(182, 239, 253, .58);
  }

  69% {
    border: 83px solid rgba(182, 239, 253, .48);
  }

  75% {
    border: 83px solid rgba(182, 239, 253, .4);
  }

  81% {
    border: 83px solid rgba(182, 239, 253, .32);
  }

  87% {
    border: 83px solid rgba(182, 239, 253, .24);
  }

  93% {
    border: 83px solid rgba(182, 239, 253, .16);
  }

  100% {
    border: 83px solid rgba(182, 239, 253, .08);
  }
}

@keyframes pulse {
  0% {
    border: 83px solid rgba(182, 239, 253, 0);
  }

  7% {
    border: 83px solid rgba(182, 239, 253, .08);
  }

  14% {
    border: 83px solid rgba(182, 239, 253, .16);
  }

  21% {
    border: 83px solid rgba(182, 239, 253, .24);
  }

  28% {
    border: 83px solid rgba(182, 239, 253, .32);
  }

  35% {
    border: 83px solid rgba(182, 239, 253, .4);
  }

  42% {
    border: 83px solid rgba(182, 239, 253, .48);
  }

  49% {
    border: 83px solid rgba(182, 239, 253, .58);
  }

  56% {
    border: 83px solid rgba(182, 239, 253, .7);
  }

  63% {
    border: 83px solid rgba(182, 239, 253, .58);
  }

  69% {
    border: 83px solid rgba(182, 239, 253, .48);
  }

  75% {
    border: 83px solid rgba(182, 239, 253, .4);
  }

  81% {
    border: 83px solid rgba(182, 239, 253, .32);
  }

  87% {
    border: 83px solid rgba(182, 239, 253, .24);
  }

  93% {
    border: 83px solid rgba(182, 239, 253, .16);
  }

  100% {
    border: 83px solid rgba(182, 239, 253, .08);
  }
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.wd-btn {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  width: auto;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.wd-btn .arrow {
  width: 14px;
}

.wd-btn.linky {
  -webkit-transition: .2s color ease-in-out;
          transition: .2s color ease-in-out;
}

.wd-btn.linky .arrow {
  -webkit-transition: -webkit-transform .2s ease-in-out;
          transition: -webkit-transform .2s ease-in-out;
          transition: transform .2s ease-in-out;
          transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.wd-btn.linky:hover .arrow {
  -webkit-transform: translateX(.5rem);
          transform: translateX(.5rem);
}

.wd-btn.cta-btn {
  display: inline-block;
}

.wd-btn.cta-btn .svg-icon {
  fill: none;
  stroke-miterlimit: 10;
  width: 72px;
  float: left;
  margin-right: 1rem;
  stroke-width: 0;
}

.wd-btn.cta-btn h5 {
  margin-bottom: .25rem;
  margin-top: 1.25rem;
}

.wd-btn.cta-btn .stroke-blue {
  stroke: inherit !important;
  stroke-width: 1px;
}

.wd-btn.cta-btn:hover .stroke-blue {
  stroke-dasharray: 350;
  stroke-dashoffset: 350;
  -webkit-animation: dash 1s linear forwards;
          animation: dash 1s linear forwards;
}

/* color codes */

/* End color codes */

/*Utility color for text and background*/

.cwd-blue {
  color: #00b8e0;
}

.wd-blue {
  color: #5a78e1;
}

.wd-blue-08 {
  color: #7b9be7;
}

.wd-blue-06 {
  color: #9cb4ed;
}

.wd-blue-04 {
  color: #bdcdf3;
}

.wd-blue-02 {
  color: #dee6ff;
}

.wd-red {
  color: #ff3c5a;
}

.wd-red-08 {
  color: #ff637b;
}

.wd-red-06 {
  color: #9c8a9c;
}

.wd-red-04 {
  color: #ffb1bd;
}

.wd-red-02 {
  color: #ded8de;
}

.wd-skyblue {
  color: #07b8e0;
}

.wd-skyblue-08 {
  color: #39c6e6;
}

.wd-skyblue-06 {
  color: #6ad4ec;
}

.wd-skyblue-04 {
  color: #9ce3f3;
}

.wd-skyblue-02 {
  color: #cdf1f9;
}

.wd-orange {
  color: #ff9a0a;
}

.wd-orange-08 {
  color: #ffae3b;
}

.wd-orange-06 {
  color: #ffc26c;
}

.wd-orange-04 {
  color: #ffd79d;
}

.wd-orange-02 {
  color: #ffebce;
}

.wd-grey {
  color: #929a9d;
}

.wd-grey-08 {
  color: #a8aeb1;
}

.wd-grey-06 {
  color: #bec2c4;
}

.wd-grey-04 {
  color: #d3d7d8;
}

.wd-grey-02 {
  color: #e9ebeb;
}

.wd-gray-alt1 {
  color: #f6f6f6;
}

.wd-gray-alt2 {
  color: #bbb;
}

.wd-gray-alt3 {
  color: #8a8a8a;
}

.wd-gray-alt4 {
  color: #6b6b6b;
}

.wd-green {
  color: #00bea0;
}

.wd-green-08 {
  color: #33cbb3;
}

.wd-green-06 {
  color: #66d8c6;
}

.wd-green-04 {
  color: #99e5d9;
}

.wd-green-02 {
  color: #ccf2ec;
}

.wd-bg-blue {
  background: #5a78e1;
}

.wd-bg-blue-08 {
  background: #7b9be7;
}

.wd-bg-blue-06 {
  background: #9cb4ed;
}

.wd-bg-blue-04 {
  background: #bdcdf3;
}

.wd-bg-blue-02 {
  background: #dee6ff;
}

.wd-bg-red {
  background: #ff3c5a;
}

.wd-bg-red-08 {
  background: #ff637b;
}

.wd-bg-red-06 {
  background: #9c8a9c;
}

.wd-bg-red-04 {
  background: #ffb1bd;
}

.wd-bg-red-02 {
  background: #ded8de;
}

.wd-bg-skyblue {
  background: #07b8e0;
}

.wd-bg-skyblue-08 {
  background: #39c6e6;
}

.wd-bg-skyblue-06 {
  background: #6ad4ec;
}

.wd-bg-skyblue-04 {
  background: #9ce3f3;
}

.wd-bg-skyblue-02 {
  background: #cdf1f9;
}

.wd-bg-orange {
  background: #ff9a0a;
}

.wd-bg-orange-08 {
  background: #ffae3b;
}

.wd-bg-orange-06 {
  background: #ffc26c;
}

.wd-bg-orange-04 {
  background: #ffd79d;
}

.wd-bg-orange-02 {
  background: #ffebce;
}

.wd-bg-grey {
  background: #929a9d;
}

.wd-bg-grey-08 {
  background: #a8aeb1;
}

.wd-bg-grey-06 {
  background: #bec2c4;
}

.wd-bg-grey-04 {
  background: #d3d7d8;
}

.wd-bg-grey-02 {
  background: #e9ebeb;
}

.wd-bg-gray-alt1 {
  color: #f6f6f6;
}

.wd-bg-gray-alt2 {
  color: #bbb;
}

.wd-bg-gray-alt3 {
  color: #8a8a8a;
}

.wd-bg-gray-alt4 {
  color: #6b6b6b;
}

.wd-bg-green {
  background: #00bea0;
}

.wd-bg-green-08 {
  background: #33cbb3;
}

.wd-bg-green-06 {
  background: #66d8c6;
}

.wd-bg-green-04 {
  background: #99e5d9;
}

.wd-bg-green-02 {
  background: #ccf2ec;
}

/** Site Specific Font Style SCSS **/

/*-----Font size--------*/

body {
  text-rendering: auto;
  font-smooth: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  font-family: 'CeraPRO-Regular', 'Helvetica', sans-serif;
  font-size: 1.125rem;
  color: #000;
  line-height: 1.5;
}

body:after {
  content: '';
  font-family: 'icomoon';
}

body:before {
  content: '';
  font-family: 'geom_graphicbold';
}

.container-fluid {
  width: 100%;
  max-width: 1460px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.f-size-lg {
  font-family: 'CeraPRO-Regular', 'Helvetica', sans-serif;
  font-size: 20px;
}

.f-size-lg p,
.f-size-lg li {
  font-family: 'CeraPRO-Regular', 'Helvetica', sans-serif;
  font-size: 20px;
}

.f-size-md {
  font-size: 1rem;
}

.f-size-md p,
.f-size-md li {
  font-size: 1rem;
}

.f-size-sm {
  font-size: .875rem;
}

.f-size-sm p,
.f-size-sm li {
  font-size: .875rem;
}

.f-size-xs {
  font-size: .75rem;
}

.f-size-xs p,
.f-size-xs li {
  font-size: .75rem;
}

.line-space-large p {
  line-height: 1.4;
}

@media screen and (min-width: 992px) {
  .line-space-large p {
    line-height: 1.6;
  }
}

@media screen and (min-width: 768px) {
  .line-space-large p {
    line-height: 1.8;
  }
}

button,
input,
optgroup,
select,
textarea {
  font-family: 'CeraPRO-Medium', Helvetica, Arial, sans-serif;
}

b,
strong {
  font-weight: bold;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #5a78e1;
  text-decoration: none;
}

p,
ul,
ol {
  font-family: 'CeraPRO-Medium', Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'CeraPRO-Medium', Helvetica, Arial, sans-serif;
  line-height: 1.15;
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 34px;
  margin-bottom: 1.5rem;
}

h5 {
  font-size: 30px;
  margin-bottom: .875rem;
}

h6 {
  font-size: 24px;
  margin-bottom: 1.5rem;
}

p,
ul,
ol {
  font-size: 26px;
  line-height: 1.4;
}

@media (min-width: 480px) {
  h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h4 {
    font-size: 34px;
    margin-bottom: 1.5rem;
  }

  h5 {
    font-size: 30px;
    margin-bottom: .875rem;
  }

  h6 {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }

  p,
  ul,
  ol {
    font-size: 26px;
    line-height: 1.4;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 71px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h4 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h5 {
    font-size: 30px;
    margin-bottom: .875rem;
  }

  h6 {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }

  p,
  ul,
  ol {
    font-size: 26px;
    line-height: 1.4;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 86px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h3 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h4 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h5 {
    font-size: 30px;
    margin-bottom: .875rem;
  }

  h6 {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }

  p,
  ul,
  ol {
    font-size: 26px;
    line-height: 1.4;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 86px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h3 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h4 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  h5 {
    font-size: 30px;
    margin-bottom: .875rem;
  }

  h6 {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }

  p,
  ul,
  ol {
    font-size: 26px;
    line-height: 1.4;
  }
}

/** westerndigital Header SCSS **/

.aem-AuthorLayer-Edit header {
  position: relative;
  background: #bebebe;
}

header {
  background: #353536;
  position: absolute;
  width: 100%;
  z-index: 3;
  /*& ~ section{
		& > div {
			& > .section:first-of-type {
				& > section.section{
					padding-top:196px;
				}	
			}
		}
	}*/
}

header .navbar-brand .header-logo {
  width: 141px;
}

header .navbar .navbar-toggler {
  border: none;
  color: #fff;
  font-size: 1.3rem;
  position: absolute;
  top: 8px;
  left: 1rem;
  cursor: pointer;
}

header .navbar .navbar-toggler .fa-navicon {
  margin-top: 3px;
}

header .navbar .navbar-collapse {
  position: absolute;
  background: #353536;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 46px;
  border-top: 1px solid #444;
  box-shadow: 0 12px 19px -12px rgba(0, 0, 0, .7);
}

header .navbar .navbar-collapse ul.navbar-nav {
  width: 100%;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item {
  font-family: 'CeraPRO-Light', 'Helvetica', sans-serif;
  font-size: 1rem;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item a {
  border-bottom: 1px solid #444;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item .nav-link {
  font-family: 'CeraPRO-Regular', Helvetica, Arial, sans-serif;
  font-size: 14px;
  padding-bottom: 1rem;
  padding-top: 1rem;
  display: block;
  color: #fff;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item .nav-link:hover {
  text-decoration: underline;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item .nav-link.dropdown-toggle:after {
  content: "\25BC";
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item.show > .nav-link {
  text-decoration: underline;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item.show > .nav-link.dropdown-toggle:after {
  content: "\25BC";
  text-decoration: none;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu {
  background: transparent;
  border-radius: 0;
  border: 0;
  text-align: left !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu .dropdown-item {
  padding: 0 !important;
  margin-left: 1rem !important;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu .dropdown-item:hover {
  background: transparent;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu .dropdown-item.col {
  flex-basis: auto;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu .dropdown-item .nav-link .mega-menu-icon {
  display: none !important;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu .dropdown-item .nav-link div {
  text-transform: inherit !important;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu .container {
  max-width: 100%;
}

header .navbar .navbar-collapse .searchWrap {
  font-size: 14px;
}

header .navbar .navbar-collapse .searchWrap a:hover {
  text-decoration: underline;
}

.aem-AuthorLayer-Edit header {
  position: relative;
}

.aem-AuthorLayer-Edit header ~ section > div > .section:first-of-type > section.section {
  padding-top: 3.75rem;
}

@media (min-width: 992px) {
  header {
    background: transparent;
  }

  header .navbar-brand {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  header .navbar-brand .header-logo {
    width: 141px;
  }

  header .navbar .navbar-collapse {
    background: transparent;
    position: static;
    top: 0;
    box-shadow: none;
    border-top: none;
  }

  header .navbar .navbar-collapse ul.navbar-nav {
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item {
    margin-left: 0;
    align-self: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item a {
    border-bottom: none;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item .nav-link {
    padding-bottom: 0;
    padding-top: 0;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item.show .nav-link {
    position: relative;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item.show .nav-link .caret-icon {
    position: absolute;
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item.show .nav-link .caret-icon:before {
    content: "\f0d8";
    font-family: FontAwesome;
    font-size: 2.5rem;
    color: #fff;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu {
    text-align: left !important;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    background: #fff;
    margin-top: .5rem;
    width: 100%;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    margin-left: 0 !important;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu .dropdown-item.col {
    flex-basis: auto;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu .dropdown-item .nav-link {
    color: #000;
    padding-top: .2rem;
    padding-bottom: .2rem;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item .dropdown-menu .dropdown-item .nav-link:hover {
    text-decoration: underline;
  }

  header .navbar .navbar-collapse .searchWrap {
    font-weight: bold;
  }
}

@media (min-width: 1050px) {
  header .navbar .navbar-collapse ul.navbar-nav li.nav-item {
    margin-left: .6rem;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item:first-child {
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  header .navbar .navbar-collapse {
    max-height: calc(100vh - 46px);
    overflow-y: auto;
  }
}

body.menu-open {
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, .25);
  overflow: hidden;
  width: 100%;
}

body.menu-open .navbar {
  background-color: #353536;
}

body.menu-open .navbar .navbar-toggler {
  color: #fff;
}

body.menu-open .navbar .navbar-toggler .fa-navicon:before {
  content: "\2715";
  font-size: 1.5rem;
}

body.menu-open .fa-shopping-cart {
  color: #fff;
}

@media (min-width: 768px) {
  body.menu-open .navbar {
    background-color: transparent;
  }
}

@media (max-width: 992px) {
  header .navbar .navbar-collapse ul.navbar-nav li.nav-item .nav-link.dropdown-toggle:after {
    position: absolute;
    right: 30px;
  }
}

/** westerndigital Footer SCSS **/

footer {
  display: none;
}

footer .footer-logo {
  height: 3.5rem;
}

/*Social media icons*/

.svgIcon {
  width: 25px;
  height: 15px;
  background-size: contain;
  display: -webkit-inline-box;
  display: inline-flex;
  background-position: center;
  background-repeat: no-repeat;
}

.svgIcon.link-linkedIn {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='linkedin-in'%20class='svg-inline--fa fa-linkedin-in fa-w-14'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20fill='currentColor'%20d='M100.3%20480H7.4V180.9h92.9V480zM53.8%20140.1C24.1 140.1%200%20115.5%200%2085.8%200%2056.1%2024.1%2032%2053.8%2032c29.7%200%2053.8%2024.1%2053.8%2053.8%200%2029.7-24.1%2054.3-53.8%2054.3zM448%20480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3%200-55.7%2037.7-55.7%2076.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5%2042.7-48.3%2087.9-48.3%2094%200%20111.3%2061.9%20111.3 142.3V480z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-linkedIn:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='linkedin-in'%20class='svg-inline--fa%20fa-linkedin-in%20fa-w-14'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20fill='rgb(255,154,10)'%20d='M100.3%20480H7.4V180.9h92.9V480zM53.8%20140.1C24.1%20140.1%200%20115.5%200%2085.8%200%2056.1%2024.1%2032%2053.8%2032c29.7%200%2053.8%2024.1%2053.8%2053.8%200%2029.7-24.1%2054.3-53.8%2054.3zM448%20480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3%200-55.7%2037.7-55.7%2076.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5%2042.7-48.3%2087.9-48.3%2094%200%20111.3%2061.9%20111.3%20142.3V480z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-facebook {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='facebook-f'%20class='svg-inline--fa%20fa-facebook-f%20fa-w-9'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20264%20512'%3E%3Cpath%20fill='currentColor'%20d='M76.7%20512V283H0v-91h76.7v-71.7C76.7%2042.4%20124.3%200%20193.8%200c33.3%200%2061.9%202.5%2070.2%203.6V85h-48.2c-37.8%200-45.1%2018-45.1%2044.3V192H256l-11.7%2091h-73.6v229'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-facebook:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='facebook-f'%20class='svg-inline--fa%20fa-facebook-f%20fa-w-9'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20264%20512'%3E%3Cpath%20fill='rgb(255,154,10)'%20d='M76.7%20512V283H0v-91h76.7v-71.7C76.7%2042.4%20124.3%200%20193.8%200c33.3%200%2061.9%202.5%2070.2%203.6V85h-48.2c-37.8%200-45.1%2018-45.1%2044.3V192H256l-11.7%2091h-73.6v229'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-twitter {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='twitter'%20class='svg-inline--fa%20fa-twitter%20fa-w-16'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20fill='currentColor'%20d='M459.37%20151.716c.325%204.548.325%209.097.325%2013.645%200%20138.72-105.583%20298.558-298.558%20298.558-59.452%200-114.68-17.219-161.137-47.106%208.447.974%2016.568%201.299%2025.34%201.299%2049.055%200%2094.213-16.568%20130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772%206.498.974%2012.995%201.624%2019.818%201.624%209.421%200%2018.843-1.3%2027.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969%207.797%2030.214%2012.67%2047.431%2013.319-28.264-18.843-46.781-51.005-46.781-87.391%200-19.492%205.197-37.36%2014.294-52.954%2051.655%2063.675%20129.3%20105.258%20216.365%20109.807-1.624-7.797-2.599-15.918-2.599-24.04%200-57.828%2046.782-104.934%20104.934-104.934%2030.213%200%2057.502%2012.67%2076.67%2033.137%2023.715-4.548%2046.456-13.32%2066.599-25.34-7.798%2024.366-24.366%2044.833-46.132%2057.827%2021.117-2.273%2041.584-8.122%2060.426-16.243-14.292%2020.791-32.161%2039.308-52.628%2054.253z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-twitter:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='twitter'%20class='svg-inline--fa%20fa-twitter%20fa-w-16'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20fill='rgb(255,154,10)'%20d='M459.37%20151.716c.325%204.548.325%209.097.325%2013.645%200%20138.72-105.583%20298.558-298.558%20298.558-59.452%200-114.68-17.219-161.137-47.106%208.447.974%2016.568%201.299%2025.34%201.299%2049.055%200%2094.213-16.568%20130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772%206.498.974%2012.995%201.624%2019.818%201.624%209.421%200%2018.843-1.3%2027.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969%207.797%2030.214%2012.67%2047.431%2013.319-28.264-18.843-46.781-51.005-46.781-87.391%200-19.492%205.197-37.36%2014.294-52.954%2051.655%2063.675%20129.3%20105.258%20216.365%20109.807-1.624-7.797-2.599-15.918-2.599-24.04%200-57.828%2046.782-104.934%20104.934-104.934%2030.213%200%2057.502%2012.67%2076.67%2033.137%2023.715-4.548%2046.456-13.32%2066.599-25.34-7.798%2024.366-24.366%2044.833-46.132%2057.827%2021.117-2.273%2041.584-8.122%2060.426-16.243-14.292%2020.791-32.161%2039.308-52.628%2054.253z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-google-plus {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='google-plus-g'%20class='svg-inline--fa%20fa-google-plus-g%20fa-w-20'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20512'%3E%3Cpath%20fill='currentColor'%20d='M386.061%20228.496c1.834%209.692%203.143%2019.384%203.143%2031.956C389.204%20370.205%20315.599%20448%20204.8%20448c-106.084%200-192-85.915-192-192s85.916-192%20192-192c51.864%200%2095.083%2018.859%20128.611%2050.292l-52.126%2050.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484%200-118.92%2054.221-118.92%20121.277%200%2067.056%2053.436%20121.277%20118.92%20121.277%2075.961%200%20104.513-54.745%20108.965-82.773H204.8v-66.009h181.261zm185.406%206.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-google-plus:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='google-plus-g'%20class='svg-inline--fa%20fa-google-plus-g%20fa-w-20'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20640%20512'%3E%3Cpath%20fill='rgb(255,154,10)'%20d='M386.061%20228.496c1.834%209.692%203.143%2019.384%203.143%2031.956C389.204%20370.205%20315.599%20448%20204.8%20448c-106.084%200-192-85.915-192-192s85.916-192%20192-192c51.864%200%2095.083%2018.859%20128.611%2050.292l-52.126%2050.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484%200-118.92%2054.221-118.92%20121.277%200%2067.056%2053.436%20121.277%20118.92%20121.277%2075.961%200%20104.513-54.745%20108.965-82.773H204.8v-66.009h181.261zm185.406%206.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-instagram {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='instagram'%20class='svg-inline--fa%20fa-instagram%20fa-w-14'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20fill='currentColor'%20d='M224.1%20141c-63.6%200-114.9%2051.3-114.9%20114.9s51.3%20114.9%20114.9%20114.9S339%20319.5%20339%20255.9%20287.7%20141%20224.1%20141zm0%20189.6c-41.1%200-74.7-33.5-74.7-74.7s33.5-74.7%2074.7-74.7%2074.7%2033.5%2074.7%2074.7-33.6%2074.7-74.7%2074.7zm146.4-194.3c0%2014.9-12%2026.8-26.8%2026.8-14.9%200-26.8-12-26.8-26.8s12-26.8%2026.8-26.8%2026.8%2012%2026.8%2026.8zm76.1%2027.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9%200-35.8%201.7-67.6%209.9-93.9%2036.1s-34.4%2058-36.2%2093.9c-2.1%2037-2.1%20147.9%200%20184.9%201.7%2035.9%209.9%2067.7%2036.2%2093.9s58%2034.4%2093.9%2036.2c37%202.1%20147.9%202.1%20184.9%200%2035.9-1.7%2067.7-9.9%2093.9-36.2%2026.2-26.2%2034.4-58%2036.2-93.9%202.1-37%202.1-147.8%200-184.8zM398.8%20388c-7.8%2019.6-22.9%2034.7-42.6%2042.6-29.5%2011.7-99.5%209-132.1%209s-102.7%202.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7%209-132.1c7.8-19.6%2022.9-34.7%2042.6-42.6%2029.5-11.7%2099.5-9%20132.1-9s102.7-2.6%20132.1%209c19.6%207.8%2034.7%2022.9%2042.6%2042.6%2011.7%2029.5%209%2099.5%209%20132.1s2.7%20102.7-9%20132.1z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-instagram:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='instagram'%20class='svg-inline--fa%20fa-instagram%20fa-w-14'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20fill='rgb(255,154,10)'%20d='M224.1%20141c-63.6%200-114.9%2051.3-114.9%20114.9s51.3%20114.9%20114.9%20114.9S339%20319.5%20339%20255.9%20287.7%20141%20224.1%20141zm0%20189.6c-41.1%200-74.7-33.5-74.7-74.7s33.5-74.7%2074.7-74.7%2074.7%2033.5%2074.7%2074.7-33.6%2074.7-74.7%2074.7zm146.4-194.3c0%2014.9-12%2026.8-26.8%2026.8-14.9%200-26.8-12-26.8-26.8s12-26.8%2026.8-26.8%2026.8%2012%2026.8%2026.8zm76.1%2027.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9%200-35.8%201.7-67.6%209.9-93.9%2036.1s-34.4%2058-36.2%2093.9c-2.1%2037-2.1%20147.9%200%20184.9%201.7%2035.9%209.9%2067.7%2036.2%2093.9s58%2034.4%2093.9%2036.2c37%202.1%20147.9%202.1%20184.9%200%2035.9-1.7%2067.7-9.9%2093.9-36.2%2026.2-26.2%2034.4-58%2036.2-93.9%202.1-37%202.1-147.8%200-184.8zM398.8%20388c-7.8%2019.6-22.9%2034.7-42.6%2042.6-29.5%2011.7-99.5%209-132.1%209s-102.7%202.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7%209-132.1c7.8-19.6%2022.9-34.7%2042.6-42.6%2029.5-11.7%2099.5-9%20132.1-9s102.7-2.6%20132.1%209c19.6%207.8%2034.7%2022.9%2042.6%2042.6%2011.7%2029.5%209%2099.5%209%20132.1s2.7%20102.7-9%20132.1z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-website {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fas'%20data-icon='desktop'%20class='svg-inline--fa%20fa-desktop%20fa-w-18'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20576%20512'%3E%3Cpath%20fill='currentColor'%20d='M528%200H48C21.5%200%200%2021.5%200%2048v320c0%2026.5%2021.5%2048%2048%2048h192l-16%2048h-72c-13.3%200-24%2010.7-24%2024s10.7%2024%2024%2024h272c13.3%200%2024-10.7%2024-24s-10.7-24-24-24h-72l-16-48h192c26.5%200%2048-21.5%2048-48V48c0-26.5-21.5-48-48-48zm-16%20352H64V64h448v288z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-website:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fas'%20data-icon='desktop'%20class='svg-inline--fa%20fa-desktop%20fa-w-18'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20576%20512'%3E%3Cpath%20fill='rgb(255,154,10)'%20d='M528%200H48C21.5%200%200%2021.5%200%2048v320c0%2026.5%2021.5%2048%2048%2048h192l-16%2048h-72c-13.3%200-24%2010.7-24%2024s10.7%2024%2024%2024h272c13.3%200%2024-10.7%2024-24s-10.7-24-24-24h-72l-16-48h192c26.5%200%2048-21.5%2048-48V48c0-26.5-21.5-48-48-48zm-16%20352H64V64h448v288z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-youtube {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='youtube'%20class='svg-inline--fa%20fa-youtube%20fa-w-18'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20576%20512'%3E%3Cpath%20fill='currentColor'%20d='M549.655%20124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781%2064%20288%2064%20288%2064S117.22%2064%2074.629%2075.486c-23.497%206.322-42.003%2024.947-48.284%2048.597-11.412%2042.867-11.412%20132.305-11.412%20132.305s0%2089.438%2011.412%20132.305c6.281%2023.65%2024.787%2041.5%2048.284%2047.821C117.22%20448%20288%20448%20288%20448s170.78%200%20213.371-11.486c23.497-6.321%2042.003-24.171%2048.284-47.821%2011.412-42.867%2011.412-132.305%2011.412-132.305s0-89.438-11.412-132.305zm-317.51%20213.508V175.185l142.739%2081.205-142.739%2081.201z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-youtube:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='youtube'%20class='svg-inline--fa%20fa-youtube%20fa-w-18'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20576%20512'%3E%3Cpath%20fill='rgb(255,154,10)'%20d='M549.655%20124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781%2064%20288%2064%20288%2064S117.22%2064%2074.629%2075.486c-23.497%206.322-42.003%2024.947-48.284%2048.597-11.412%2042.867-11.412%20132.305-11.412%20132.305s0%2089.438%2011.412%20132.305c6.281%2023.65%2024.787%2041.5%2048.284%2047.821C117.22%20448%20288%20448%20288%20448s170.78%200%20213.371-11.486c23.497-6.321%2042.003-24.171%2048.284-47.821%2011.412-42.867%2011.412-132.305%2011.412-132.305s0-89.438-11.412-132.305zm-317.51%20213.508V175.185l142.739%2081.205-142.739%2081.201z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-blog {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fas'%20data-icon='rss'%20class='svg-inline--fa%20fa-rss%20fa-w-14'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20fill='currentColor'%20d='M128.081%20415.959c0%2035.369-28.672%2064.041-64.041%2064.041S0%20451.328%200%20415.959s28.672-64.041%2064.041-64.041%2064.04%2028.673%2064.04%2064.041zm175.66%2047.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656%20175.765%200%20183.105%200%20192.253v48.069c0%208.415%206.49%2015.472%2014.887%2016.018%20111.832%207.284%20201.473%2096.702%20208.772%20208.772.547%208.397%207.604%2014.887%2016.018%2014.887h48.069c9.149.001%2016.489-7.655%2015.995-16.79zm144.249.288C439.596%20229.677%20251.465%2040.445%2016.503%2032.01%207.473%2031.686%200%2038.981%200%2048.016v48.068c0%208.625%206.835%2015.645%2015.453%2015.999%20191.179%207.839%20344.627%20161.316%20352.465%20352.465.353%208.618%207.373%2015.453%2015.999%2015.453h48.068c9.034-.001%2016.329-7.474%2016.005-16.504z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-blog:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fas'%20data-icon='rss'%20class='svg-inline--fa%20fa-rss%20fa-w-14'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20fill='rgb(255,154,10)'%20d='M128.081%20415.959c0%2035.369-28.672%2064.041-64.041%2064.041S0%20451.328%200%20415.959s28.672-64.041%2064.041-64.041%2064.04%2028.673%2064.04%2064.041zm175.66%2047.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656%20175.765%200%20183.105%200%20192.253v48.069c0%208.415%206.49%2015.472%2014.887%2016.018%20111.832%207.284%20201.473%2096.702%20208.772%20208.772.547%208.397%207.604%2014.887%2016.018%2014.887h48.069c9.149.001%2016.489-7.655%2015.995-16.79zm144.249.288C439.596%20229.677%20251.465%2040.445%2016.503%2032.01%207.473%2031.686%200%2038.981%200%2048.016v48.068c0%208.625%206.835%2015.645%2015.453%2015.999%20191.179%207.839%20344.627%20161.316%20352.465%20352.465.353%208.618%207.373%2015.453%2015.999%2015.453h48.068c9.034-.001%2016.329-7.474%2016.005-16.504z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-vimeo {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='vimeo-v'%20class='svg-inline--fa%20fa-vimeo-v%20fa-w-14'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20fill='currentColor'%20d='M447.8%20153.6c-2%2043.6-32.4%20103.3-91.4%20179.1-60.9%2079.2-112.4%20118.8-154.6%20118.8-26.1%200-48.2-24.1-66.3-72.3C100.3%20250%2085.3%20174.3%2056.2%20174.3c-3.4%200-15.1%207.1-35.2%2021.1L0%20168.2c51.6-45.3%20100.9-95.7%20131.8-98.5%2034.9-3.4%2056.3%2020.5%2064.4%2071.5%2028.7%20181.5%2041.4%20208.9%2093.6%20126.7%2018.7-29.6%2028.8-52.1%2030.2-67.6%204.8-45.9-35.8-42.8-63.3-31%2022-72.1%2064.1-107.1%20126.2-105.1%2045.8%201.2%2067.5%2031.1%2064.9%2089.4z'%3E%3C/path%3E%3C/svg%3E");
}

.svgIcon.link-vimeo:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden='true'%20data-prefix='fab'%20data-icon='vimeo-v'%20class='svg-inline--fa%20fa-vimeo-v%20fa-w-14'%20role='img'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20fill='rgb(255,154,10)'%20d='M447.8%20153.6c-2%2043.6-32.4%20103.3-91.4%20179.1-60.9%2079.2-112.4%20118.8-154.6%20118.8-26.1%200-48.2-24.1-66.3-72.3C100.3%20250%2085.3%20174.3%2056.2%20174.3c-3.4%200-15.1%207.1-35.2%2021.1L0%20168.2c51.6-45.3%20100.9-95.7%20131.8-98.5%2034.9-3.4%2056.3%2020.5%2064.4%2071.5%2028.7%20181.5%2041.4%20208.9%2093.6%20126.7%2018.7-29.6%2028.8-52.1%2030.2-67.6%204.8-45.9-35.8-42.8-63.3-31%2022-72.1%2064.1-107.1%20126.2-105.1%2045.8%201.2%2067.5%2031.1%2064.9%2089.4z'%3E%3C/path%3E%3C/svg%3E");
}

/* AEM CQ EDIT MODE*/

.cq-wcm-edit .row [class^="cq-placeholder-"] {
  width: auto !important;
}

.cq-Overlay--component-name {
  bottom: inherit;
  right: inherit;
}

/*End AEM*/

/*Utility styles*/

*,
::after,
::before {
  box-sizing: border-box;
  border: 0 solid #f6f6f6;
}

body {
  margin: 0;
}

button {
  background: transparent;
}

[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
  display: none !important;
}

a {
  text-decoration: none;
  -webkit-transition: all .25s ease;
          transition: all .25s ease;
}

a {
  color: #000;
}

a:hover,
a:focus,
a:active {
  color: #07b8e0;
}

button:focus,
button:active {
  outline: none;
}

.pointer {
  cursor: pointer;
}

.rounded-0 {
  border-radius: 0 !important;
}

.overflow-hidden {
  overflow: hidden;
}

.box-container {
  max-width: 1930px;
  margin: 0 auto;
}

.disclaimer {
  font-size: .75rem;
  line-height: 1.4;
}

.disclaimer p {
  font-size: .75rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .border-sm {
    border: 1px solid #515151;
  }
}

.svgIcon {
  max-width: 100px;
}

@media (min-width: 768px) {
  .svgIcon {
    max-width: 150px;
  }
}

.list-item-view:hover {
  background: #f7f7f7;
}

.mw-175 {
  max-width: 175px;
}

.zIndex0 {
  z-index: 0;
}

@media (min-width: 768px) {
  .d-md-inline-b {
    display: inline-block;
  }
}

.outline-none {
  outline: none;
}

.btn.link-with-custom-icon.fas,
.btn.link-with-custom-icon.fa {
  font-family: 'CeraPRO-Light', 'Helvetica', sans-serif;
}

.btn.btn.link-with-arrow {
  padding: 0;
  font-size: 20px;
  text-transform: initial;
}

.btn.btn.link-with-arrow:after {
  display: none;
}

/*Quotes*/

.quotes p {
  font-family: 'CeraPRO-Regular', 'Helvetica', sans-serif;
  font-size: 1.5rem;
}

.quotes:before,
.quotes:after {
  content: "";
  position: absolute;
  line-height: .5;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
}

.quotes:before {
  top: -10px;
  left: -40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='41' height='44' viewBox='0 0 41 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 24.4586L13.8476 0H20.142L15.1065 15.8262C12.5888 23.0199 11.3299 27.3361 11.3299 30.2136V43.1623H0V24.4586ZM20.142 24.4586L33.9896 0H40.284L35.2485 15.8262C32.7308 23.0199 31.4719 27.3361 31.4719 30.2136V43.1623H20.142V24.4586Z' fill='%23000000' fill-opacity='0.5'/%3e%3c/svg%3e ");
}

.quotes:after {
  bottom: -30px;
  right: -40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='41' height='44' viewBox='0 0 41 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 24.4586L13.8476 0H20.142L15.1065 15.8262C12.5888 23.0199 11.3299 27.3361 11.3299 30.2136V43.1623H0V24.4586ZM20.142 24.4586L33.9896 0H40.284L35.2485 15.8262C32.7308 23.0199 31.4719 27.3361 31.4719 30.2136V43.1623H20.142V24.4586Z' transform='translate(41 44) rotate(-180)' fill='%23000000' fill-opacity='0.5'/%3e%3c/svg%3e");
}

.quotes.wd-grey:before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='41' height='44' viewBox='0 0 41 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 24.4586L13.8476 0H20.142L15.1065 15.8262C12.5888 23.0199 11.3299 27.3361 11.3299 30.2136V43.1623H0V24.4586ZM20.142 24.4586L33.9896 0H40.284L35.2485 15.8262C32.7308 23.0199 31.4719 27.3361 31.4719 30.2136V43.1623H20.142V24.4586Z' fill='%23929A9D' fill-opacity='0.2'/%3e%3c/svg%3e ");
}

.quotes.wd-grey:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='41' height='44' viewBox='0 0 41 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 24.4586L13.8476 0H20.142L15.1065 15.8262C12.5888 23.0199 11.3299 27.3361 11.3299 30.2136V43.1623H0V24.4586ZM20.142 24.4586L33.9896 0H40.284L35.2485 15.8262C32.7308 23.0199 31.4719 27.3361 31.4719 30.2136V43.1623H20.142V24.4586Z' transform='translate(41 44) rotate(-180)' fill='%23929A9D' fill-opacity='0.2'/%3e%3c/svg%3e");
}

.text {
  position: relative;
}

.text-dark {
  color: #000 !important;
}

.textcolumn p:last-child {
  margin-bottom: 0;
}

.w-100 img {
  width: 100%;
}

/*end*/

.form-control::-webkit-input-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #929a9d;
}

.form-control::-webkit-input-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-ms-input-placeholder,
.form-control::placeholder {
  color: #929a9d;
}

.search-field::-ms-clear {
  display: none;
}

.form-check-input:disabled ~ .form-check-label {
  color: #caccd1;
}

.search-field {
  position: relative;
}

.search-field::after {
  content: "\f002";
  font-family: FontAwesome;
  color: #929a9d;
  position: absolute;
  right: 10px;
  z-index: 4;
  display: -webkit-box;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.2rem;
}

select option {
  font-family: verdana;
}

.input {
  position: relative;
}

.input label {
  margin-bottom: .1rem;
}

.input input {
  width: 100%;
  display: block;
  border: 1px solid #caccd1;
  line-height: normal;
  font-size: 1rem;
  padding: .75rem;
  margin-bottom: 2rem;
  color: #000;
}

.input textarea {
  width: 100%;
  display: block;
}

.input label ~ .error-message {
  line-height: 5.25rem;
}

.input .error-message {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 2.45rem;
  font-size: .75rem;
  padding: 0 .75rem;
  color: #ed1c24;
  pointer-events: none;
  -webkit-transition: opacity ease .5s;
          transition: opacity ease .5s;
}

.input .error-message.show {
  opacity: 1;
}

.newsletter-signup .input .error-message {
  top: -32px;
  right: -100px;
}

.selection {
  position: relative;
}

.selection .select-dropdown::before {
  content: "\f078";
  z-index: 999;
  font-family: FontAwesome;
  right: 10px;
  position: absolute;
  top: 10px;
  pointer-events: none;
}

.selection select {
  width: 100%;
  border: 1px solid #caccd1;
  line-height: normal;
  font-size: 1rem;
  padding: .75rem;
  margin-bottom: 2rem;
  color: #757575;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.selection select::-ms-expand {
  display: none;
}

.selection .error-message {
  opacity: 0;
  position: absolute;
  top: -30px;
  right: 0;
  line-height: 2.45rem;
  font-size: .75rem;
  padding: 0 .75rem;
  color: #ed1c24;
  pointer-events: none;
  -webkit-transition: opacity ease .5s;
          transition: opacity ease .5s;
}

.selection .error-message.show {
  opacity: 1;
}

hr.breaker {
  margin: 0;
  margin-bottom: 2rem;
  margin-top: 2rem;
  border-top: 3px solid rgba(0, 0, 0, .1);
  width: 100px;
}

.mega-menu {
  top: 9px;
}

.mega-menu ul li {
  list-style-type: none;
  margin-bottom: .5rem;
  line-height: 1.1;
}

.mega-menu > .container {
  padding-left: 0;
  padding-right: 0;
}

/*List view*/

.list-view ul li {
  list-style-type: none;
  margin-bottom: 1rem;
}

.list-view ul li::before {
  content: '|';
  position: absolute;
  color: #2f81ee;
  margin-left: -15px;
  width: 3.5px;
  background: #2f81ee;
  font-size: 14px;
  margin-top: 5px;
}

/* Disable click event*/

.disableClicks {
  pointer-events: none;
}

.shadow {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1), 1px 30px 85px 0 rgba(0, 0, 0, .1);
}

.font-weight-bold h1,
.font-weight-bold h2,
.font-weight-bold h3,
.font-weight-bold h4,
.font-weight-bold h5,
.font-weight-bold h6 {
  font-weight: 700;
}

/*End*/

/*section component*/

.section {
  position: relative;
}

.section.parbase {
  height: 100%;
}

section.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

section.section .container {
  position: relative;
}

section.section.left-50 .section-bg {
  display: none;
}

@media screen and (min-width: 768px) {
  section.section.left-50 .section-bg {
    width: 50%;
    right: initial;
    display: block;
  }
}

section.section.right-50 .section-bg {
  display: none;
}

@media screen and (min-width: 768px) {
  section.section.right-50 .section-bg {
    width: 50%;
    left: auto;
    display: block;
  }
}

section.section .section-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

section.section .subnav a {
  font-size: 1rem;
  color: #fff;
}

section.section .subnav a.active,
section.section .subnav a:hover {
  background: rgba(0, 0, 0, .1);
}

section.section .subnav .text-left .justify-content-center {
  -webkit-box-pack: left !important;
          justify-content: left !important;
}

section.section.fixedNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

section.section.fixedNav .subnav a {
  font-size: .8rem;
  padding: .3rem 2rem !important;
}

section.section.fixedNav .subnav a.active,
section.section.fixedNav .subnav a:hover {
  background: rgba(0, 0, 0, .1);
}

@media (min-width: 768px) {
  section.section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/*end*/

.callOutBox {
  padding: 25px !important;
  box-shadow: 0 0 100px rgba(0, 0, 0, .1);
}

@media (min-width: 768px) {
  .callOutBox {
    padding: 50px !important;
  }
}

@media (min-width: 1200px) {
  .callOutBox {
    padding: 70px !important;
  }
}

.aem-AuthorLayer-Edit .floatTop-100 {
  position: unset !important;
  top: 0;
}

.aem-AuthorLayer-Edit .floatTop-100.autoHeight {
  position: unset !important;
}

@media (min-width: 992px) {
  .floatTop-100 {
    top: -182px;
    position: absolute !important;
    z-index: 2;
    margin-bottom: 0;
  }

  .floatTop-100.autoHeight {
    position: relative !important;
  }
}

/*Breadcrumb*/

.component-breadcrumb {
  display: inline;
  padding: 0;
  text-transform: uppercase;
}

.component-breadcrumb a {
  color: #929a9d;
}

.component-breadcrumb a:first-of-type:before {
  padding-right: 3px;
  content: " ";
  font-size: 110%;
  font-weight: 100;
}

.component-breadcrumb a:before {
  content: " / ";
}

/*end*/

/*video*/

.videoImg img {
  cursor: pointer;
}

.videoImg:after {
  height: 60px;
  width: 60px;
  background-size: contain;
  content: ' ';
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg%20width='inherit'%20height='inherit'%20viewBox='0%200%2091%2091'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3c!--%20Generator:%20Sketch%2050.2%20(55047)%20-%20http://www.bohemiancoding.com/sketch%20--%3e%3cdesc%3eCreated%20with%20Sketch.%3c/desc%3e%3cdefs%3e%3c/defs%3e%3cg%20id='Symbols'%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3e%3cg%20id='Play-button'%20transform='translate(1.000000,%201.000000)'%20stroke='%23FFFFFF'%3e%3cg%20id='Group-2'%3e%3cpath%20d='M44.499,88.998%20C69.075,88.998%2088.998,69.075%2088.998,44.499%20C88.998,19.923%2069.075,0%2044.499,0%20C19.923,0%200,19.923%200,44.499%20C0,69.075%2019.923,88.998%2044.499,88.998%20Z'%20id='Path'%3e%3c/path%3e%3cpolygon%20id='Path'%20points='60.007%2044.499%2035.933%2029.843%2035.933%2059.155'%3e%3c/polygon%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

@media (min-width: 992px) {
  .videoImg:after {
    height: 91px;
    width: 91px;
  }
}

.component-modal .modal-content {
  background-color: transparent;
  border: 0;
}

.component-modal .closeVideo {
  position: absolute;
  right: 15px;
  top: 5px;
  width: 32px;
  height: 32px;
  opacity: .8;
  z-index: 9;
}

.component-modal .closeVideo:hover {
  opacity: 1;
}

.component-modal .closeVideo:before,
.component-modal .closeVideo:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 3px;
  background-color: #fff;
}

.component-modal .closeVideo:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.component-modal .closeVideo:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.video-view .position-relative {
  overflow: hidden;
}

.video-view .position-relative:before {
  content: "\f04b";
  font-size: 2.8rem;
  color: #fff;
  z-index: 1;
  position: absolute;
  bottom: 0;
  font-family: FontAwesome;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
}

.video-view .position-relative:after {
  content: "\f16a";
  font-size: 4rem;
  color: red;
  z-index: 2;
  position: absolute;
  bottom: 0;
  font-family: FontAwesome;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
}

/*End video*/

/*Min Height*/

.m-height1 {
  min-height: 100px;
}

.m-height2 {
  min-height: 200px;
}

.m-height2-5 {
  min-height: 250px;
}

.m-height3 {
  min-height: 300px;
}

.m-height4 {
  min-height: 400px;
}

.m-height5 {
  min-height: 500px;
}

.m-height6 {
  min-height: 600px;
}

.m-height7 {
  min-height: 700px;
}

.m-height8 {
  min-height: 800px;
}

.m-height9 {
  min-height: 900px;
}

/*End*/

/*Max Height*/

.max-height100 {
  max-height: 100px;
}

.max-height150 {
  max-height: 150px;
}

.max-height175 {
  max-height: 175px;
}

.max-height200 {
  max-height: 200px;
}

.max-height300 {
  max-height: 300px;
}

.max-height400 {
  max-height: 400px;
}

.max-height500 {
  max-height: 500px;
}

/*End*/

/*List style*/

.list {
  list-style-type: none;
  padding: 0;
}

.list li {
  margin-bottom: .5rem;
}

.list-item:hover {
  background-color: rgba(125, 125, 125, .09);
  color: #e9ebeb;
}

/*End*/

/*Border style*/

.border-default {
  border-color: #ccc !important;
}

.border-md-none,
.border-sm-none,
.border-lg-none,
border-xl-none {
  border-width: 0 !important;
}

@media (min-width: 576px) {
  .border-sm-none {
    border-width: 1px !important;
  }
}

@media (min-width: 768px) {
  .border-md-none {
    border-width: 1px !important;
  }
}

@media (min-width: 992px) {
  .border-lg-none {
    border-width: 1px !important;
  }
}

@media (min-width: 1200px) {
  .border-xl-none {
    border-width: 1px !important;
  }
}

.text-hide {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

/*End*/

/*Product Banner*/

@media (max-width: 767px) {
  .product-banner .container {
    max-width: 100%;
  }

  .product-banner .product-details {
    background-color: #323232;
  }
}

.product-banner .notAvailable {
  background-color: #3c3c3c;
  color: #5d5d5d !important;
}

.product-banner .slider.product-slider-single,
.product-banner .slider.product-slider-nav {
  visibility: hidden;
  height: 0;
}

.product-banner .slider.product-slider-single.slick-initialized,
.product-banner .slider.product-slider-nav.slick-initialized {
  visibility: visible;
  height: auto;
}

.product-banner .slider.product-slider-single .slick-list {
  min-height: 399.988px;
}

@media (min-width: 992px) {
  .product-banner .slider.product-slider-single .slick-list {
    min-height: 282.998px;
  }
}

@media (min-width: 768px) {
  .product-banner .slider.product-slider-single .slick-list {
    min-height: 399.988px;
  }
}

@media (min-width: 480px) {
  .product-banner .slider.product-slider-single .slick-list {
    min-height: 332.998px;
  }
}

.product-banner .box-lineThrough {
  position: relative;
  border-color: #000 !important;
}

.product-banner .box-lineThrough:after {
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  background: #000;
  content: "";
  width: 150%;
  display: block;
  /* IE 9 */
  -webkit-transform: rotate(40deg);
  /* Safari */
      transform: rotate(40deg);
  margin-left: -7px;
}

.product-banner .btn.productBtn {
  padding: .85rem 1.5rem;
}

.ps-widget.ps-disabled .ps-button-label {
  display: none;
}

.ps-widget.ps-disabled small {
  font-size: .875rem;
  color: #989898;
  padding-left: 1rem;
}

.ps-widget.ps-enabled {
  cursor: pointer;
}

.ps-widget.notCatalogPurchasable.ps-disabled {
  background-color: #caccd1;
  pointer-events: none;
}

.ps-widget.notCatalogPurchasable.ps-disabled .ps-button-label {
  display: none;
}

.ps-widget.notCatalogPurchasable.ps-disabled small {
  font-size: 1rem;
  color: #fff;
}

.ps-widget.notCatalogPurchasable.ps-enabled {
  background-color: #f88d2b;
}

/*End*/

/*Search*/

.corpSearch .search .form-control {
  background: #333;
  border: 0;
  border-right: 1px solid #666;
  border-left: 1px solid #666;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: normal;
  border-radius: 0;
  box-shadow: none;
  color: #f7f7f7;
}

.corpSearch .search .form-control::-webkit-input-placeholder {
  color: #f7f7f7;
}

.corpSearch .search .form-control::-moz-placeholder {
  color: #f7f7f7;
}

.corpSearch .search .form-control::-ms-input-placeholder {
  color: #f7f7f7;
}

.corpSearch .search .form-control::placeholder {
  color: #f7f7f7;
}

.corpSearch .search .search-action:focus {
  outline: none;
}

.corpSearch .search .search-action .btn-search {
  font-size: 1.8rem;
  background: 0;
  outline: 0;
  padding: 0 1rem;
  color: #f7f7f7;
  font-family: FontAwesome;
  font-weight: normal;
}

.corpSearch .search .search-action .btn-search:before {
  content: "\f002";
}

.corpSearch .search .search-action .btn-search .btn-text {
  display: none;
}

.corpSearch .search .search-action .btn-search:focus {
  outline: none;
  box-shadow: none;
}

.corpSearch .search .ui-autocomplete {
  width: 94.5%;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 50px;
  z-index: 1;
  background: rgba(255, 255, 255, .97);
}

.corpSearch .search .ui-autocomplete .ui-menu-item {
  padding: 1rem;
  font-weight: 300;
  border-bottom: 1px solid #e2e2e2;
}

.corpSearch .search .ui-autocomplete .ui-menu-item:hover {
  background: #f4f4f4;
  cursor: pointer;
  text-decoration: none;
}

.corpSearch .search .ui-autocomplete .ui-menu-item.ui-state-focus {
  background: #f4f4f4;
  cursor: pointer;
  text-decoration: none;
}

.corpSearch .spinner {
  margin-top: 20px;
  *zoom: 1;
  width: auto;
  max-width: 1440px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  width: 50px;
  height: 40px;
}

.corpSearch .spinner:before,
.corpSearch .spinner:after {
  content: '';
  display: table;
}

.corpSearch .spinner:after {
  clear: both;
}

.corpSearch .spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
          animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.corpSearch .spinner .rect2 {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.corpSearch .spinner .rect3 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.corpSearch .spinner .rect4 {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.corpSearch .spinner .rect5 {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

/*End*/

/***********************/

/* SLICK SLIDER STYLES */

/***********************/

.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
   -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:after {
  clear: both;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

@media only screen and (max-width: 50em) {
  .slick-slide .announcement .svg {
    display: none;
  }
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0;
}

.slick-dots li {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  text-align: center;
  background: none;
  border: 2px solid #fff;
  margin: 0 .5rem;
}

.slick-dots li.slick-active {
  background: #fff;
}

.slick-dots li:hover {
  background: rgba(255, 255, 255, .5);
}

.slick-dots li button {
  background: none;
  border: 0;
  text-indent: -400rem;
  outline: 0;
}

.slick-dots li button:active,
.slick-dots li button:focus {
  outline: 0;
}

@media only screen and (max-width: 40em) {
  .slick-dots {
    bottom: .5rem;
    margin: 0;
  }
}

section.section.fixed-height-banner {
  padding: 0;
}

.fixed-height-banner > .container.wrap > .parbase.div {
  width: 100%;
}

.fixed-height-banner .wrap {
  height: 500px;
}

.fixed-height-banner .wrap > div {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.fixed-height-banner .wrap h1 {
  margin-top: 0;
}

@media only screen and (max-width: 75em) {
  .fixed-height-banner .wrap > div {
    left: 1rem;
  }
}

@media only screen and (max-width: 64em) {
  .fixed-height-banner .wrap {
    height: 425px;
  }
}

@media only screen and (max-width: 50em) {
  .fixed-height-banner .wrap {
    height: 390px;
  }

  .fixed-height-banner .wrap h1 {
    font-size: 2.125rem;
  }
}

@media only screen and (max-width: 40em) {
  .fixed-height-banner .wrap {
    height: 325px;
  }

  .fixed-height-banner .wrap > div {
    left: 0;
    padding: 0 1rem;
  }

  .fixed-height-banner .wrap h1 {
    margin-top: 0;
    font-size: 1.625rem;
  }
}

@media only screen and (max-width: 25em) {
  .fixed-height-banner .wrap {
    height: 275px;
    color: #fff !important;
  }

  .fixed-height-banner .wrap h1 {
    margin-top: 0;
    font-size: 1.5rem;
  }

  .fixed-height-banner .wrap p {
    display: none;
  }

  .fixed-height-banner .wrap .btn {
    color: #fff;
    border-color: #fff;
  }

  .fixed-height-banner .wrap .btn.red {
    border-color: #ed1c24;
  }
}

@media only screen and (max-width: 40em) {
  .fixed-height-banner {
    background: #000;
  }

  .fixed-height-banner .section {
    background-color: #000;
  }

  .fixed-height-banner .section h1,
  .fixed-height-banner .section p {
    color: #fff !important;
  }

  .fixed-height-banner .section-bg {
    opacity: .35;
  }
}

/*Team Bio*/

@media (max-width: 767px) {
  .member-image {
    position: absolute;
    right: -20%;
  }

  .member-bio {
    padding-right: 30%;
  }
}

/*End*/

/*Add to Cart*/

.badge-notification {
  position: absolute;
  top: -3px;
  right: 0;
  background: #00adee;
  color: #fff;
  border-radius: 15px;
  min-width: 18px;
  padding: 2px 1px 0;
  font-size: 11px;
  min-height: 18px;
  text-align: center;
}

.mini-cart {
  display: none;
}

@media (min-width: 768px) {
  .mini-cart {
    background: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .6);
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 60px;
    width: 0;
    z-index: 3;
    -webkit-transition: max-height .5s ease;
            transition: max-height .5s ease;
  }

  .mini-cart.expand {
    max-height: 999px;
    width: 360px;
  }

  .mini-cart .cart-updating {
    border-bottom: 1px solid #ccc;
    display: none;
    font-size: 13px;
    font-weight: 400;
    padding: 15px 0;
    text-align: center;
  }

  .mini-cart .cart-updating.show-updating {
    display: block;
  }

  .mini-cart .cart-updating .updating-icon,
  .mini-cart .cart-updating .updating-label {
    display: inline-block;
    margin: 0 .5em;
    vertical-align: middle;
  }

  .mini-cart .cart-updating.show-updating {
    display: block;
  }

  .mini-cart .mini-cart-contents {
    list-style: none;
    margin: 0;
    max-height: 500px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0;
  }

  .mini-cart .mini-cart-contents .cart-item {
    border-bottom: 1px solid #ccc;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7em;
    margin: 0;
    padding: 28px 15px;
    position: relative;
  }

  .mini-cart .mini-cart-contents .cart-item .item-image {
    float: left;
    margin-right: 15px;
    width: 70px;
  }

  .mini-cart .mini-cart-contents .cart-item .item-image img {
    display: block;
    height: auto;
    max-width: 100%;
    width: auto;
  }

  .mini-cart .mini-cart-contents .cart-item .item-body {
    overflow: hidden;
  }

  .mini-cart .mini-cart-contents .cart-item .item-footer .item-qty {
    float: left;
    font-weight: 500;
  }

  .mini-cart .mini-cart-contents .cart-item .item-footer .item-price {
    float: right;
    font-size: 15px;
  }

  .mini-cart .mini-cart-contents .cart-item .item-remove {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAArUlEQVR42p3V0QmAMAwE0C7lhzt0gHYD53KHzuZn9MByKhJy+ThKWngc/Uk5lg1Zr+z3WSIxs2dwV68MnJgnao80EcbcP0Ytd1MTcQ9FBhtruIOyMdJE3EP7/OMArqGEA7iAEhbwAEpYwX3Uh4knUcI6TjQLdwduSZhoBhdQDVfQDiSKK2hBoriEKngYVfAJ1wSKVh6+4nFIKGEP39lYQAkT/2v8WoT5ZcqFjPkE6T42O+rd2c8AAAAASUVORK5CYII=") no-repeat 100% 50%;
    background-size: 11px;
    font-weight: 500;
    padding-right: 18px;
    position: absolute;
    right: 15px;
    text-transform: uppercase;
    top: 10px;
  }

  .mini-cart .mini-cart-footer {
    background: #f6f6f6;
    font-size: 16px;
    font-weight: 700;
    padding: 25px 15px;
  }

  .mini-cart .mini-cart-cta {
    background: #f6f6f6;
    display: none;
    padding: 0 15px 15px;
  }

  .mini-cart .mini-cart-cta.show {
    display: block;
  }

  .mini-cart .mini-cart-cta .btn {
    display: block;
  }
}

/* feed reader */

.feedThumbImg {
  height: 230px;
  width: 100%;
}

.feedThumbImg > div {
  width: inherit;
  height: inherit;
  background-size: cover;
}

.gradient-1 {
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left top, right top, from(#ff9a0a), to(#00bea0));
  background: linear-gradient(90deg, #ff9a0a 0%, #00bea0 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF9A0A', endColorstr='#00BEA0', GradientType=1);
  /* ie6-9 */
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}

.gradient-1 a:hover {
  color: transparent;
}

.gradient-2 {
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left top, right top, from(#5a80d1), to(#ff3c5a));
  background: linear-gradient(90deg, #5a80d1 0%, #ff3c5a 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5A80D1', endColorstr='#FF3C5A', GradientType=1);
  /* ie6-9 */
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}

.gradient-2 a:hover {
  color: transparent;
}

.gradient-3 {
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left top, right top, from(#ff9a0a), to(#ff3c5a));
  background: linear-gradient(90deg, #ff9a0a 0%, #ff3c5a 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF9A0A', endColorstr='#FF3C5A', GradientType=1);
  /* ie6-9 */
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}

.gradient-3 a:hover {
  color: transparent;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS styles go here */

  .gradient-1,
  .gradient-2,
  .gradient-3 {
    background: transparent;
  }

  .gradient-1 {
    color: #86ab51;
  }

  .gradient-1 a:hover {
    color: #86ab51;
  }

  .gradient-2 {
    color: #aa5f97;
  }

  .gradient-2 a:hover {
    color: #aa5f97;
  }

  .gradient-3 {
    color: #ff7c25;
  }

  .gradient-3 a:hover {
    color: #ff7c25;
  }
}

/*Tile list view*/

.tileHoverList {
  position: relative;
  width: auto;
  height: 100%;
  display: inline-block;
}

.tileHoverList::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 0;
  right: -1px;
  background-color: #ff3c5a;
  display: none;
}

.tileHoverList .tileViewContent {
  position: absolute;
  left: 5px;
  bottom: 5px;
  opacity: 0;
}

.tileHoverList:hover::before {
  display: block;
}

.tileHoverList:hover .tileViewContent {
  width: 100%;
  padding: 1rem;
  opacity: 1;
  text-align: center;
  bottom: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
  .tileHoverList .tileViewContent {
    display: none;
  }

  .tileHoverList:hover .tileViewContent {
    display: block;
  }
}

@media (min-width: 992px) {
  .tileHoverList::before {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
            transition: opacity .4s ease;
  }

  .tileHoverList:hover::before {
    opacity: .95;
    -webkit-transition: opacity .3s ease;
            transition: opacity .3s ease;
  }

  .tileHoverList:hover .tileViewContent {
    -webkit-transition: all .3s ease;
            transition: all .3s ease;
  }
}

.dropdown-menu {
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

header .navbar .navbar-toggler {
  background-color: transparent;
}

header .navbar .navbar-toggler.collapsed:before {
  content: '\2630';
}

@media (max-width: 992px) {
  header .navbar .navbar-collapse {
    display: none;
  }

  header .navbar .navbar-collapse.show {
    display: block;
  }
}

/**** Video Play *****/

.play-btn {
  opacity: .8;
}

.play-btn,
.play-btn:after {
  -webkit-transition: border-color .25s ease;
          transition: border-color .25s ease;
}

.play-btn:after {
  -webkit-transform: translate(-50%, -50%);
  border-bottom: .875rem solid transparent;
  border-left: 1.25rem solid #fff;
  border-top: .875rem solid transparent;
  content: "";
  left: 53%;
  position: absolute;
  top: 50%;
          transform: translate(-50%, -50%);
}

.play-btn:hover {
  background-color: rgba(216, 216, 216, .4);
  opacity: 1;
}

@media (min-width: 992px) {
  .wd-video-thumb .md\:pb-30\% {
    padding-bottom: 40%;
  }

  .md.wd-video-thumb .md\:pb-30\% {
    padding-bottom: 50%;
  }

  .featured.wd-video-thumb .md\:pb-30\% {
    padding-bottom: 47.5%;
  }

  .wd-video-thumb .play-btn {
    width: 3.3rem;
    height: 3.3rem;
  }

  .wd-video-thumb.full {
    position: relative;
  }

  .wd-video-thumb.full .responsive-image {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

/****End Video Play *****/

/*Modal widnow*/

.wd-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  background-color: #000;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, .7);
}

.wd-modal .wd-modal-dialog {
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  min-height: calc(100% - (1.75rem * 2));
}

.wd-modal .wd-modal-dialog .wd-modal-content {
  position: relative;
  display: -webkit-box;
  display: flex;
  width: 100%;
  background-clip: padding-box;
}

.wd-modal .wd-modal-dialog .wd-modal-content .embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.wd-modal .wd-modal-dialog .wd-modal-content .embed-responsive::before {
  display: block;
  content: "";
}

.wd-modal .wd-modal-dialog .wd-modal-content .embed-responsive.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.wd-modal .wd-modal-dialog .wd-modal-content .embed-responsive.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.wd-modal .wd-modal-dialog .wd-modal-content .embed-responsive.embed-responsive-4by3::before {
  padding-top: 75%;
}

.wd-modal .wd-modal-dialog .wd-modal-content .embed-responsive.embed-responsive-1by1::before {
  padding-top: 100%;
}

body.modal-open {
  overflow: hidden;
}

/*end modal*/

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform .3s ease-out;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog-centered {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: .5;
}

.modal-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

/*.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}*/

.modal-body.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
}

.modal-footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}

.modal-body.px-5.pb-5 {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  margin-top: 3rem;
}

/*Image Gallery component*/

.image-gallery-thumb {
  height: 177px;
  width: 100%;
}

@media (min-width: 576px) {
  .image-gallery-thumb {
    height: 231px;
  }
}

@media (min-width: 768px) {
  .image-gallery-thumb {
    height: 171px;
  }
}

@media (min-width: 992px) {
  .image-gallery-thumb {
    height: 178px;
  }
}

@media (min-width: 1140px) {
  .image-gallery-thumb {
    height: 210px;
  }
}

@media (min-width: 1460px) {
  .image-gallery-thumb {
    height: 277px;
  }
}

.store-image-gallery .slick-slide img {
  display: block;
  margin: 0 auto;
}

.heroBannerCarousel.slick-dotted.slick-slider,
.image-gallery-carousel.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.store-image-gallery .wd-modal .wd-modal-dialog {
  min-height: auto;
  height: 50%;
  width: 50%;
}

.image-gallery a {
  color: currentColor;
}

/*End image Gallery component*/

/*slick-slider*/

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
   -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  cursor: pointer;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
  -webkit-transition: none !important;
          transition: none !important;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
  z-index: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: 0;
  /*background: transparent;*/
  opacity: .4;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 1;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: .25;
}

.slick-prev.slick-disabled {
  left: 0;
}

.slick-next.slick-disabled {
  right: 0;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 40px;
  line-height: 1;
  opacity: .75;
  color: #fff;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
  .slick-prev {
    left: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3C?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3E%3C!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20width='20px'%20height='20px'%20viewBox='0%200%2041%2041'%20enable-background='new%200%200%2041%2041'%20xml:space='preserve'%3E%3Cimage%20id='image0'%20width='41'%20height='41'%20x='0'%20y='0'%20xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAApCAAAAACNC18qAAAABGdBTUEAALGPC/xhBQAAACBjSFJN%20AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZ%20cwAAAGAAAABgAPBrQs8AAAAHdElNRQfjAQ8UHyGjG+8GAAAASUlEQVQ4y2NgGAWjgDQg4MVEnEKx%20y/99iFV4WZAYhRLX/18SHeQKGU7/RwfIskSGHRqQJNr2gVdKdGySkEIYGAR9yAu5UTA8AQDq7DMk%20wgTv/wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxOS0wMS0xNlQwMzozMTozMy0wNzowMOjEmNsAAAAl%20dEVYdGRhdGU6bW9kaWZ5ADIwMTktMDEtMTZUMDM6MzE6MzMtMDc6MDCZmSBnAAAAAElFTkSuQmCC'%20/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1140px) {
  .slick-prev {
    left: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3C?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3E%3C!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20width='30px'%20height='30px'%20viewBox='0%200%2030%2030'%20enable-background='new%200%200%2041%2041'%20xml:space='preserve'%3E%3Cimage%20id='image0'%20width='30'%20height='30'%20x='0'%20y='0'%20xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAApCAAAAACNC18qAAAABGdBTUEAALGPC/xhBQAAACBjSFJN%20AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZ%20cwAAAGAAAABgAPBrQs8AAAAHdElNRQfjAQ8UHyGjG+8GAAAASUlEQVQ4y2NgGAWjgDQg4MVEnEKx%20y/99iFV4WZAYhRLX/18SHeQKGU7/RwfIskSGHRqQJNr2gVdKdGySkEIYGAR9yAu5UTA8AQDq7DMk%20wgTv/wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxOS0wMS0xNlQwMzozMTozMy0wNzowMOjEmNsAAAAl%20dEVYdGRhdGU6bW9kaWZ5ADIwMTktMDEtMTZUMDM6MzE6MzMtMDc6MDCZmSBnAAAAAElFTkSuQmCC'%20/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 1460px) {
  .slick-prev {
    left: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3C?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3E%3C!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20width='41px'%20height='41px'%20viewBox='0%200%2041%2041'%20enable-background='new%200%200%2041%2041'%20xml:space='preserve'%3E%3Cimage%20id='image0'%20width='41'%20height='41'%20x='0'%20y='0'%20xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAApCAAAAACNC18qAAAABGdBTUEAALGPC/xhBQAAACBjSFJN%20AAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAJcEhZ%20cwAAAGAAAABgAPBrQs8AAAAHdElNRQfjAQ8UHyGjG+8GAAAASUlEQVQ4y2NgGAWjgDQg4MVEnEKx%20y/99iFV4WZAYhRLX/18SHeQKGU7/RwfIskSGHRqQJNr2gVdKdGySkEIYGAR9yAu5UTA8AQDq7DMk%20wgTv/wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxOS0wMS0xNlQwMzozMTozMy0wNzowMOjEmNsAAAAl%20dEVYdGRhdGU6bW9kaWZ5ADIwMTktMDEtMTZUMDM6MzE6MzMtMDc6MDCZmSBnAAAAAElFTkSuQmCC'%20/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 41px;
    height: 41px;
  }
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '';
}

[dir='rtl'] .slick-prev:before {
  content: '';
}

@media (min-width: 768px) {
  .slick-next {
    right: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width='20'%20height='20'%20viewBox='0%200%2041%2041'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Crect%20width='41'%20height='41'%20fill='black'/%3E%3Cpath%20d='M29.7071%2020.7071C30.0976%2020.3166%2030.0976%2019.6834%2029.7071%2019.2929L23.3431%2012.9289C22.9526%2012.5384%2022.3195%2012.5384%2021.9289%2012.9289C21.5384%2013.3195%2021.5384%2013.9526%2021.9289%2014.3431L27.5858%2020L21.9289%2025.6569C21.5384%2026.0474%2021.5384%2026.6805%2021.9289%2027.0711C22.3195%2027.4616%2022.9526%2027.4616%2023.3431%2027.0711L29.7071%2020.7071ZM12%2021H29V19H12V21Z'%20fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1140px) {
  .slick-next {
    right: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width='30'%20height='30'%20viewBox='0%200%2041%2041'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Crect%20width='41'%20height='41'%20fill='black'/%3E%3Cpath%20d='M29.7071%2020.7071C30.0976%2020.3166%2030.0976%2019.6834%2029.7071%2019.2929L23.3431%2012.9289C22.9526%2012.5384%2022.3195%2012.5384%2021.9289%2012.9289C21.5384%2013.3195%2021.5384%2013.9526%2021.9289%2014.3431L27.5858%2020L21.9289%2025.6569C21.5384%2026.0474%2021.5384%2026.6805%2021.9289%2027.0711C22.3195%2027.4616%2022.9526%2027.4616%2023.3431%2027.0711L29.7071%2020.7071ZM12%2021H29V19H12V21Z'%20fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 1460px) {
  .slick-next {
    right: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width='41'%20height='41'%20viewBox='0%200%2041%2041'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Crect%20width='41'%20height='41'%20fill='black'/%3E%3Cpath%20d='M29.7071%2020.7071C30.0976%2020.3166%2030.0976%2019.6834%2029.7071%2019.2929L23.3431%2012.9289C22.9526%2012.5384%2022.3195%2012.5384%2021.9289%2012.9289C21.5384%2013.3195%2021.5384%2013.9526%2021.9289%2014.3431L27.5858%2020L21.9289%2025.6569C21.5384%2026.0474%2021.5384%2026.6805%2021.9289%2027.0711C22.3195%2027.4616%2022.9526%2027.4616%2023.3431%2027.0711L29.7071%2020.7071ZM12%2021H29V19H12V21Z'%20fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 41px;
    height: 41px;
  }
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '';
}

[dir='rtl'] .slick-next:before {
  content: '';
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: 0;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: 'â€¢';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/*end slick-slider*/

@media (min-width: 576px) {
  .xs\:list-reset {
    list-style: none;
    padding: 0;
  }

  .xs\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .xs\:bg-fixed {
    background-attachment: fixed;
  }

  .xs\:bg-local {
    background-attachment: local;
  }

  .xs\:bg-scroll {
    background-attachment: scroll;
  }

  .xs\:bg-transparent {
    background-color: transparent;
  }

  .xs\:bg-currentColor {
    background-color: currentColor;
  }

  .xs\:bg-black {
    background-color: #222;
  }

  .xs\:bg-black-10 {
    background-color: rgba(0, 0, 0, .1);
  }

  .xs\:bg-black-20 {
    background-color: rgba(0, 0, 0, .2);
  }

  .xs\:bg-black-30 {
    background-color: rgba(0, 0, 0, .3);
  }

  .xs\:bg-black-40 {
    background-color: rgba(0, 0, 0, .4);
  }

  .xs\:bg-black-50 {
    background-color: rgba(0, 0, 0, .5);
  }

  .xs\:bg-black-60 {
    background-color: rgba(0, 0, 0, .6);
  }

  .xs\:bg-black-70 {
    background-color: rgba(0, 0, 0, .7);
  }

  .xs\:bg-black-80 {
    background-color: rgba(0, 0, 0, .8);
  }

  .xs\:bg-black-90 {
    background-color: rgba(0, 0, 0, .9);
  }

  .xs\:bg-black-1 {
    background-color: #313131;
  }

  .xs\:bg-white {
    background-color: #fff;
  }

  .xs\:bg-blue {
    background-color: #0277bd;
  }

  .xs\:bg-dark-blue {
    background-color: #0277bd;
  }

  .xs\:bg-blue-1 {
    background-color: #17214a;
  }

  .xs\:bg-light-blue {
    background-color: #0277bd;
  }

  .xs\:bg-red {
    background-color: #cb001c;
  }

  .xs\:bg-green {
    background-color: #00bea0;
  }

  .xs\:bg-purple {
    background-color: #5a80d1;
  }

  .xs\:bg-orange {
    background-color: #ff9a0a;
  }

  .xs\:bg-grey {
    background-color: #929a9d;
  }

  .xs\:bg-grey-light {
    background-color: #e2e2e2;
  }

  .xs\:bg-grey-1 {
    background-color: #f2f3f3;
  }

  .xs\:bg-grey-2 {
    background-color: #c2c6c8;
  }

  .xs\:bg-grey-3 {
    background-color: #6b7375;
  }

  .xs\:bg-grey-4 {
    background-color: #465052;
  }

  .xs\:bg-grey-5 {
    background-color: #828688;
  }

  .xs\:bg-sd-red {
    background-color: #ed1c24;
  }

  .xs\:bg-light-blue-1 {
    background-color: #21b8de;
  }

  .xs\:bg-dark-blue-1 {
    background-color: #0277bd;
  }

  .xs\:bg-dark-orange {
    background-color: #df8403;
  }

  .xs\:bg-g-blue {
    background-color: #17214a;
  }

  .xs\:bg-g-blue-1 {
    background-color: #556d88;
  }

  .xs\:bg-g-blue-2 {
    background-color: #3c4c65;
  }

  .xs\:bg-g-blue-3 {
    background-color: #222e4d;
  }

  .xs\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .xs\:hover\:bg-currentColor:hover {
    background-color: currentColor;
  }

  .xs\:hover\:bg-black:hover {
    background-color: #222;
  }

  .xs\:hover\:bg-black-10:hover {
    background-color: rgba(0, 0, 0, .1);
  }

  .xs\:hover\:bg-black-20:hover {
    background-color: rgba(0, 0, 0, .2);
  }

  .xs\:hover\:bg-black-30:hover {
    background-color: rgba(0, 0, 0, .3);
  }

  .xs\:hover\:bg-black-40:hover {
    background-color: rgba(0, 0, 0, .4);
  }

  .xs\:hover\:bg-black-50:hover {
    background-color: rgba(0, 0, 0, .5);
  }

  .xs\:hover\:bg-black-60:hover {
    background-color: rgba(0, 0, 0, .6);
  }

  .xs\:hover\:bg-black-70:hover {
    background-color: rgba(0, 0, 0, .7);
  }

  .xs\:hover\:bg-black-80:hover {
    background-color: rgba(0, 0, 0, .8);
  }

  .xs\:hover\:bg-black-90:hover {
    background-color: rgba(0, 0, 0, .9);
  }

  .xs\:hover\:bg-black-1:hover {
    background-color: #313131;
  }

  .xs\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .xs\:hover\:bg-blue:hover {
    background-color: #0277bd;
  }

  .xs\:hover\:bg-dark-blue:hover {
    background-color: #0277bd;
  }

  .xs\:hover\:bg-blue-1:hover {
    background-color: #17214a;
  }

  .xs\:hover\:bg-light-blue:hover {
    background-color: #0277bd;
  }

  .xs\:hover\:bg-red:hover {
    background-color: #cb001c;
  }

  .xs\:hover\:bg-green:hover {
    background-color: #00bea0;
  }

  .xs\:hover\:bg-purple:hover {
    background-color: #5a80d1;
  }

  .xs\:hover\:bg-orange:hover {
    background-color: #ff9a0a;
  }

  .xs\:hover\:bg-grey:hover {
    background-color: #929a9d;
  }

  .xs\:hover\:bg-grey-light:hover {
    background-color: #e2e2e2;
  }

  .xs\:hover\:bg-grey-1:hover {
    background-color: #f2f3f3;
  }

  .xs\:hover\:bg-grey-2:hover {
    background-color: #c2c6c8;
  }

  .xs\:hover\:bg-grey-3:hover {
    background-color: #6b7375;
  }

  .xs\:hover\:bg-grey-4:hover {
    background-color: #465052;
  }

  .xs\:hover\:bg-grey-5:hover {
    background-color: #828688;
  }

  .xs\:hover\:bg-sd-red:hover {
    background-color: #ed1c24;
  }

  .xs\:hover\:bg-light-blue-1:hover {
    background-color: #21b8de;
  }

  .xs\:hover\:bg-dark-blue-1:hover {
    background-color: #0277bd;
  }

  .xs\:hover\:bg-dark-orange:hover {
    background-color: #df8403;
  }

  .xs\:hover\:bg-g-blue:hover {
    background-color: #17214a;
  }

  .xs\:hover\:bg-g-blue-1:hover {
    background-color: #556d88;
  }

  .xs\:hover\:bg-g-blue-2:hover {
    background-color: #3c4c65;
  }

  .xs\:hover\:bg-g-blue-3:hover {
    background-color: #222e4d;
  }

  .xs\:bg-bottom {
    background-position: bottom;
  }

  .xs\:bg-center {
    background-position: center;
  }

  .xs\:bg-left {
    background-position: left;
  }

  .xs\:bg-left-bottom {
    background-position: left bottom;
  }

  .xs\:bg-left-top {
    background-position: left top;
  }

  .xs\:bg-right {
    background-position: right;
  }

  .xs\:bg-right-bottom {
    background-position: right bottom;
  }

  .xs\:bg-right-top {
    background-position: right top;
  }

  .xs\:bg-top {
    background-position: top;
  }

  .xs\:bg-repeat {
    background-repeat: repeat;
  }

  .xs\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .xs\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .xs\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .xs\:bg-auto {
    background-size: auto;
  }

  .xs\:bg-cover {
    background-size: cover;
  }

  .xs\:bg-contain {
    background-size: contain;
  }

  .xs\:border-transparent {
    border-color: transparent;
  }

  .xs\:border-currentColor {
    border-color: currentColor;
  }

  .xs\:border-black {
    border-color: #222;
  }

  .xs\:border-black-10 {
    border-color: rgba(0, 0, 0, .1);
  }

  .xs\:border-black-20 {
    border-color: rgba(0, 0, 0, .2);
  }

  .xs\:border-black-30 {
    border-color: rgba(0, 0, 0, .3);
  }

  .xs\:border-black-40 {
    border-color: rgba(0, 0, 0, .4);
  }

  .xs\:border-black-50 {
    border-color: rgba(0, 0, 0, .5);
  }

  .xs\:border-black-60 {
    border-color: rgba(0, 0, 0, .6);
  }

  .xs\:border-black-70 {
    border-color: rgba(0, 0, 0, .7);
  }

  .xs\:border-black-80 {
    border-color: rgba(0, 0, 0, .8);
  }

  .xs\:border-black-90 {
    border-color: rgba(0, 0, 0, .9);
  }

  .xs\:border-black-1 {
    border-color: #313131;
  }

  .xs\:border-white {
    border-color: #fff;
  }

  .xs\:border-blue {
    border-color: #0277bd;
  }

  .xs\:border-dark-blue {
    border-color: #0277bd;
  }

  .xs\:border-blue-1 {
    border-color: #17214a;
  }

  .xs\:border-light-blue {
    border-color: #0277bd;
  }

  .xs\:border-red {
    border-color: #cb001c;
  }

  .xs\:border-green {
    border-color: #00bea0;
  }

  .xs\:border-purple {
    border-color: #5a80d1;
  }

  .xs\:border-orange {
    border-color: #ff9a0a;
  }

  .xs\:border-grey {
    border-color: #929a9d;
  }

  .xs\:border-grey-light {
    border-color: #e2e2e2;
  }

  .xs\:border-grey-1 {
    border-color: #f2f3f3;
  }

  .xs\:border-grey-2 {
    border-color: #c2c6c8;
  }

  .xs\:border-grey-3 {
    border-color: #6b7375;
  }

  .xs\:border-grey-4 {
    border-color: #465052;
  }

  .xs\:border-grey-5 {
    border-color: #828688;
  }

  .xs\:border-sd-red {
    border-color: #ed1c24;
  }

  .xs\:border-light-blue-1 {
    border-color: #21b8de;
  }

  .xs\:border-dark-blue-1 {
    border-color: #0277bd;
  }

  .xs\:border-dark-orange {
    border-color: #df8403;
  }

  .xs\:border-g-blue {
    border-color: #17214a;
  }

  .xs\:border-g-blue-1 {
    border-color: #556d88;
  }

  .xs\:border-g-blue-2 {
    border-color: #3c4c65;
  }

  .xs\:border-g-blue-3 {
    border-color: #222e4d;
  }

  .xs\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .xs\:hover\:border-currentColor:hover {
    border-color: currentColor;
  }

  .xs\:hover\:border-black:hover {
    border-color: #222;
  }

  .xs\:hover\:border-black-10:hover {
    border-color: rgba(0, 0, 0, .1);
  }

  .xs\:hover\:border-black-20:hover {
    border-color: rgba(0, 0, 0, .2);
  }

  .xs\:hover\:border-black-30:hover {
    border-color: rgba(0, 0, 0, .3);
  }

  .xs\:hover\:border-black-40:hover {
    border-color: rgba(0, 0, 0, .4);
  }

  .xs\:hover\:border-black-50:hover {
    border-color: rgba(0, 0, 0, .5);
  }

  .xs\:hover\:border-black-60:hover {
    border-color: rgba(0, 0, 0, .6);
  }

  .xs\:hover\:border-black-70:hover {
    border-color: rgba(0, 0, 0, .7);
  }

  .xs\:hover\:border-black-80:hover {
    border-color: rgba(0, 0, 0, .8);
  }

  .xs\:hover\:border-black-90:hover {
    border-color: rgba(0, 0, 0, .9);
  }

  .xs\:hover\:border-black-1:hover {
    border-color: #313131;
  }

  .xs\:hover\:border-white:hover {
    border-color: #fff;
  }

  .xs\:hover\:border-blue:hover {
    border-color: #0277bd;
  }

  .xs\:hover\:border-dark-blue:hover {
    border-color: #0277bd;
  }

  .xs\:hover\:border-blue-1:hover {
    border-color: #17214a;
  }

  .xs\:hover\:border-light-blue:hover {
    border-color: #0277bd;
  }

  .xs\:hover\:border-red:hover {
    border-color: #cb001c;
  }

  .xs\:hover\:border-green:hover {
    border-color: #00bea0;
  }

  .xs\:hover\:border-purple:hover {
    border-color: #5a80d1;
  }

  .xs\:hover\:border-orange:hover {
    border-color: #ff9a0a;
  }

  .xs\:hover\:border-grey:hover {
    border-color: #929a9d;
  }

  .xs\:hover\:border-grey-light:hover {
    border-color: #e2e2e2;
  }

  .xs\:hover\:border-grey-1:hover {
    border-color: #f2f3f3;
  }

  .xs\:hover\:border-grey-2:hover {
    border-color: #c2c6c8;
  }

  .xs\:hover\:border-grey-3:hover {
    border-color: #6b7375;
  }

  .xs\:hover\:border-grey-4:hover {
    border-color: #465052;
  }

  .xs\:hover\:border-grey-5:hover {
    border-color: #828688;
  }

  .xs\:hover\:border-sd-red:hover {
    border-color: #ed1c24;
  }

  .xs\:hover\:border-light-blue-1:hover {
    border-color: #21b8de;
  }

  .xs\:hover\:border-dark-blue-1:hover {
    border-color: #0277bd;
  }

  .xs\:hover\:border-dark-orange:hover {
    border-color: #df8403;
  }

  .xs\:hover\:border-g-blue:hover {
    border-color: #17214a;
  }

  .xs\:hover\:border-g-blue-1:hover {
    border-color: #556d88;
  }

  .xs\:hover\:border-g-blue-2:hover {
    border-color: #3c4c65;
  }

  .xs\:hover\:border-g-blue-3:hover {
    border-color: #222e4d;
  }

  .xs\:rounded-none {
    border-radius: 0;
  }

  .xs\:rounded-sm {
    border-radius: .125rem;
  }

  .xs\:rounded {
    border-radius: .25rem;
  }

  .xs\:rounded-lg {
    border-radius: .5rem;
  }

  .xs\:rounded-full {
    border-radius: 9999px;
  }

  .xs\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .xs\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .xs\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xs\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xs\:rounded-t-sm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .xs\:rounded-r-sm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .xs\:rounded-b-sm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .xs\:rounded-l-sm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .xs\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .xs\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .xs\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .xs\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .xs\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .xs\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .xs\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .xs\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .xs\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .xs\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .xs\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xs\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xs\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .xs\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .xs\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .xs\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .xs\:rounded-tl-sm {
    border-top-left-radius: .125rem;
  }

  .xs\:rounded-tr-sm {
    border-top-right-radius: .125rem;
  }

  .xs\:rounded-br-sm {
    border-bottom-right-radius: .125rem;
  }

  .xs\:rounded-bl-sm {
    border-bottom-left-radius: .125rem;
  }

  .xs\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .xs\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .xs\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .xs\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .xs\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .xs\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .xs\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .xs\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .xs\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .xs\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .xs\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .xs\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .xs\:border-solid {
    border-style: solid;
  }

  .xs\:border-dashed {
    border-style: dashed;
  }

  .xs\:border-dotted {
    border-style: dotted;
  }

  .xs\:border-none {
    border-style: none;
  }

  .xs\:border-0 {
    border-width: 0;
  }

  .xs\:border-2 {
    border-width: 2px;
  }

  .xs\:border-3 {
    border-width: 3px;
  }

  .xs\:border-4 {
    border-width: 4px;
  }

  .xs\:border-5 {
    border-width: 5px;
  }

  .xs\:border-6 {
    border-width: 6px;
  }

  .xs\:border-7 {
    border-width: 7px;
  }

  .xs\:border-8 {
    border-width: 8px;
  }

  .xs\:border-9 {
    border-width: 9px;
  }

  .xs\:border-10 {
    border-width: 10px;
  }

  .xs\:border {
    border-width: 1px;
  }

  .xs\:border-t-0 {
    border-top-width: 0;
  }

  .xs\:border-r-0 {
    border-right-width: 0;
  }

  .xs\:border-b-0 {
    border-bottom-width: 0;
  }

  .xs\:border-l-0 {
    border-left-width: 0;
  }

  .xs\:border-t-2 {
    border-top-width: 2px;
  }

  .xs\:border-r-2 {
    border-right-width: 2px;
  }

  .xs\:border-b-2 {
    border-bottom-width: 2px;
  }

  .xs\:border-l-2 {
    border-left-width: 2px;
  }

  .xs\:border-t-3 {
    border-top-width: 3px;
  }

  .xs\:border-r-3 {
    border-right-width: 3px;
  }

  .xs\:border-b-3 {
    border-bottom-width: 3px;
  }

  .xs\:border-l-3 {
    border-left-width: 3px;
  }

  .xs\:border-t-4 {
    border-top-width: 4px;
  }

  .xs\:border-r-4 {
    border-right-width: 4px;
  }

  .xs\:border-b-4 {
    border-bottom-width: 4px;
  }

  .xs\:border-l-4 {
    border-left-width: 4px;
  }

  .xs\:border-t-5 {
    border-top-width: 5px;
  }

  .xs\:border-r-5 {
    border-right-width: 5px;
  }

  .xs\:border-b-5 {
    border-bottom-width: 5px;
  }

  .xs\:border-l-5 {
    border-left-width: 5px;
  }

  .xs\:border-t-6 {
    border-top-width: 6px;
  }

  .xs\:border-r-6 {
    border-right-width: 6px;
  }

  .xs\:border-b-6 {
    border-bottom-width: 6px;
  }

  .xs\:border-l-6 {
    border-left-width: 6px;
  }

  .xs\:border-t-7 {
    border-top-width: 7px;
  }

  .xs\:border-r-7 {
    border-right-width: 7px;
  }

  .xs\:border-b-7 {
    border-bottom-width: 7px;
  }

  .xs\:border-l-7 {
    border-left-width: 7px;
  }

  .xs\:border-t-8 {
    border-top-width: 8px;
  }

  .xs\:border-r-8 {
    border-right-width: 8px;
  }

  .xs\:border-b-8 {
    border-bottom-width: 8px;
  }

  .xs\:border-l-8 {
    border-left-width: 8px;
  }

  .xs\:border-t-9 {
    border-top-width: 9px;
  }

  .xs\:border-r-9 {
    border-right-width: 9px;
  }

  .xs\:border-b-9 {
    border-bottom-width: 9px;
  }

  .xs\:border-l-9 {
    border-left-width: 9px;
  }

  .xs\:border-t-10 {
    border-top-width: 10px;
  }

  .xs\:border-r-10 {
    border-right-width: 10px;
  }

  .xs\:border-b-10 {
    border-bottom-width: 10px;
  }

  .xs\:border-l-10 {
    border-left-width: 10px;
  }

  .xs\:border-t {
    border-top-width: 1px;
  }

  .xs\:border-r {
    border-right-width: 1px;
  }

  .xs\:border-b {
    border-bottom-width: 1px;
  }

  .xs\:border-l {
    border-left-width: 1px;
  }

  .xs\:cursor-auto {
    cursor: auto;
  }

  .xs\:cursor-default {
    cursor: default;
  }

  .xs\:cursor-pointer {
    cursor: pointer;
  }

  .xs\:cursor-wait {
    cursor: wait;
  }

  .xs\:cursor-move {
    cursor: move;
  }

  .xs\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .xs\:block {
    display: block;
  }

  .xs\:inline-block {
    display: inline-block;
  }

  .xs\:inline {
    display: inline;
  }

  .xs\:table {
    display: table;
  }

  .xs\:table-row {
    display: table-row;
  }

  .xs\:table-cell {
    display: table-cell;
  }

  .xs\:hidden {
    display: none;
  }

  .xs\:flex {
    display: -webkit-box;
    display: flex;
  }

  .xs\:inline-flex {
    display: -webkit-inline-box;
    display: inline-flex;
  }

  .xs\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .xs\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }

  .xs\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .xs\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }

  .xs\:flex-wrap {
    flex-wrap: wrap;
  }

  .xs\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .xs\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .xs\:items-start {
    -webkit-box-align: start;
            align-items: flex-start;
  }

  .xs\:items-end {
    -webkit-box-align: end;
            align-items: flex-end;
  }

  .xs\:items-center {
    -webkit-box-align: center;
            align-items: center;
  }

  .xs\:items-baseline {
    -webkit-box-align: baseline;
            align-items: baseline;
  }

  .xs\:items-stretch {
    -webkit-box-align: stretch;
            align-items: stretch;
  }

  .xs\:self-auto {
    align-self: auto;
  }

  .xs\:self-start {
    align-self: flex-start;
  }

  .xs\:self-end {
    align-self: flex-end;
  }

  .xs\:self-center {
    align-self: center;
  }

  .xs\:self-stretch {
    align-self: stretch;
  }

  .xs\:justify-start {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }

  .xs\:justify-end {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }

  .xs\:justify-center {
    -webkit-box-pack: center;
            justify-content: center;
  }

  .xs\:justify-between {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }

  .xs\:justify-around {
    justify-content: space-around;
  }

  .xs\:content-center {
    align-content: center;
  }

  .xs\:content-start {
    align-content: flex-start;
  }

  .xs\:content-end {
    align-content: flex-end;
  }

  .xs\:content-between {
    align-content: space-between;
  }

  .xs\:content-around {
    align-content: space-around;
  }

  .xs\:flex-1 {
    -webkit-box-flex: 1;
            flex: 1;
  }

  .xs\:flex-auto {
    -webkit-box-flex: 1;
            flex: auto;
  }

  .xs\:flex-initial {
    -webkit-box-flex: initial;
            flex: initial;
  }

  .xs\:flex-none {
    -webkit-box-flex: 0;
            flex: none;
  }

  .xs\:flex-grow {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }

  .xs\:flex-shrink {
    flex-shrink: 1;
  }

  .xs\:flex-no-grow {
    -webkit-box-flex: 0;
            flex-grow: 0;
  }

  .xs\:flex-no-shrink {
    flex-shrink: 0;
  }

  .xs\:float-right {
    float: right;
  }

  .xs\:float-left {
    float: left;
  }

  .xs\:float-none {
    float: none;
  }

  .xs\:clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  .xs\:font-Roboto {
    font-family: Roboto;
  }

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

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

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

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

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

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

  .xs\:font-xxbold {
    font-weight: 900;
  }

  .xs\:hover\:font-light:hover {
    font-weight: 300;
  }

  .xs\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .xs\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .xs\:hover\:font-semibold:hover {
    font-weight: 600;
  }

  .xs\:hover\:font-bold:hover {
    font-weight: 700;
  }

  .xs\:hover\:font-extrabold:hover {
    font-weight: 800;
  }

  .xs\:hover\:font-xxbold:hover {
    font-weight: 900;
  }

  .xs\:h-0 {
    height: 0;
  }

  .xs\:h-1 {
    height: .25rem;
  }

  .xs\:h-2 {
    height: .5rem;
  }

  .xs\:h-3 {
    height: .75rem;
  }

  .xs\:h-4 {
    height: 1rem;
  }

  .xs\:h-5 {
    height: 1.25rem;
  }

  .xs\:h-6 {
    height: 1.5rem;
  }

  .xs\:h-7 {
    height: 1.75rem;
  }

  .xs\:h-8 {
    height: 2rem;
  }

  .xs\:h-9 {
    height: 2.25rem;
  }

  .xs\:h-10 {
    height: 2.5rem;
  }

  .xs\:h-12 {
    height: 3rem;
  }

  .xs\:h-14 {
    height: 3.5rem;
  }

  .xs\:h-16 {
    height: 4rem;
  }

  .xs\:h-18 {
    height: 4.5rem;
  }

  .xs\:h-24 {
    height: 6rem;
  }

  .xs\:h-32 {
    height: 8rem;
  }

  .xs\:h-48 {
    height: 12rem;
  }

  .xs\:h-64 {
    height: 16rem;
  }

  .xs\:h-auto {
    height: auto;
  }

  .xs\:h-px {
    height: 1px;
  }

  .xs\:h-2px {
    height: 2px;
  }

  .xs\:h-42px {
    height: 2.625rem;
  }

  .xs\:h-50px {
    height: 50px;
  }

  .xs\:h-100px {
    height: 100px;
  }

  .xs\:h-125px {
    height: 125px;
  }

  .xs\:h-150px {
    height: 150px;
  }

  .xs\:h-175px {
    height: 175px;
  }

  .xs\:h-200px {
    height: 200px;
  }

  .xs\:h-225px {
    height: 225px;
  }

  .xs\:h-250px {
    height: 250px;
  }

  .xs\:h-275px {
    height: 275px;
  }

  .xs\:h-300px {
    height: 300px;
  }

  .xs\:h-325px {
    height: 325px;
  }

  .xs\:h-350px {
    height: 350px;
  }

  .xs\:h-375px {
    height: 375px;
  }

  .xs\:h-400px {
    height: 400px;
  }

  .xs\:h-500px {
    height: 500px;
  }

  .xs\:h-576px {
    height: 576px;
  }

  .xs\:h-600px {
    height: 600px;
  }

  .xs\:h-700px {
    height: 700px;
  }

  .xs\:h-768px {
    height: 768px;
  }

  .xs\:h-800px {
    height: 800px;
  }

  .xs\:h-900px {
    height: 900px;
  }

  .xs\:h-992px {
    height: 992px;
  }

  .xs\:h-1000px {
    height: 1000px;
  }

  .xs\:h-1140px {
    height: 1140px;
  }

  .xs\:h-1200px {
    height: 1200px;
  }

  .xs\:h-1460px {
    height: 1460px;
  }

  .xs\:h-1600px {
    height: 1600px;
  }

  .xs\:h-screen {
    height: 100vh;
  }

  .xs\:h-half {
    height: 50%;
  }

  .xs\:h-quarter {
    height: 75%;
  }

  .xs\:h-85\% {
    height: 85%;
  }

  .xs\:h-full {
    height: 100%;
  }

  .xs\:hover\:h-0:hover {
    height: 0;
  }

  .xs\:hover\:h-1:hover {
    height: .25rem;
  }

  .xs\:hover\:h-2:hover {
    height: .5rem;
  }

  .xs\:hover\:h-3:hover {
    height: .75rem;
  }

  .xs\:hover\:h-4:hover {
    height: 1rem;
  }

  .xs\:hover\:h-5:hover {
    height: 1.25rem;
  }

  .xs\:hover\:h-6:hover {
    height: 1.5rem;
  }

  .xs\:hover\:h-7:hover {
    height: 1.75rem;
  }

  .xs\:hover\:h-8:hover {
    height: 2rem;
  }

  .xs\:hover\:h-9:hover {
    height: 2.25rem;
  }

  .xs\:hover\:h-10:hover {
    height: 2.5rem;
  }

  .xs\:hover\:h-12:hover {
    height: 3rem;
  }

  .xs\:hover\:h-14:hover {
    height: 3.5rem;
  }

  .xs\:hover\:h-16:hover {
    height: 4rem;
  }

  .xs\:hover\:h-18:hover {
    height: 4.5rem;
  }

  .xs\:hover\:h-24:hover {
    height: 6rem;
  }

  .xs\:hover\:h-32:hover {
    height: 8rem;
  }

  .xs\:hover\:h-48:hover {
    height: 12rem;
  }

  .xs\:hover\:h-64:hover {
    height: 16rem;
  }

  .xs\:hover\:h-auto:hover {
    height: auto;
  }

  .xs\:hover\:h-px:hover {
    height: 1px;
  }

  .xs\:hover\:h-2px:hover {
    height: 2px;
  }

  .xs\:hover\:h-42px:hover {
    height: 2.625rem;
  }

  .xs\:hover\:h-50px:hover {
    height: 50px;
  }

  .xs\:hover\:h-100px:hover {
    height: 100px;
  }

  .xs\:hover\:h-125px:hover {
    height: 125px;
  }

  .xs\:hover\:h-150px:hover {
    height: 150px;
  }

  .xs\:hover\:h-175px:hover {
    height: 175px;
  }

  .xs\:hover\:h-200px:hover {
    height: 200px;
  }

  .xs\:hover\:h-225px:hover {
    height: 225px;
  }

  .xs\:hover\:h-250px:hover {
    height: 250px;
  }

  .xs\:hover\:h-275px:hover {
    height: 275px;
  }

  .xs\:hover\:h-300px:hover {
    height: 300px;
  }

  .xs\:hover\:h-325px:hover {
    height: 325px;
  }

  .xs\:hover\:h-350px:hover {
    height: 350px;
  }

  .xs\:hover\:h-375px:hover {
    height: 375px;
  }

  .xs\:hover\:h-400px:hover {
    height: 400px;
  }

  .xs\:hover\:h-500px:hover {
    height: 500px;
  }

  .xs\:hover\:h-576px:hover {
    height: 576px;
  }

  .xs\:hover\:h-600px:hover {
    height: 600px;
  }

  .xs\:hover\:h-700px:hover {
    height: 700px;
  }

  .xs\:hover\:h-768px:hover {
    height: 768px;
  }

  .xs\:hover\:h-800px:hover {
    height: 800px;
  }

  .xs\:hover\:h-900px:hover {
    height: 900px;
  }

  .xs\:hover\:h-992px:hover {
    height: 992px;
  }

  .xs\:hover\:h-1000px:hover {
    height: 1000px;
  }

  .xs\:hover\:h-1140px:hover {
    height: 1140px;
  }

  .xs\:hover\:h-1200px:hover {
    height: 1200px;
  }

  .xs\:hover\:h-1460px:hover {
    height: 1460px;
  }

  .xs\:hover\:h-1600px:hover {
    height: 1600px;
  }

  .xs\:hover\:h-screen:hover {
    height: 100vh;
  }

  .xs\:hover\:h-half:hover {
    height: 50%;
  }

  .xs\:hover\:h-quarter:hover {
    height: 75%;
  }

  .xs\:hover\:h-85\%:hover {
    height: 85%;
  }

  .xs\:hover\:h-full:hover {
    height: 100%;
  }

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

  .xs\:leading-heading {
    line-height: 1.1;
  }

  .xs\:leading-tight {
    line-height: 1.2;
  }

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

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

  .xs\:m-0 {
    margin: 0;
  }

  .xs\:m-1 {
    margin: .25rem;
  }

  .xs\:m-2 {
    margin: .5rem;
  }

  .xs\:m-3 {
    margin: .75rem;
  }

  .xs\:m-4 {
    margin: 1rem;
  }

  .xs\:m-5 {
    margin: 1.25rem;
  }

  .xs\:m-6 {
    margin: 1.5rem;
  }

  .xs\:m-7 {
    margin: 1.75rem;
  }

  .xs\:m-8 {
    margin: 2rem;
  }

  .xs\:m-9 {
    margin: 2.25rem;
  }

  .xs\:m-10 {
    margin: 2.5rem;
  }

  .xs\:m-12 {
    margin: 3rem;
  }

  .xs\:m-16 {
    margin: 4rem;
  }

  .xs\:m-20 {
    margin: 5rem;
  }

  .xs\:m-24 {
    margin: 6rem;
  }

  .xs\:m-28 {
    margin: 7rem;
  }

  .xs\:m-32 {
    margin: 8rem;
  }

  .xs\:m-36 {
    margin: 9rem;
  }

  .xs\:m-40 {
    margin: 10rem;
  }

  .xs\:m-44 {
    margin: 11rem;
  }

  .xs\:m-48 {
    margin: 12rem;
  }

  .xs\:m-56 {
    margin: 14rem;
  }

  .xs\:m-60 {
    margin: 15rem;
  }

  .xs\:m-64 {
    margin: 16rem;
  }

  .xs\:m-80 {
    margin: 20rem;
  }

  .xs\:m-96 {
    margin: 24rem;
  }

  .xs\:m-120 {
    margin: 30rem;
  }

  .xs\:m-160 {
    margin: 40rem;
  }

  .xs\:m-auto {
    margin: auto;
  }

  .xs\:m-px {
    margin: 1px;
  }

  .xs\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .xs\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xs\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .xs\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .xs\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .xs\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .xs\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .xs\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .xs\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .xs\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .xs\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .xs\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .xs\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .xs\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .xs\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .xs\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .xs\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .xs\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .xs\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .xs\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .xs\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .xs\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .xs\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .xs\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .xs\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .xs\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .xs\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .xs\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .xs\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .xs\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .xs\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .xs\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .xs\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .xs\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .xs\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .xs\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .xs\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .xs\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .xs\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .xs\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .xs\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .xs\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .xs\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .xs\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .xs\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .xs\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .xs\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .xs\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .xs\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .xs\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .xs\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .xs\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .xs\:my-120 {
    margin-top: 30rem;
    margin-bottom: 30rem;
  }

  .xs\:mx-120 {
    margin-left: 30rem;
    margin-right: 30rem;
  }

  .xs\:my-160 {
    margin-top: 40rem;
    margin-bottom: 40rem;
  }

  .xs\:mx-160 {
    margin-left: 40rem;
    margin-right: 40rem;
  }

  .xs\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .xs\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .xs\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .xs\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .xs\:mt-0 {
    margin-top: 0;
  }

  .xs\:mr-0 {
    margin-right: 0;
  }

  .xs\:mb-0 {
    margin-bottom: 0;
  }

  .xs\:ml-0 {
    margin-left: 0;
  }

  .xs\:mt-1 {
    margin-top: .25rem;
  }

  .xs\:mr-1 {
    margin-right: .25rem;
  }

  .xs\:mb-1 {
    margin-bottom: .25rem;
  }

  .xs\:ml-1 {
    margin-left: .25rem;
  }

  .xs\:mt-2 {
    margin-top: .5rem;
  }

  .xs\:mr-2 {
    margin-right: .5rem;
  }

  .xs\:mb-2 {
    margin-bottom: .5rem;
  }

  .xs\:ml-2 {
    margin-left: .5rem;
  }

  .xs\:mt-3 {
    margin-top: .75rem;
  }

  .xs\:mr-3 {
    margin-right: .75rem;
  }

  .xs\:mb-3 {
    margin-bottom: .75rem;
  }

  .xs\:ml-3 {
    margin-left: .75rem;
  }

  .xs\:mt-4 {
    margin-top: 1rem;
  }

  .xs\:mr-4 {
    margin-right: 1rem;
  }

  .xs\:mb-4 {
    margin-bottom: 1rem;
  }

  .xs\:ml-4 {
    margin-left: 1rem;
  }

  .xs\:mt-5 {
    margin-top: 1.25rem;
  }

  .xs\:mr-5 {
    margin-right: 1.25rem;
  }

  .xs\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .xs\:ml-5 {
    margin-left: 1.25rem;
  }

  .xs\:mt-6 {
    margin-top: 1.5rem;
  }

  .xs\:mr-6 {
    margin-right: 1.5rem;
  }

  .xs\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .xs\:ml-6 {
    margin-left: 1.5rem;
  }

  .xs\:mt-7 {
    margin-top: 1.75rem;
  }

  .xs\:mr-7 {
    margin-right: 1.75rem;
  }

  .xs\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .xs\:ml-7 {
    margin-left: 1.75rem;
  }

  .xs\:mt-8 {
    margin-top: 2rem;
  }

  .xs\:mr-8 {
    margin-right: 2rem;
  }

  .xs\:mb-8 {
    margin-bottom: 2rem;
  }

  .xs\:ml-8 {
    margin-left: 2rem;
  }

  .xs\:mt-9 {
    margin-top: 2.25rem;
  }

  .xs\:mr-9 {
    margin-right: 2.25rem;
  }

  .xs\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .xs\:ml-9 {
    margin-left: 2.25rem;
  }

  .xs\:mt-10 {
    margin-top: 2.5rem;
  }

  .xs\:mr-10 {
    margin-right: 2.5rem;
  }

  .xs\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .xs\:ml-10 {
    margin-left: 2.5rem;
  }

  .xs\:mt-12 {
    margin-top: 3rem;
  }

  .xs\:mr-12 {
    margin-right: 3rem;
  }

  .xs\:mb-12 {
    margin-bottom: 3rem;
  }

  .xs\:ml-12 {
    margin-left: 3rem;
  }

  .xs\:mt-16 {
    margin-top: 4rem;
  }

  .xs\:mr-16 {
    margin-right: 4rem;
  }

  .xs\:mb-16 {
    margin-bottom: 4rem;
  }

  .xs\:ml-16 {
    margin-left: 4rem;
  }

  .xs\:mt-20 {
    margin-top: 5rem;
  }

  .xs\:mr-20 {
    margin-right: 5rem;
  }

  .xs\:mb-20 {
    margin-bottom: 5rem;
  }

  .xs\:ml-20 {
    margin-left: 5rem;
  }

  .xs\:mt-24 {
    margin-top: 6rem;
  }

  .xs\:mr-24 {
    margin-right: 6rem;
  }

  .xs\:mb-24 {
    margin-bottom: 6rem;
  }

  .xs\:ml-24 {
    margin-left: 6rem;
  }

  .xs\:mt-28 {
    margin-top: 7rem;
  }

  .xs\:mr-28 {
    margin-right: 7rem;
  }

  .xs\:mb-28 {
    margin-bottom: 7rem;
  }

  .xs\:ml-28 {
    margin-left: 7rem;
  }

  .xs\:mt-32 {
    margin-top: 8rem;
  }

  .xs\:mr-32 {
    margin-right: 8rem;
  }

  .xs\:mb-32 {
    margin-bottom: 8rem;
  }

  .xs\:ml-32 {
    margin-left: 8rem;
  }

  .xs\:mt-36 {
    margin-top: 9rem;
  }

  .xs\:mr-36 {
    margin-right: 9rem;
  }

  .xs\:mb-36 {
    margin-bottom: 9rem;
  }

  .xs\:ml-36 {
    margin-left: 9rem;
  }

  .xs\:mt-40 {
    margin-top: 10rem;
  }

  .xs\:mr-40 {
    margin-right: 10rem;
  }

  .xs\:mb-40 {
    margin-bottom: 10rem;
  }

  .xs\:ml-40 {
    margin-left: 10rem;
  }

  .xs\:mt-44 {
    margin-top: 11rem;
  }

  .xs\:mr-44 {
    margin-right: 11rem;
  }

  .xs\:mb-44 {
    margin-bottom: 11rem;
  }

  .xs\:ml-44 {
    margin-left: 11rem;
  }

  .xs\:mt-48 {
    margin-top: 12rem;
  }

  .xs\:mr-48 {
    margin-right: 12rem;
  }

  .xs\:mb-48 {
    margin-bottom: 12rem;
  }

  .xs\:ml-48 {
    margin-left: 12rem;
  }

  .xs\:mt-56 {
    margin-top: 14rem;
  }

  .xs\:mr-56 {
    margin-right: 14rem;
  }

  .xs\:mb-56 {
    margin-bottom: 14rem;
  }

  .xs\:ml-56 {
    margin-left: 14rem;
  }

  .xs\:mt-60 {
    margin-top: 15rem;
  }

  .xs\:mr-60 {
    margin-right: 15rem;
  }

  .xs\:mb-60 {
    margin-bottom: 15rem;
  }

  .xs\:ml-60 {
    margin-left: 15rem;
  }

  .xs\:mt-64 {
    margin-top: 16rem;
  }

  .xs\:mr-64 {
    margin-right: 16rem;
  }

  .xs\:mb-64 {
    margin-bottom: 16rem;
  }

  .xs\:ml-64 {
    margin-left: 16rem;
  }

  .xs\:mt-80 {
    margin-top: 20rem;
  }

  .xs\:mr-80 {
    margin-right: 20rem;
  }

  .xs\:mb-80 {
    margin-bottom: 20rem;
  }

  .xs\:ml-80 {
    margin-left: 20rem;
  }

  .xs\:mt-96 {
    margin-top: 24rem;
  }

  .xs\:mr-96 {
    margin-right: 24rem;
  }

  .xs\:mb-96 {
    margin-bottom: 24rem;
  }

  .xs\:ml-96 {
    margin-left: 24rem;
  }

  .xs\:mt-120 {
    margin-top: 30rem;
  }

  .xs\:mr-120 {
    margin-right: 30rem;
  }

  .xs\:mb-120 {
    margin-bottom: 30rem;
  }

  .xs\:ml-120 {
    margin-left: 30rem;
  }

  .xs\:mt-160 {
    margin-top: 40rem;
  }

  .xs\:mr-160 {
    margin-right: 40rem;
  }

  .xs\:mb-160 {
    margin-bottom: 40rem;
  }

  .xs\:ml-160 {
    margin-left: 40rem;
  }

  .xs\:mt-auto {
    margin-top: auto;
  }

  .xs\:mr-auto {
    margin-right: auto;
  }

  .xs\:mb-auto {
    margin-bottom: auto;
  }

  .xs\:ml-auto {
    margin-left: auto;
  }

  .xs\:mt-px {
    margin-top: 1px;
  }

  .xs\:mr-px {
    margin-right: 1px;
  }

  .xs\:mb-px {
    margin-bottom: 1px;
  }

  .xs\:ml-px {
    margin-left: 1px;
  }

  .xs\:max-h-0 {
    max-height: 0;
  }

  .xs\:max-h-1 {
    max-height: .25rem;
  }

  .xs\:max-h-2 {
    max-height: .5rem;
  }

  .xs\:max-h-3 {
    max-height: .75rem;
  }

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

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

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

  .xs\:max-h-7 {
    max-height: 1.75rem;
  }

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

  .xs\:max-h-9 {
    max-height: 2.25rem;
  }

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

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

  .xs\:max-h-14 {
    max-height: 3.5rem;
  }

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

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

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

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

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

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

  .xs\:max-h-70 {
    max-height: 18rem;
  }

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

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

  .xs\:max-h-112 {
    max-height: 28rem;
  }

  .xs\:max-h-128 {
    max-height: 32rem;
  }

  .xs\:max-h-600 {
    max-height: 600px;
  }

  .xs\:max-h-700 {
    max-height: 700px;
  }

  .xs\:max-h-unset {
    max-height: unset;
  }

  .xs\:max-h-none {
    max-height: none;
  }

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

  .xs\:max-h-2px {
    max-height: 2px;
  }

  .xs\:max-h-100px {
    max-height: 100px;
  }

  .xs\:max-h-125px {
    max-height: 125px;
  }

  .xs\:max-h-150px {
    max-height: 150px;
  }

  .xs\:max-h-175px {
    max-height: 175px;
  }

  .xs\:max-h-200px {
    max-height: 200px;
  }

  .xs\:max-h-225px {
    max-height: 225px;
  }

  .xs\:max-h-250px {
    max-height: 250px;
  }

  .xs\:max-h-275px {
    max-height: 275px;
  }

  .xs\:max-h-300px {
    max-height: 300px;
  }

  .xs\:max-h-325px {
    max-height: 325px;
  }

  .xs\:max-h-350px {
    max-height: 350px;
  }

  .xs\:max-h-375px {
    max-height: 375px;
  }

  .xs\:max-h-400px {
    max-height: 400px;
  }

  .xs\:max-h-450px {
    max-height: 450px;
  }

  .xs\:max-h-475px {
    max-height: 475px;
  }

  .xs\:max-h-500px {
    max-height: 500px;
  }

  .xs\:max-h-768px {
    max-height: 768px;
  }

  .xs\:max-h-800px {
    max-height: 800px;
  }

  .xs\:max-h-900px {
    max-height: 900px;
  }

  .xs\:max-h-992px {
    max-height: 992px;
  }

  .xs\:max-h-1000px {
    max-height: 1000px;
  }

  .xs\:max-h-1140px {
    max-height: 1140px;
  }

  .xs\:max-h-1200px {
    max-height: 1200px;
  }

  .xs\:max-h-1460px {
    max-height: 1460px;
  }

  .xs\:max-h-1600px {
    max-height: 1600px;
  }

  .xs\:max-h-screen {
    max-height: 100vw;
  }

  .xs\:max-h-half {
    max-height: 50%;
  }

  .xs\:max-h-quarter {
    max-height: 75%;
  }

  .xs\:max-h-85\% {
    max-height: 85%;
  }

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

  .xs\:max-w-0 {
    max-width: 0;
  }

  .xs\:max-w-1 {
    max-width: .25rem;
  }

  .xs\:max-w-2 {
    max-width: .5rem;
  }

  .xs\:max-w-3 {
    max-width: .75rem;
  }

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

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

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

  .xs\:max-w-7 {
    max-width: 1.75rem;
  }

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

  .xs\:max-w-9 {
    max-width: 2.25rem;
  }

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

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

  .xs\:max-w-14 {
    max-width: 3.5rem;
  }

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

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

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

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

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

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

  .xs\:max-w-70 {
    max-width: 18rem;
  }

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

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

  .xs\:max-w-112 {
    max-width: 28rem;
  }

  .xs\:max-w-128 {
    max-width: 32rem;
  }

  .xs\:max-w-600 {
    max-width: 600px;
  }

  .xs\:max-w-700 {
    max-width: 700px;
  }

  .xs\:max-w-none {
    max-width: none;
  }

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

  .xs\:max-w-2px {
    max-width: 2px;
  }

  .xs\:max-w-100px {
    max-width: 100px;
  }

  .xs\:max-w-125px {
    max-width: 125px;
  }

  .xs\:max-w-150px {
    max-width: 150px;
  }

  .xs\:max-w-175px {
    max-width: 175px;
  }

  .xs\:max-w-200px {
    max-width: 200px;
  }

  .xs\:max-w-225px {
    max-width: 225px;
  }

  .xs\:max-w-250px {
    max-width: 250px;
  }

  .xs\:max-w-275px {
    max-width: 275px;
  }

  .xs\:max-w-300px {
    max-width: 300px;
  }

  .xs\:max-w-325px {
    max-width: 325px;
  }

  .xs\:max-w-350px {
    max-width: 350px;
  }

  .xs\:max-w-375px {
    max-width: 375px;
  }

  .xs\:max-w-400px {
    max-width: 400px;
  }

  .xs\:max-w-450px {
    max-width: 450px;
  }

  .xs\:max-w-475px {
    max-width: 475px;
  }

  .xs\:max-w-500px {
    max-width: 500px;
  }

  .xs\:max-w-768px {
    max-width: 768px;
  }

  .xs\:max-w-800px {
    max-width: 800px;
  }

  .xs\:max-w-900px {
    max-width: 900px;
  }

  .xs\:max-w-992px {
    max-width: 992px;
  }

  .xs\:max-w-1000px {
    max-width: 1000px;
  }

  .xs\:max-w-1140px {
    max-width: 1140px;
  }

  .xs\:max-w-1200px {
    max-width: 1200px;
  }

  .xs\:max-w-1460px {
    max-width: 1460px;
  }

  .xs\:max-w-1600px {
    max-width: 1600px;
  }

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

  .xs\:max-w-half {
    max-width: 50%;
  }

  .xs\:max-w-quarter {
    max-width: 75%;
  }

  .xs\:max-w-85\% {
    max-width: 85%;
  }

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

  .xs\:min-h-0 {
    min-height: 0;
  }

  .xs\:min-h-1 {
    min-height: .25rem;
  }

  .xs\:min-h-2 {
    min-height: .5rem;
  }

  .xs\:min-h-3 {
    min-height: .75rem;
  }

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

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

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

  .xs\:min-h-7 {
    min-height: 1.75rem;
  }

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

  .xs\:min-h-9 {
    min-height: 2.25rem;
  }

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

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

  .xs\:min-h-14 {
    min-height: 3.5rem;
  }

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

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

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

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

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

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

  .xs\:min-h-70 {
    min-height: 18rem;
  }

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

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

  .xs\:min-h-112 {
    min-height: 28rem;
  }

  .xs\:min-h-128 {
    min-height: 32rem;
  }

  .xs\:min-h-600 {
    min-height: 600px;
  }

  .xs\:min-h-700 {
    min-height: 700px;
  }

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

  .xs\:min-h-2px {
    min-height: 2px;
  }

  .xs\:min-h-100px {
    min-height: 100px;
  }

  .xs\:min-h-125px {
    min-height: 125px;
  }

  .xs\:min-h-150px {
    min-height: 150px;
  }

  .xs\:min-h-175px {
    min-height: 175px;
  }

  .xs\:min-h-200px {
    min-height: 200px;
  }

  .xs\:min-h-225px {
    min-height: 225px;
  }

  .xs\:min-h-250px {
    min-height: 250px;
  }

  .xs\:min-h-275px {
    min-height: 275px;
  }

  .xs\:min-h-300px {
    min-height: 300px;
  }

  .xs\:min-h-325px {
    min-height: 325px;
  }

  .xs\:min-h-350px {
    min-height: 350px;
  }

  .xs\:min-h-375px {
    min-height: 375px;
  }

  .xs\:min-h-400px {
    min-height: 400px;
  }

  .xs\:min-h-450px {
    min-height: 450px;
  }

  .xs\:min-h-475px {
    min-height: 475px;
  }

  .xs\:min-h-500px {
    min-height: 500px;
  }

  .xs\:min-h-768px {
    min-height: 768px;
  }

  .xs\:min-h-800px {
    min-height: 800px;
  }

  .xs\:min-h-900px {
    min-height: 900px;
  }

  .xs\:min-h-992px {
    min-height: 992px;
  }

  .xs\:min-h-1000px {
    min-height: 1000px;
  }

  .xs\:min-h-1140px {
    min-height: 1140px;
  }

  .xs\:min-h-1200px {
    min-height: 1200px;
  }

  .xs\:min-h-1460px {
    min-height: 1460px;
  }

  .xs\:min-h-1600px {
    min-height: 1600px;
  }

  .xs\:min-h-screen {
    min-height: 100vw;
  }

  .xs\:min-h-half {
    min-height: 50%;
  }

  .xs\:min-h-quarter {
    min-height: 75%;
  }

  .xs\:min-h-85\% {
    min-height: 85%;
  }

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

  .xs\:min-w-0 {
    min-width: 0;
  }

  .xs\:min-w-1 {
    min-width: .25rem;
  }

  .xs\:min-w-2 {
    min-width: .5rem;
  }

  .xs\:min-w-3 {
    min-width: .75rem;
  }

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

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

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

  .xs\:min-w-7 {
    min-width: 1.75rem;
  }

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

  .xs\:min-w-9 {
    min-width: 2.25rem;
  }

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

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

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

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

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

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

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

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

  .xs\:min-w-70 {
    min-width: 18rem;
  }

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

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

  .xs\:min-w-112 {
    min-width: 28rem;
  }

  .xs\:min-w-128 {
    min-width: 32rem;
  }

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

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

  .xs\:min-w-2px {
    min-width: 2px;
  }

  .xs\:min-w-100px {
    min-width: 100px;
  }

  .xs\:min-w-125px {
    min-width: 125px;
  }

  .xs\:min-w-150px {
    min-width: 150px;
  }

  .xs\:min-w-175px {
    min-width: 175px;
  }

  .xs\:min-w-200px {
    min-width: 200px;
  }

  .xs\:min-w-225px {
    min-width: 225px;
  }

  .xs\:min-w-250px {
    min-width: 250px;
  }

  .xs\:min-w-275px {
    min-width: 275px;
  }

  .xs\:min-w-300px {
    min-width: 300px;
  }

  .xs\:min-w-325px {
    min-width: 325px;
  }

  .xs\:min-w-350px {
    min-width: 350px;
  }

  .xs\:min-w-375px {
    min-width: 375px;
  }

  .xs\:min-w-400px {
    min-width: 400px;
  }

  .xs\:min-w-450px {
    min-width: 450px;
  }

  .xs\:min-w-475px {
    min-width: 475px;
  }

  .xs\:min-w-500px {
    min-width: 500px;
  }

  .xs\:min-w-576px {
    min-width: 576px;
  }

  .xs\:min-w-600px {
    min-width: 600px;
  }

  .xs\:min-w-700px {
    min-width: 700px;
  }

  .xs\:min-w-768px {
    min-width: 768px;
  }

  .xs\:min-w-800px {
    min-width: 800px;
  }

  .xs\:min-w-900px {
    min-width: 900px;
  }

  .xs\:min-w-992px {
    min-width: 992px;
  }

  .xs\:min-w-1000px {
    min-width: 1000px;
  }

  .xs\:min-w-1140px {
    min-width: 1140px;
  }

  .xs\:min-w-1200px {
    min-width: 1200px;
  }

  .xs\:min-w-1460px {
    min-width: 1460px;
  }

  .xs\:min-w-1600px {
    min-width: 1600px;
  }

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

  .xs\:min-w-half {
    min-width: 50%;
  }

  .xs\:min-w-quarter {
    min-width: 75%;
  }

  .xs\:min-w-85\% {
    min-width: 85%;
  }

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

  .xs\:-m-0 {
    margin: 0;
  }

  .xs\:-m-1 {
    margin: -0.25rem;
  }

  .xs\:-m-2 {
    margin: -0.5rem;
  }

  .xs\:-m-3 {
    margin: -0.75rem;
  }

  .xs\:-m-4 {
    margin: -1rem;
  }

  .xs\:-m-5 {
    margin: -1.25rem;
  }

  .xs\:-m-6 {
    margin: -1.5rem;
  }

  .xs\:-m-7 {
    margin: -1.75rem;
  }

  .xs\:-m-8 {
    margin: -2rem;
  }

  .xs\:-m-9 {
    margin: -2.25rem;
  }

  .xs\:-m-10 {
    margin: -2.5rem;
  }

  .xs\:-m-12 {
    margin: -3rem;
  }

  .xs\:-m-16 {
    margin: -4rem;
  }

  .xs\:-m-20 {
    margin: -5rem;
  }

  .xs\:-m-24 {
    margin: -6rem;
  }

  .xs\:-m-28 {
    margin: -7rem;
  }

  .xs\:-m-32 {
    margin: -8rem;
  }

  .xs\:-m-36 {
    margin: -9rem;
  }

  .xs\:-m-40 {
    margin: -10rem;
  }

  .xs\:-m-44 {
    margin: -11rem;
  }

  .xs\:-m-48 {
    margin: -12rem;
  }

  .xs\:-m-56 {
    margin: -14rem;
  }

  .xs\:-m-60 {
    margin: -15rem;
  }

  .xs\:-m-64 {
    margin: -16rem;
  }

  .xs\:-m-80 {
    margin: -20rem;
  }

  .xs\:-m-96 {
    margin: -24rem;
  }

  .xs\:-m-120 {
    margin: -30rem;
  }

  .xs\:-m-160 {
    margin: -40rem;
  }

  .xs\:-m-auto {
    margin: -auto;
  }

  .xs\:-m-px {
    margin: -1px;
  }

  .xs\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .xs\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xs\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .xs\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .xs\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .xs\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .xs\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .xs\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .xs\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .xs\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .xs\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .xs\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .xs\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .xs\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .xs\:-my-7 {
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .xs\:-mx-7 {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .xs\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .xs\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .xs\:-my-9 {
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .xs\:-mx-9 {
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .xs\:-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .xs\:-mx-10 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .xs\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .xs\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .xs\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .xs\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .xs\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .xs\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .xs\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .xs\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .xs\:-my-28 {
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .xs\:-mx-28 {
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .xs\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .xs\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .xs\:-my-36 {
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .xs\:-mx-36 {
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .xs\:-my-40 {
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .xs\:-mx-40 {
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .xs\:-my-44 {
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .xs\:-mx-44 {
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .xs\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .xs\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .xs\:-my-56 {
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .xs\:-mx-56 {
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .xs\:-my-60 {
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .xs\:-mx-60 {
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .xs\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .xs\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .xs\:-my-80 {
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .xs\:-mx-80 {
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .xs\:-my-96 {
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .xs\:-mx-96 {
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .xs\:-my-120 {
    margin-top: -30rem;
    margin-bottom: -30rem;
  }

  .xs\:-mx-120 {
    margin-left: -30rem;
    margin-right: -30rem;
  }

  .xs\:-my-160 {
    margin-top: -40rem;
    margin-bottom: -40rem;
  }

  .xs\:-mx-160 {
    margin-left: -40rem;
    margin-right: -40rem;
  }

  .xs\:-my-auto {
    margin-top: -auto;
    margin-bottom: -auto;
  }

  .xs\:-mx-auto {
    margin-left: -auto;
    margin-right: -auto;
  }

  .xs\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .xs\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .xs\:-mt-0 {
    margin-top: 0;
  }

  .xs\:-mr-0 {
    margin-right: 0;
  }

  .xs\:-mb-0 {
    margin-bottom: 0;
  }

  .xs\:-ml-0 {
    margin-left: 0;
  }

  .xs\:-mt-1 {
    margin-top: -0.25rem;
  }

  .xs\:-mr-1 {
    margin-right: -0.25rem;
  }

  .xs\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .xs\:-ml-1 {
    margin-left: -0.25rem;
  }

  .xs\:-mt-2 {
    margin-top: -0.5rem;
  }

  .xs\:-mr-2 {
    margin-right: -0.5rem;
  }

  .xs\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .xs\:-ml-2 {
    margin-left: -0.5rem;
  }

  .xs\:-mt-3 {
    margin-top: -0.75rem;
  }

  .xs\:-mr-3 {
    margin-right: -0.75rem;
  }

  .xs\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .xs\:-ml-3 {
    margin-left: -0.75rem;
  }

  .xs\:-mt-4 {
    margin-top: -1rem;
  }

  .xs\:-mr-4 {
    margin-right: -1rem;
  }

  .xs\:-mb-4 {
    margin-bottom: -1rem;
  }

  .xs\:-ml-4 {
    margin-left: -1rem;
  }

  .xs\:-mt-5 {
    margin-top: -1.25rem;
  }

  .xs\:-mr-5 {
    margin-right: -1.25rem;
  }

  .xs\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .xs\:-ml-5 {
    margin-left: -1.25rem;
  }

  .xs\:-mt-6 {
    margin-top: -1.5rem;
  }

  .xs\:-mr-6 {
    margin-right: -1.5rem;
  }

  .xs\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .xs\:-ml-6 {
    margin-left: -1.5rem;
  }

  .xs\:-mt-7 {
    margin-top: -1.75rem;
  }

  .xs\:-mr-7 {
    margin-right: -1.75rem;
  }

  .xs\:-mb-7 {
    margin-bottom: -1.75rem;
  }

  .xs\:-ml-7 {
    margin-left: -1.75rem;
  }

  .xs\:-mt-8 {
    margin-top: -2rem;
  }

  .xs\:-mr-8 {
    margin-right: -2rem;
  }

  .xs\:-mb-8 {
    margin-bottom: -2rem;
  }

  .xs\:-ml-8 {
    margin-left: -2rem;
  }

  .xs\:-mt-9 {
    margin-top: -2.25rem;
  }

  .xs\:-mr-9 {
    margin-right: -2.25rem;
  }

  .xs\:-mb-9 {
    margin-bottom: -2.25rem;
  }

  .xs\:-ml-9 {
    margin-left: -2.25rem;
  }

  .xs\:-mt-10 {
    margin-top: -2.5rem;
  }

  .xs\:-mr-10 {
    margin-right: -2.5rem;
  }

  .xs\:-mb-10 {
    margin-bottom: -2.5rem;
  }

  .xs\:-ml-10 {
    margin-left: -2.5rem;
  }

  .xs\:-mt-12 {
    margin-top: -3rem;
  }

  .xs\:-mr-12 {
    margin-right: -3rem;
  }

  .xs\:-mb-12 {
    margin-bottom: -3rem;
  }

  .xs\:-ml-12 {
    margin-left: -3rem;
  }

  .xs\:-mt-16 {
    margin-top: -4rem;
  }

  .xs\:-mr-16 {
    margin-right: -4rem;
  }

  .xs\:-mb-16 {
    margin-bottom: -4rem;
  }

  .xs\:-ml-16 {
    margin-left: -4rem;
  }

  .xs\:-mt-20 {
    margin-top: -5rem;
  }

  .xs\:-mr-20 {
    margin-right: -5rem;
  }

  .xs\:-mb-20 {
    margin-bottom: -5rem;
  }

  .xs\:-ml-20 {
    margin-left: -5rem;
  }

  .xs\:-mt-24 {
    margin-top: -6rem;
  }

  .xs\:-mr-24 {
    margin-right: -6rem;
  }

  .xs\:-mb-24 {
    margin-bottom: -6rem;
  }

  .xs\:-ml-24 {
    margin-left: -6rem;
  }

  .xs\:-mt-28 {
    margin-top: -7rem;
  }

  .xs\:-mr-28 {
    margin-right: -7rem;
  }

  .xs\:-mb-28 {
    margin-bottom: -7rem;
  }

  .xs\:-ml-28 {
    margin-left: -7rem;
  }

  .xs\:-mt-32 {
    margin-top: -8rem;
  }

  .xs\:-mr-32 {
    margin-right: -8rem;
  }

  .xs\:-mb-32 {
    margin-bottom: -8rem;
  }

  .xs\:-ml-32 {
    margin-left: -8rem;
  }

  .xs\:-mt-36 {
    margin-top: -9rem;
  }

  .xs\:-mr-36 {
    margin-right: -9rem;
  }

  .xs\:-mb-36 {
    margin-bottom: -9rem;
  }

  .xs\:-ml-36 {
    margin-left: -9rem;
  }

  .xs\:-mt-40 {
    margin-top: -10rem;
  }

  .xs\:-mr-40 {
    margin-right: -10rem;
  }

  .xs\:-mb-40 {
    margin-bottom: -10rem;
  }

  .xs\:-ml-40 {
    margin-left: -10rem;
  }

  .xs\:-mt-44 {
    margin-top: -11rem;
  }

  .xs\:-mr-44 {
    margin-right: -11rem;
  }

  .xs\:-mb-44 {
    margin-bottom: -11rem;
  }

  .xs\:-ml-44 {
    margin-left: -11rem;
  }

  .xs\:-mt-48 {
    margin-top: -12rem;
  }

  .xs\:-mr-48 {
    margin-right: -12rem;
  }

  .xs\:-mb-48 {
    margin-bottom: -12rem;
  }

  .xs\:-ml-48 {
    margin-left: -12rem;
  }

  .xs\:-mt-56 {
    margin-top: -14rem;
  }

  .xs\:-mr-56 {
    margin-right: -14rem;
  }

  .xs\:-mb-56 {
    margin-bottom: -14rem;
  }

  .xs\:-ml-56 {
    margin-left: -14rem;
  }

  .xs\:-mt-60 {
    margin-top: -15rem;
  }

  .xs\:-mr-60 {
    margin-right: -15rem;
  }

  .xs\:-mb-60 {
    margin-bottom: -15rem;
  }

  .xs\:-ml-60 {
    margin-left: -15rem;
  }

  .xs\:-mt-64 {
    margin-top: -16rem;
  }

  .xs\:-mr-64 {
    margin-right: -16rem;
  }

  .xs\:-mb-64 {
    margin-bottom: -16rem;
  }

  .xs\:-ml-64 {
    margin-left: -16rem;
  }

  .xs\:-mt-80 {
    margin-top: -20rem;
  }

  .xs\:-mr-80 {
    margin-right: -20rem;
  }

  .xs\:-mb-80 {
    margin-bottom: -20rem;
  }

  .xs\:-ml-80 {
    margin-left: -20rem;
  }

  .xs\:-mt-96 {
    margin-top: -24rem;
  }

  .xs\:-mr-96 {
    margin-right: -24rem;
  }

  .xs\:-mb-96 {
    margin-bottom: -24rem;
  }

  .xs\:-ml-96 {
    margin-left: -24rem;
  }

  .xs\:-mt-120 {
    margin-top: -30rem;
  }

  .xs\:-mr-120 {
    margin-right: -30rem;
  }

  .xs\:-mb-120 {
    margin-bottom: -30rem;
  }

  .xs\:-ml-120 {
    margin-left: -30rem;
  }

  .xs\:-mt-160 {
    margin-top: -40rem;
  }

  .xs\:-mr-160 {
    margin-right: -40rem;
  }

  .xs\:-mb-160 {
    margin-bottom: -40rem;
  }

  .xs\:-ml-160 {
    margin-left: -40rem;
  }

  .xs\:-mt-auto {
    margin-top: -auto;
  }

  .xs\:-mr-auto {
    margin-right: -auto;
  }

  .xs\:-mb-auto {
    margin-bottom: -auto;
  }

  .xs\:-ml-auto {
    margin-left: -auto;
  }

  .xs\:-mt-px {
    margin-top: -1px;
  }

  .xs\:-mr-px {
    margin-right: -1px;
  }

  .xs\:-mb-px {
    margin-bottom: -1px;
  }

  .xs\:-ml-px {
    margin-left: -1px;
  }

  .xs\:opacity-0 {
    opacity: 0;
  }

  .xs\:opacity-25 {
    opacity: .25;
  }

  .xs\:opacity-50 {
    opacity: .5;
  }

  .xs\:opacity-75 {
    opacity: .75;
  }

  .xs\:opacity-100 {
    opacity: 1;
  }

  .xs\:overflow-auto {
    overflow: auto;
  }

  .xs\:overflow-hidden {
    overflow: hidden;
  }

  .xs\:overflow-visible {
    overflow: visible;
  }

  .xs\:overflow-scroll {
    overflow: scroll;
  }

  .xs\:overflow-x-auto {
    overflow-x: auto;
  }

  .xs\:overflow-y-auto {
    overflow-y: auto;
  }

  .xs\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .xs\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .xs\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .xs\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .xs\:p-0 {
    padding: 0;
  }

  .xs\:p-1 {
    padding: .25rem;
  }

  .xs\:p-2 {
    padding: .5rem;
  }

  .xs\:p-3 {
    padding: .75rem;
  }

  .xs\:p-4 {
    padding: 1rem;
  }

  .xs\:p-5 {
    padding: 1.25rem;
  }

  .xs\:p-6 {
    padding: 1.5rem;
  }

  .xs\:p-7 {
    padding: 1.75rem;
  }

  .xs\:p-8 {
    padding: 2rem;
  }

  .xs\:p-9 {
    padding: 2.25rem;
  }

  .xs\:p-10 {
    padding: 2.5rem;
  }

  .xs\:p-12 {
    padding: 3rem;
  }

  .xs\:p-16 {
    padding: 4rem;
  }

  .xs\:p-20 {
    padding: 5rem;
  }

  .xs\:p-24 {
    padding: 6rem;
  }

  .xs\:p-28 {
    padding: 7rem;
  }

  .xs\:p-32 {
    padding: 8rem;
  }

  .xs\:p-36 {
    padding: 9rem;
  }

  .xs\:p-40 {
    padding: 10rem;
  }

  .xs\:p-44 {
    padding: 11rem;
  }

  .xs\:p-48 {
    padding: 12rem;
  }

  .xs\:p-56 {
    padding: 14rem;
  }

  .xs\:p-60 {
    padding: 15rem;
  }

  .xs\:p-64 {
    padding: 16rem;
  }

  .xs\:p-80 {
    padding: 20rem;
  }

  .xs\:p-96 {
    padding: 24rem;
  }

  .xs\:p-120 {
    padding: 30rem;
  }

  .xs\:p-160 {
    padding: 40rem;
  }

  .xs\:p-px {
    padding: 1px;
  }

  .xs\:p-10\% {
    padding: 10%;
  }

  .xs\:p-20\% {
    padding: 20%;
  }

  .xs\:p-30\% {
    padding: 30%;
  }

  .xs\:p-40\% {
    padding: 40%;
  }

  .xs\:p-50\% {
    padding: 50%;
  }

  .xs\:p-60\% {
    padding: 60%;
  }

  .xs\:p-70\% {
    padding: 70%;
  }

  .xs\:p-80\% {
    padding: 80%;
  }

  .xs\:p-90\% {
    padding: 90%;
  }

  .xs\:p-1vw {
    padding: 1vw;
  }

  .xs\:p-2vw {
    padding: 2vw;
  }

  .xs\:p-3vw {
    padding: 3vw;
  }

  .xs\:p-4vw {
    padding: 4vw;
  }

  .xs\:p-5vw {
    padding: 5vw;
  }

  .xs\:p-6vw {
    padding: 6vw;
  }

  .xs\:p-7vw {
    padding: 7vw;
  }

  .xs\:p-8vw {
    padding: 8vw;
  }

  .xs\:p-9vw {
    padding: 9vw;
  }

  .xs\:p-10vw {
    padding: 10vw;
  }

  .xs\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .xs\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .xs\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .xs\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .xs\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .xs\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .xs\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .xs\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .xs\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xs\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xs\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xs\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xs\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xs\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xs\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .xs\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .xs\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xs\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xs\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .xs\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .xs\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xs\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xs\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xs\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xs\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xs\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xs\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xs\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xs\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xs\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xs\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .xs\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .xs\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .xs\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .xs\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .xs\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .xs\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .xs\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .xs\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .xs\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .xs\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .xs\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xs\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .xs\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .xs\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .xs\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .xs\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .xs\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .xs\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .xs\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .xs\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .xs\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .xs\:py-120 {
    padding-top: 30rem;
    padding-bottom: 30rem;
  }

  .xs\:px-120 {
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .xs\:py-160 {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }

  .xs\:px-160 {
    padding-left: 40rem;
    padding-right: 40rem;
  }

  .xs\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xs\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .xs\:py-10\% {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .xs\:px-10\% {
    padding-left: 10%;
    padding-right: 10%;
  }

  .xs\:py-20\% {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .xs\:px-20\% {
    padding-left: 20%;
    padding-right: 20%;
  }

  .xs\:py-30\% {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  .xs\:px-30\% {
    padding-left: 30%;
    padding-right: 30%;
  }

  .xs\:py-40\% {
    padding-top: 40%;
    padding-bottom: 40%;
  }

  .xs\:px-40\% {
    padding-left: 40%;
    padding-right: 40%;
  }

  .xs\:py-50\% {
    padding-top: 50%;
    padding-bottom: 50%;
  }

  .xs\:px-50\% {
    padding-left: 50%;
    padding-right: 50%;
  }

  .xs\:py-60\% {
    padding-top: 60%;
    padding-bottom: 60%;
  }

  .xs\:px-60\% {
    padding-left: 60%;
    padding-right: 60%;
  }

  .xs\:py-70\% {
    padding-top: 70%;
    padding-bottom: 70%;
  }

  .xs\:px-70\% {
    padding-left: 70%;
    padding-right: 70%;
  }

  .xs\:py-80\% {
    padding-top: 80%;
    padding-bottom: 80%;
  }

  .xs\:px-80\% {
    padding-left: 80%;
    padding-right: 80%;
  }

  .xs\:py-90\% {
    padding-top: 90%;
    padding-bottom: 90%;
  }

  .xs\:px-90\% {
    padding-left: 90%;
    padding-right: 90%;
  }

  .xs\:py-1vw {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .xs\:px-1vw {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .xs\:py-2vw {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .xs\:px-2vw {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .xs\:py-3vw {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .xs\:px-3vw {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .xs\:py-4vw {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .xs\:px-4vw {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .xs\:py-5vw {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .xs\:px-5vw {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .xs\:py-6vw {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .xs\:px-6vw {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .xs\:py-7vw {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .xs\:px-7vw {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .xs\:py-8vw {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .xs\:px-8vw {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .xs\:py-9vw {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .xs\:px-9vw {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .xs\:py-10vw {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .xs\:px-10vw {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .xs\:pt-0 {
    padding-top: 0;
  }

  .xs\:pr-0 {
    padding-right: 0;
  }

  .xs\:pb-0 {
    padding-bottom: 0;
  }

  .xs\:pl-0 {
    padding-left: 0;
  }

  .xs\:pt-1 {
    padding-top: .25rem;
  }

  .xs\:pr-1 {
    padding-right: .25rem;
  }

  .xs\:pb-1 {
    padding-bottom: .25rem;
  }

  .xs\:pl-1 {
    padding-left: .25rem;
  }

  .xs\:pt-2 {
    padding-top: .5rem;
  }

  .xs\:pr-2 {
    padding-right: .5rem;
  }

  .xs\:pb-2 {
    padding-bottom: .5rem;
  }

  .xs\:pl-2 {
    padding-left: .5rem;
  }

  .xs\:pt-3 {
    padding-top: .75rem;
  }

  .xs\:pr-3 {
    padding-right: .75rem;
  }

  .xs\:pb-3 {
    padding-bottom: .75rem;
  }

  .xs\:pl-3 {
    padding-left: .75rem;
  }

  .xs\:pt-4 {
    padding-top: 1rem;
  }

  .xs\:pr-4 {
    padding-right: 1rem;
  }

  .xs\:pb-4 {
    padding-bottom: 1rem;
  }

  .xs\:pl-4 {
    padding-left: 1rem;
  }

  .xs\:pt-5 {
    padding-top: 1.25rem;
  }

  .xs\:pr-5 {
    padding-right: 1.25rem;
  }

  .xs\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .xs\:pl-5 {
    padding-left: 1.25rem;
  }

  .xs\:pt-6 {
    padding-top: 1.5rem;
  }

  .xs\:pr-6 {
    padding-right: 1.5rem;
  }

  .xs\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .xs\:pl-6 {
    padding-left: 1.5rem;
  }

  .xs\:pt-7 {
    padding-top: 1.75rem;
  }

  .xs\:pr-7 {
    padding-right: 1.75rem;
  }

  .xs\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .xs\:pl-7 {
    padding-left: 1.75rem;
  }

  .xs\:pt-8 {
    padding-top: 2rem;
  }

  .xs\:pr-8 {
    padding-right: 2rem;
  }

  .xs\:pb-8 {
    padding-bottom: 2rem;
  }

  .xs\:pl-8 {
    padding-left: 2rem;
  }

  .xs\:pt-9 {
    padding-top: 2.25rem;
  }

  .xs\:pr-9 {
    padding-right: 2.25rem;
  }

  .xs\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .xs\:pl-9 {
    padding-left: 2.25rem;
  }

  .xs\:pt-10 {
    padding-top: 2.5rem;
  }

  .xs\:pr-10 {
    padding-right: 2.5rem;
  }

  .xs\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .xs\:pl-10 {
    padding-left: 2.5rem;
  }

  .xs\:pt-12 {
    padding-top: 3rem;
  }

  .xs\:pr-12 {
    padding-right: 3rem;
  }

  .xs\:pb-12 {
    padding-bottom: 3rem;
  }

  .xs\:pl-12 {
    padding-left: 3rem;
  }

  .xs\:pt-16 {
    padding-top: 4rem;
  }

  .xs\:pr-16 {
    padding-right: 4rem;
  }

  .xs\:pb-16 {
    padding-bottom: 4rem;
  }

  .xs\:pl-16 {
    padding-left: 4rem;
  }

  .xs\:pt-20 {
    padding-top: 5rem;
  }

  .xs\:pr-20 {
    padding-right: 5rem;
  }

  .xs\:pb-20 {
    padding-bottom: 5rem;
  }

  .xs\:pl-20 {
    padding-left: 5rem;
  }

  .xs\:pt-24 {
    padding-top: 6rem;
  }

  .xs\:pr-24 {
    padding-right: 6rem;
  }

  .xs\:pb-24 {
    padding-bottom: 6rem;
  }

  .xs\:pl-24 {
    padding-left: 6rem;
  }

  .xs\:pt-28 {
    padding-top: 7rem;
  }

  .xs\:pr-28 {
    padding-right: 7rem;
  }

  .xs\:pb-28 {
    padding-bottom: 7rem;
  }

  .xs\:pl-28 {
    padding-left: 7rem;
  }

  .xs\:pt-32 {
    padding-top: 8rem;
  }

  .xs\:pr-32 {
    padding-right: 8rem;
  }

  .xs\:pb-32 {
    padding-bottom: 8rem;
  }

  .xs\:pl-32 {
    padding-left: 8rem;
  }

  .xs\:pt-36 {
    padding-top: 9rem;
  }

  .xs\:pr-36 {
    padding-right: 9rem;
  }

  .xs\:pb-36 {
    padding-bottom: 9rem;
  }

  .xs\:pl-36 {
    padding-left: 9rem;
  }

  .xs\:pt-40 {
    padding-top: 10rem;
  }

  .xs\:pr-40 {
    padding-right: 10rem;
  }

  .xs\:pb-40 {
    padding-bottom: 10rem;
  }

  .xs\:pl-40 {
    padding-left: 10rem;
  }

  .xs\:pt-44 {
    padding-top: 11rem;
  }

  .xs\:pr-44 {
    padding-right: 11rem;
  }

  .xs\:pb-44 {
    padding-bottom: 11rem;
  }

  .xs\:pl-44 {
    padding-left: 11rem;
  }

  .xs\:pt-48 {
    padding-top: 12rem;
  }

  .xs\:pr-48 {
    padding-right: 12rem;
  }

  .xs\:pb-48 {
    padding-bottom: 12rem;
  }

  .xs\:pl-48 {
    padding-left: 12rem;
  }

  .xs\:pt-56 {
    padding-top: 14rem;
  }

  .xs\:pr-56 {
    padding-right: 14rem;
  }

  .xs\:pb-56 {
    padding-bottom: 14rem;
  }

  .xs\:pl-56 {
    padding-left: 14rem;
  }

  .xs\:pt-60 {
    padding-top: 15rem;
  }

  .xs\:pr-60 {
    padding-right: 15rem;
  }

  .xs\:pb-60 {
    padding-bottom: 15rem;
  }

  .xs\:pl-60 {
    padding-left: 15rem;
  }

  .xs\:pt-64 {
    padding-top: 16rem;
  }

  .xs\:pr-64 {
    padding-right: 16rem;
  }

  .xs\:pb-64 {
    padding-bottom: 16rem;
  }

  .xs\:pl-64 {
    padding-left: 16rem;
  }

  .xs\:pt-80 {
    padding-top: 20rem;
  }

  .xs\:pr-80 {
    padding-right: 20rem;
  }

  .xs\:pb-80 {
    padding-bottom: 20rem;
  }

  .xs\:pl-80 {
    padding-left: 20rem;
  }

  .xs\:pt-96 {
    padding-top: 24rem;
  }

  .xs\:pr-96 {
    padding-right: 24rem;
  }

  .xs\:pb-96 {
    padding-bottom: 24rem;
  }

  .xs\:pl-96 {
    padding-left: 24rem;
  }

  .xs\:pt-120 {
    padding-top: 30rem;
  }

  .xs\:pr-120 {
    padding-right: 30rem;
  }

  .xs\:pb-120 {
    padding-bottom: 30rem;
  }

  .xs\:pl-120 {
    padding-left: 30rem;
  }

  .xs\:pt-160 {
    padding-top: 40rem;
  }

  .xs\:pr-160 {
    padding-right: 40rem;
  }

  .xs\:pb-160 {
    padding-bottom: 40rem;
  }

  .xs\:pl-160 {
    padding-left: 40rem;
  }

  .xs\:pt-px {
    padding-top: 1px;
  }

  .xs\:pr-px {
    padding-right: 1px;
  }

  .xs\:pb-px {
    padding-bottom: 1px;
  }

  .xs\:pl-px {
    padding-left: 1px;
  }

  .xs\:pt-10\% {
    padding-top: 10%;
  }

  .xs\:pr-10\% {
    padding-right: 10%;
  }

  .xs\:pb-10\% {
    padding-bottom: 10%;
  }

  .xs\:pl-10\% {
    padding-left: 10%;
  }

  .xs\:pt-20\% {
    padding-top: 20%;
  }

  .xs\:pr-20\% {
    padding-right: 20%;
  }

  .xs\:pb-20\% {
    padding-bottom: 20%;
  }

  .xs\:pl-20\% {
    padding-left: 20%;
  }

  .xs\:pt-30\% {
    padding-top: 30%;
  }

  .xs\:pr-30\% {
    padding-right: 30%;
  }

  .xs\:pb-30\% {
    padding-bottom: 30%;
  }

  .xs\:pl-30\% {
    padding-left: 30%;
  }

  .xs\:pt-40\% {
    padding-top: 40%;
  }

  .xs\:pr-40\% {
    padding-right: 40%;
  }

  .xs\:pb-40\% {
    padding-bottom: 40%;
  }

  .xs\:pl-40\% {
    padding-left: 40%;
  }

  .xs\:pt-50\% {
    padding-top: 50%;
  }

  .xs\:pr-50\% {
    padding-right: 50%;
  }

  .xs\:pb-50\% {
    padding-bottom: 50%;
  }

  .xs\:pl-50\% {
    padding-left: 50%;
  }

  .xs\:pt-60\% {
    padding-top: 60%;
  }

  .xs\:pr-60\% {
    padding-right: 60%;
  }

  .xs\:pb-60\% {
    padding-bottom: 60%;
  }

  .xs\:pl-60\% {
    padding-left: 60%;
  }

  .xs\:pt-70\% {
    padding-top: 70%;
  }

  .xs\:pr-70\% {
    padding-right: 70%;
  }

  .xs\:pb-70\% {
    padding-bottom: 70%;
  }

  .xs\:pl-70\% {
    padding-left: 70%;
  }

  .xs\:pt-80\% {
    padding-top: 80%;
  }

  .xs\:pr-80\% {
    padding-right: 80%;
  }

  .xs\:pb-80\% {
    padding-bottom: 80%;
  }

  .xs\:pl-80\% {
    padding-left: 80%;
  }

  .xs\:pt-90\% {
    padding-top: 90%;
  }

  .xs\:pr-90\% {
    padding-right: 90%;
  }

  .xs\:pb-90\% {
    padding-bottom: 90%;
  }

  .xs\:pl-90\% {
    padding-left: 90%;
  }

  .xs\:pt-1vw {
    padding-top: 1vw;
  }

  .xs\:pr-1vw {
    padding-right: 1vw;
  }

  .xs\:pb-1vw {
    padding-bottom: 1vw;
  }

  .xs\:pl-1vw {
    padding-left: 1vw;
  }

  .xs\:pt-2vw {
    padding-top: 2vw;
  }

  .xs\:pr-2vw {
    padding-right: 2vw;
  }

  .xs\:pb-2vw {
    padding-bottom: 2vw;
  }

  .xs\:pl-2vw {
    padding-left: 2vw;
  }

  .xs\:pt-3vw {
    padding-top: 3vw;
  }

  .xs\:pr-3vw {
    padding-right: 3vw;
  }

  .xs\:pb-3vw {
    padding-bottom: 3vw;
  }

  .xs\:pl-3vw {
    padding-left: 3vw;
  }

  .xs\:pt-4vw {
    padding-top: 4vw;
  }

  .xs\:pr-4vw {
    padding-right: 4vw;
  }

  .xs\:pb-4vw {
    padding-bottom: 4vw;
  }

  .xs\:pl-4vw {
    padding-left: 4vw;
  }

  .xs\:pt-5vw {
    padding-top: 5vw;
  }

  .xs\:pr-5vw {
    padding-right: 5vw;
  }

  .xs\:pb-5vw {
    padding-bottom: 5vw;
  }

  .xs\:pl-5vw {
    padding-left: 5vw;
  }

  .xs\:pt-6vw {
    padding-top: 6vw;
  }

  .xs\:pr-6vw {
    padding-right: 6vw;
  }

  .xs\:pb-6vw {
    padding-bottom: 6vw;
  }

  .xs\:pl-6vw {
    padding-left: 6vw;
  }

  .xs\:pt-7vw {
    padding-top: 7vw;
  }

  .xs\:pr-7vw {
    padding-right: 7vw;
  }

  .xs\:pb-7vw {
    padding-bottom: 7vw;
  }

  .xs\:pl-7vw {
    padding-left: 7vw;
  }

  .xs\:pt-8vw {
    padding-top: 8vw;
  }

  .xs\:pr-8vw {
    padding-right: 8vw;
  }

  .xs\:pb-8vw {
    padding-bottom: 8vw;
  }

  .xs\:pl-8vw {
    padding-left: 8vw;
  }

  .xs\:pt-9vw {
    padding-top: 9vw;
  }

  .xs\:pr-9vw {
    padding-right: 9vw;
  }

  .xs\:pb-9vw {
    padding-bottom: 9vw;
  }

  .xs\:pl-9vw {
    padding-left: 9vw;
  }

  .xs\:pt-10vw {
    padding-top: 10vw;
  }

  .xs\:pr-10vw {
    padding-right: 10vw;
  }

  .xs\:pb-10vw {
    padding-bottom: 10vw;
  }

  .xs\:pl-10vw {
    padding-left: 10vw;
  }

  .xs\:hover\:p-0:hover {
    padding: 0;
  }

  .xs\:hover\:p-1:hover {
    padding: .25rem;
  }

  .xs\:hover\:p-2:hover {
    padding: .5rem;
  }

  .xs\:hover\:p-3:hover {
    padding: .75rem;
  }

  .xs\:hover\:p-4:hover {
    padding: 1rem;
  }

  .xs\:hover\:p-5:hover {
    padding: 1.25rem;
  }

  .xs\:hover\:p-6:hover {
    padding: 1.5rem;
  }

  .xs\:hover\:p-7:hover {
    padding: 1.75rem;
  }

  .xs\:hover\:p-8:hover {
    padding: 2rem;
  }

  .xs\:hover\:p-9:hover {
    padding: 2.25rem;
  }

  .xs\:hover\:p-10:hover {
    padding: 2.5rem;
  }

  .xs\:hover\:p-12:hover {
    padding: 3rem;
  }

  .xs\:hover\:p-16:hover {
    padding: 4rem;
  }

  .xs\:hover\:p-20:hover {
    padding: 5rem;
  }

  .xs\:hover\:p-24:hover {
    padding: 6rem;
  }

  .xs\:hover\:p-28:hover {
    padding: 7rem;
  }

  .xs\:hover\:p-32:hover {
    padding: 8rem;
  }

  .xs\:hover\:p-36:hover {
    padding: 9rem;
  }

  .xs\:hover\:p-40:hover {
    padding: 10rem;
  }

  .xs\:hover\:p-44:hover {
    padding: 11rem;
  }

  .xs\:hover\:p-48:hover {
    padding: 12rem;
  }

  .xs\:hover\:p-56:hover {
    padding: 14rem;
  }

  .xs\:hover\:p-60:hover {
    padding: 15rem;
  }

  .xs\:hover\:p-64:hover {
    padding: 16rem;
  }

  .xs\:hover\:p-80:hover {
    padding: 20rem;
  }

  .xs\:hover\:p-96:hover {
    padding: 24rem;
  }

  .xs\:hover\:p-120:hover {
    padding: 30rem;
  }

  .xs\:hover\:p-160:hover {
    padding: 40rem;
  }

  .xs\:hover\:p-px:hover {
    padding: 1px;
  }

  .xs\:hover\:p-10\%:hover {
    padding: 10%;
  }

  .xs\:hover\:p-20\%:hover {
    padding: 20%;
  }

  .xs\:hover\:p-30\%:hover {
    padding: 30%;
  }

  .xs\:hover\:p-40\%:hover {
    padding: 40%;
  }

  .xs\:hover\:p-50\%:hover {
    padding: 50%;
  }

  .xs\:hover\:p-60\%:hover {
    padding: 60%;
  }

  .xs\:hover\:p-70\%:hover {
    padding: 70%;
  }

  .xs\:hover\:p-80\%:hover {
    padding: 80%;
  }

  .xs\:hover\:p-90\%:hover {
    padding: 90%;
  }

  .xs\:hover\:p-1vw:hover {
    padding: 1vw;
  }

  .xs\:hover\:p-2vw:hover {
    padding: 2vw;
  }

  .xs\:hover\:p-3vw:hover {
    padding: 3vw;
  }

  .xs\:hover\:p-4vw:hover {
    padding: 4vw;
  }

  .xs\:hover\:p-5vw:hover {
    padding: 5vw;
  }

  .xs\:hover\:p-6vw:hover {
    padding: 6vw;
  }

  .xs\:hover\:p-7vw:hover {
    padding: 7vw;
  }

  .xs\:hover\:p-8vw:hover {
    padding: 8vw;
  }

  .xs\:hover\:p-9vw:hover {
    padding: 9vw;
  }

  .xs\:hover\:p-10vw:hover {
    padding: 10vw;
  }

  .xs\:hover\:py-0:hover {
    padding-top: 0;
    padding-bottom: 0;
  }

  .xs\:hover\:px-0:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .xs\:hover\:py-1:hover {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .xs\:hover\:px-1:hover {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .xs\:hover\:py-2:hover {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .xs\:hover\:px-2:hover {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .xs\:hover\:py-3:hover {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .xs\:hover\:px-3:hover {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .xs\:hover\:py-4:hover {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xs\:hover\:px-4:hover {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xs\:hover\:py-5:hover {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xs\:hover\:px-5:hover {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xs\:hover\:py-6:hover {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xs\:hover\:px-6:hover {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xs\:hover\:py-7:hover {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .xs\:hover\:px-7:hover {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .xs\:hover\:py-8:hover {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xs\:hover\:px-8:hover {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xs\:hover\:py-9:hover {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .xs\:hover\:px-9:hover {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .xs\:hover\:py-10:hover {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xs\:hover\:px-10:hover {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xs\:hover\:py-12:hover {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xs\:hover\:px-12:hover {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xs\:hover\:py-16:hover {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xs\:hover\:px-16:hover {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xs\:hover\:py-20:hover {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xs\:hover\:px-20:hover {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xs\:hover\:py-24:hover {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xs\:hover\:px-24:hover {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xs\:hover\:py-28:hover {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .xs\:hover\:px-28:hover {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .xs\:hover\:py-32:hover {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .xs\:hover\:px-32:hover {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .xs\:hover\:py-36:hover {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .xs\:hover\:px-36:hover {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .xs\:hover\:py-40:hover {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .xs\:hover\:px-40:hover {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .xs\:hover\:py-44:hover {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .xs\:hover\:px-44:hover {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .xs\:hover\:py-48:hover {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .xs\:hover\:px-48:hover {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xs\:hover\:py-56:hover {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .xs\:hover\:px-56:hover {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .xs\:hover\:py-60:hover {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .xs\:hover\:px-60:hover {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .xs\:hover\:py-64:hover {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .xs\:hover\:px-64:hover {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .xs\:hover\:py-80:hover {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .xs\:hover\:px-80:hover {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .xs\:hover\:py-96:hover {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .xs\:hover\:px-96:hover {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .xs\:hover\:py-120:hover {
    padding-top: 30rem;
    padding-bottom: 30rem;
  }

  .xs\:hover\:px-120:hover {
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .xs\:hover\:py-160:hover {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }

  .xs\:hover\:px-160:hover {
    padding-left: 40rem;
    padding-right: 40rem;
  }

  .xs\:hover\:py-px:hover {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xs\:hover\:px-px:hover {
    padding-left: 1px;
    padding-right: 1px;
  }

  .xs\:hover\:py-10\%:hover {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .xs\:hover\:px-10\%:hover {
    padding-left: 10%;
    padding-right: 10%;
  }

  .xs\:hover\:py-20\%:hover {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .xs\:hover\:px-20\%:hover {
    padding-left: 20%;
    padding-right: 20%;
  }

  .xs\:hover\:py-30\%:hover {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  .xs\:hover\:px-30\%:hover {
    padding-left: 30%;
    padding-right: 30%;
  }

  .xs\:hover\:py-40\%:hover {
    padding-top: 40%;
    padding-bottom: 40%;
  }

  .xs\:hover\:px-40\%:hover {
    padding-left: 40%;
    padding-right: 40%;
  }

  .xs\:hover\:py-50\%:hover {
    padding-top: 50%;
    padding-bottom: 50%;
  }

  .xs\:hover\:px-50\%:hover {
    padding-left: 50%;
    padding-right: 50%;
  }

  .xs\:hover\:py-60\%:hover {
    padding-top: 60%;
    padding-bottom: 60%;
  }

  .xs\:hover\:px-60\%:hover {
    padding-left: 60%;
    padding-right: 60%;
  }

  .xs\:hover\:py-70\%:hover {
    padding-top: 70%;
    padding-bottom: 70%;
  }

  .xs\:hover\:px-70\%:hover {
    padding-left: 70%;
    padding-right: 70%;
  }

  .xs\:hover\:py-80\%:hover {
    padding-top: 80%;
    padding-bottom: 80%;
  }

  .xs\:hover\:px-80\%:hover {
    padding-left: 80%;
    padding-right: 80%;
  }

  .xs\:hover\:py-90\%:hover {
    padding-top: 90%;
    padding-bottom: 90%;
  }

  .xs\:hover\:px-90\%:hover {
    padding-left: 90%;
    padding-right: 90%;
  }

  .xs\:hover\:py-1vw:hover {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .xs\:hover\:px-1vw:hover {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .xs\:hover\:py-2vw:hover {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .xs\:hover\:px-2vw:hover {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .xs\:hover\:py-3vw:hover {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .xs\:hover\:px-3vw:hover {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .xs\:hover\:py-4vw:hover {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .xs\:hover\:px-4vw:hover {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .xs\:hover\:py-5vw:hover {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .xs\:hover\:px-5vw:hover {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .xs\:hover\:py-6vw:hover {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .xs\:hover\:px-6vw:hover {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .xs\:hover\:py-7vw:hover {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .xs\:hover\:px-7vw:hover {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .xs\:hover\:py-8vw:hover {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .xs\:hover\:px-8vw:hover {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .xs\:hover\:py-9vw:hover {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .xs\:hover\:px-9vw:hover {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .xs\:hover\:py-10vw:hover {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .xs\:hover\:px-10vw:hover {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .xs\:hover\:pt-0:hover {
    padding-top: 0;
  }

  .xs\:hover\:pr-0:hover {
    padding-right: 0;
  }

  .xs\:hover\:pb-0:hover {
    padding-bottom: 0;
  }

  .xs\:hover\:pl-0:hover {
    padding-left: 0;
  }

  .xs\:hover\:pt-1:hover {
    padding-top: .25rem;
  }

  .xs\:hover\:pr-1:hover {
    padding-right: .25rem;
  }

  .xs\:hover\:pb-1:hover {
    padding-bottom: .25rem;
  }

  .xs\:hover\:pl-1:hover {
    padding-left: .25rem;
  }

  .xs\:hover\:pt-2:hover {
    padding-top: .5rem;
  }

  .xs\:hover\:pr-2:hover {
    padding-right: .5rem;
  }

  .xs\:hover\:pb-2:hover {
    padding-bottom: .5rem;
  }

  .xs\:hover\:pl-2:hover {
    padding-left: .5rem;
  }

  .xs\:hover\:pt-3:hover {
    padding-top: .75rem;
  }

  .xs\:hover\:pr-3:hover {
    padding-right: .75rem;
  }

  .xs\:hover\:pb-3:hover {
    padding-bottom: .75rem;
  }

  .xs\:hover\:pl-3:hover {
    padding-left: .75rem;
  }

  .xs\:hover\:pt-4:hover {
    padding-top: 1rem;
  }

  .xs\:hover\:pr-4:hover {
    padding-right: 1rem;
  }

  .xs\:hover\:pb-4:hover {
    padding-bottom: 1rem;
  }

  .xs\:hover\:pl-4:hover {
    padding-left: 1rem;
  }

  .xs\:hover\:pt-5:hover {
    padding-top: 1.25rem;
  }

  .xs\:hover\:pr-5:hover {
    padding-right: 1.25rem;
  }

  .xs\:hover\:pb-5:hover {
    padding-bottom: 1.25rem;
  }

  .xs\:hover\:pl-5:hover {
    padding-left: 1.25rem;
  }

  .xs\:hover\:pt-6:hover {
    padding-top: 1.5rem;
  }

  .xs\:hover\:pr-6:hover {
    padding-right: 1.5rem;
  }

  .xs\:hover\:pb-6:hover {
    padding-bottom: 1.5rem;
  }

  .xs\:hover\:pl-6:hover {
    padding-left: 1.5rem;
  }

  .xs\:hover\:pt-7:hover {
    padding-top: 1.75rem;
  }

  .xs\:hover\:pr-7:hover {
    padding-right: 1.75rem;
  }

  .xs\:hover\:pb-7:hover {
    padding-bottom: 1.75rem;
  }

  .xs\:hover\:pl-7:hover {
    padding-left: 1.75rem;
  }

  .xs\:hover\:pt-8:hover {
    padding-top: 2rem;
  }

  .xs\:hover\:pr-8:hover {
    padding-right: 2rem;
  }

  .xs\:hover\:pb-8:hover {
    padding-bottom: 2rem;
  }

  .xs\:hover\:pl-8:hover {
    padding-left: 2rem;
  }

  .xs\:hover\:pt-9:hover {
    padding-top: 2.25rem;
  }

  .xs\:hover\:pr-9:hover {
    padding-right: 2.25rem;
  }

  .xs\:hover\:pb-9:hover {
    padding-bottom: 2.25rem;
  }

  .xs\:hover\:pl-9:hover {
    padding-left: 2.25rem;
  }

  .xs\:hover\:pt-10:hover {
    padding-top: 2.5rem;
  }

  .xs\:hover\:pr-10:hover {
    padding-right: 2.5rem;
  }

  .xs\:hover\:pb-10:hover {
    padding-bottom: 2.5rem;
  }

  .xs\:hover\:pl-10:hover {
    padding-left: 2.5rem;
  }

  .xs\:hover\:pt-12:hover {
    padding-top: 3rem;
  }

  .xs\:hover\:pr-12:hover {
    padding-right: 3rem;
  }

  .xs\:hover\:pb-12:hover {
    padding-bottom: 3rem;
  }

  .xs\:hover\:pl-12:hover {
    padding-left: 3rem;
  }

  .xs\:hover\:pt-16:hover {
    padding-top: 4rem;
  }

  .xs\:hover\:pr-16:hover {
    padding-right: 4rem;
  }

  .xs\:hover\:pb-16:hover {
    padding-bottom: 4rem;
  }

  .xs\:hover\:pl-16:hover {
    padding-left: 4rem;
  }

  .xs\:hover\:pt-20:hover {
    padding-top: 5rem;
  }

  .xs\:hover\:pr-20:hover {
    padding-right: 5rem;
  }

  .xs\:hover\:pb-20:hover {
    padding-bottom: 5rem;
  }

  .xs\:hover\:pl-20:hover {
    padding-left: 5rem;
  }

  .xs\:hover\:pt-24:hover {
    padding-top: 6rem;
  }

  .xs\:hover\:pr-24:hover {
    padding-right: 6rem;
  }

  .xs\:hover\:pb-24:hover {
    padding-bottom: 6rem;
  }

  .xs\:hover\:pl-24:hover {
    padding-left: 6rem;
  }

  .xs\:hover\:pt-28:hover {
    padding-top: 7rem;
  }

  .xs\:hover\:pr-28:hover {
    padding-right: 7rem;
  }

  .xs\:hover\:pb-28:hover {
    padding-bottom: 7rem;
  }

  .xs\:hover\:pl-28:hover {
    padding-left: 7rem;
  }

  .xs\:hover\:pt-32:hover {
    padding-top: 8rem;
  }

  .xs\:hover\:pr-32:hover {
    padding-right: 8rem;
  }

  .xs\:hover\:pb-32:hover {
    padding-bottom: 8rem;
  }

  .xs\:hover\:pl-32:hover {
    padding-left: 8rem;
  }

  .xs\:hover\:pt-36:hover {
    padding-top: 9rem;
  }

  .xs\:hover\:pr-36:hover {
    padding-right: 9rem;
  }

  .xs\:hover\:pb-36:hover {
    padding-bottom: 9rem;
  }

  .xs\:hover\:pl-36:hover {
    padding-left: 9rem;
  }

  .xs\:hover\:pt-40:hover {
    padding-top: 10rem;
  }

  .xs\:hover\:pr-40:hover {
    padding-right: 10rem;
  }

  .xs\:hover\:pb-40:hover {
    padding-bottom: 10rem;
  }

  .xs\:hover\:pl-40:hover {
    padding-left: 10rem;
  }

  .xs\:hover\:pt-44:hover {
    padding-top: 11rem;
  }

  .xs\:hover\:pr-44:hover {
    padding-right: 11rem;
  }

  .xs\:hover\:pb-44:hover {
    padding-bottom: 11rem;
  }

  .xs\:hover\:pl-44:hover {
    padding-left: 11rem;
  }

  .xs\:hover\:pt-48:hover {
    padding-top: 12rem;
  }

  .xs\:hover\:pr-48:hover {
    padding-right: 12rem;
  }

  .xs\:hover\:pb-48:hover {
    padding-bottom: 12rem;
  }

  .xs\:hover\:pl-48:hover {
    padding-left: 12rem;
  }

  .xs\:hover\:pt-56:hover {
    padding-top: 14rem;
  }

  .xs\:hover\:pr-56:hover {
    padding-right: 14rem;
  }

  .xs\:hover\:pb-56:hover {
    padding-bottom: 14rem;
  }

  .xs\:hover\:pl-56:hover {
    padding-left: 14rem;
  }

  .xs\:hover\:pt-60:hover {
    padding-top: 15rem;
  }

  .xs\:hover\:pr-60:hover {
    padding-right: 15rem;
  }

  .xs\:hover\:pb-60:hover {
    padding-bottom: 15rem;
  }

  .xs\:hover\:pl-60:hover {
    padding-left: 15rem;
  }

  .xs\:hover\:pt-64:hover {
    padding-top: 16rem;
  }

  .xs\:hover\:pr-64:hover {
    padding-right: 16rem;
  }

  .xs\:hover\:pb-64:hover {
    padding-bottom: 16rem;
  }

  .xs\:hover\:pl-64:hover {
    padding-left: 16rem;
  }

  .xs\:hover\:pt-80:hover {
    padding-top: 20rem;
  }

  .xs\:hover\:pr-80:hover {
    padding-right: 20rem;
  }

  .xs\:hover\:pb-80:hover {
    padding-bottom: 20rem;
  }

  .xs\:hover\:pl-80:hover {
    padding-left: 20rem;
  }

  .xs\:hover\:pt-96:hover {
    padding-top: 24rem;
  }

  .xs\:hover\:pr-96:hover {
    padding-right: 24rem;
  }

  .xs\:hover\:pb-96:hover {
    padding-bottom: 24rem;
  }

  .xs\:hover\:pl-96:hover {
    padding-left: 24rem;
  }

  .xs\:hover\:pt-120:hover {
    padding-top: 30rem;
  }

  .xs\:hover\:pr-120:hover {
    padding-right: 30rem;
  }

  .xs\:hover\:pb-120:hover {
    padding-bottom: 30rem;
  }

  .xs\:hover\:pl-120:hover {
    padding-left: 30rem;
  }

  .xs\:hover\:pt-160:hover {
    padding-top: 40rem;
  }

  .xs\:hover\:pr-160:hover {
    padding-right: 40rem;
  }

  .xs\:hover\:pb-160:hover {
    padding-bottom: 40rem;
  }

  .xs\:hover\:pl-160:hover {
    padding-left: 40rem;
  }

  .xs\:hover\:pt-px:hover {
    padding-top: 1px;
  }

  .xs\:hover\:pr-px:hover {
    padding-right: 1px;
  }

  .xs\:hover\:pb-px:hover {
    padding-bottom: 1px;
  }

  .xs\:hover\:pl-px:hover {
    padding-left: 1px;
  }

  .xs\:hover\:pt-10\%:hover {
    padding-top: 10%;
  }

  .xs\:hover\:pr-10\%:hover {
    padding-right: 10%;
  }

  .xs\:hover\:pb-10\%:hover {
    padding-bottom: 10%;
  }

  .xs\:hover\:pl-10\%:hover {
    padding-left: 10%;
  }

  .xs\:hover\:pt-20\%:hover {
    padding-top: 20%;
  }

  .xs\:hover\:pr-20\%:hover {
    padding-right: 20%;
  }

  .xs\:hover\:pb-20\%:hover {
    padding-bottom: 20%;
  }

  .xs\:hover\:pl-20\%:hover {
    padding-left: 20%;
  }

  .xs\:hover\:pt-30\%:hover {
    padding-top: 30%;
  }

  .xs\:hover\:pr-30\%:hover {
    padding-right: 30%;
  }

  .xs\:hover\:pb-30\%:hover {
    padding-bottom: 30%;
  }

  .xs\:hover\:pl-30\%:hover {
    padding-left: 30%;
  }

  .xs\:hover\:pt-40\%:hover {
    padding-top: 40%;
  }

  .xs\:hover\:pr-40\%:hover {
    padding-right: 40%;
  }

  .xs\:hover\:pb-40\%:hover {
    padding-bottom: 40%;
  }

  .xs\:hover\:pl-40\%:hover {
    padding-left: 40%;
  }

  .xs\:hover\:pt-50\%:hover {
    padding-top: 50%;
  }

  .xs\:hover\:pr-50\%:hover {
    padding-right: 50%;
  }

  .xs\:hover\:pb-50\%:hover {
    padding-bottom: 50%;
  }

  .xs\:hover\:pl-50\%:hover {
    padding-left: 50%;
  }

  .xs\:hover\:pt-60\%:hover {
    padding-top: 60%;
  }

  .xs\:hover\:pr-60\%:hover {
    padding-right: 60%;
  }

  .xs\:hover\:pb-60\%:hover {
    padding-bottom: 60%;
  }

  .xs\:hover\:pl-60\%:hover {
    padding-left: 60%;
  }

  .xs\:hover\:pt-70\%:hover {
    padding-top: 70%;
  }

  .xs\:hover\:pr-70\%:hover {
    padding-right: 70%;
  }

  .xs\:hover\:pb-70\%:hover {
    padding-bottom: 70%;
  }

  .xs\:hover\:pl-70\%:hover {
    padding-left: 70%;
  }

  .xs\:hover\:pt-80\%:hover {
    padding-top: 80%;
  }

  .xs\:hover\:pr-80\%:hover {
    padding-right: 80%;
  }

  .xs\:hover\:pb-80\%:hover {
    padding-bottom: 80%;
  }

  .xs\:hover\:pl-80\%:hover {
    padding-left: 80%;
  }

  .xs\:hover\:pt-90\%:hover {
    padding-top: 90%;
  }

  .xs\:hover\:pr-90\%:hover {
    padding-right: 90%;
  }

  .xs\:hover\:pb-90\%:hover {
    padding-bottom: 90%;
  }

  .xs\:hover\:pl-90\%:hover {
    padding-left: 90%;
  }

  .xs\:hover\:pt-1vw:hover {
    padding-top: 1vw;
  }

  .xs\:hover\:pr-1vw:hover {
    padding-right: 1vw;
  }

  .xs\:hover\:pb-1vw:hover {
    padding-bottom: 1vw;
  }

  .xs\:hover\:pl-1vw:hover {
    padding-left: 1vw;
  }

  .xs\:hover\:pt-2vw:hover {
    padding-top: 2vw;
  }

  .xs\:hover\:pr-2vw:hover {
    padding-right: 2vw;
  }

  .xs\:hover\:pb-2vw:hover {
    padding-bottom: 2vw;
  }

  .xs\:hover\:pl-2vw:hover {
    padding-left: 2vw;
  }

  .xs\:hover\:pt-3vw:hover {
    padding-top: 3vw;
  }

  .xs\:hover\:pr-3vw:hover {
    padding-right: 3vw;
  }

  .xs\:hover\:pb-3vw:hover {
    padding-bottom: 3vw;
  }

  .xs\:hover\:pl-3vw:hover {
    padding-left: 3vw;
  }

  .xs\:hover\:pt-4vw:hover {
    padding-top: 4vw;
  }

  .xs\:hover\:pr-4vw:hover {
    padding-right: 4vw;
  }

  .xs\:hover\:pb-4vw:hover {
    padding-bottom: 4vw;
  }

  .xs\:hover\:pl-4vw:hover {
    padding-left: 4vw;
  }

  .xs\:hover\:pt-5vw:hover {
    padding-top: 5vw;
  }

  .xs\:hover\:pr-5vw:hover {
    padding-right: 5vw;
  }

  .xs\:hover\:pb-5vw:hover {
    padding-bottom: 5vw;
  }

  .xs\:hover\:pl-5vw:hover {
    padding-left: 5vw;
  }

  .xs\:hover\:pt-6vw:hover {
    padding-top: 6vw;
  }

  .xs\:hover\:pr-6vw:hover {
    padding-right: 6vw;
  }

  .xs\:hover\:pb-6vw:hover {
    padding-bottom: 6vw;
  }

  .xs\:hover\:pl-6vw:hover {
    padding-left: 6vw;
  }

  .xs\:hover\:pt-7vw:hover {
    padding-top: 7vw;
  }

  .xs\:hover\:pr-7vw:hover {
    padding-right: 7vw;
  }

  .xs\:hover\:pb-7vw:hover {
    padding-bottom: 7vw;
  }

  .xs\:hover\:pl-7vw:hover {
    padding-left: 7vw;
  }

  .xs\:hover\:pt-8vw:hover {
    padding-top: 8vw;
  }

  .xs\:hover\:pr-8vw:hover {
    padding-right: 8vw;
  }

  .xs\:hover\:pb-8vw:hover {
    padding-bottom: 8vw;
  }

  .xs\:hover\:pl-8vw:hover {
    padding-left: 8vw;
  }

  .xs\:hover\:pt-9vw:hover {
    padding-top: 9vw;
  }

  .xs\:hover\:pr-9vw:hover {
    padding-right: 9vw;
  }

  .xs\:hover\:pb-9vw:hover {
    padding-bottom: 9vw;
  }

  .xs\:hover\:pl-9vw:hover {
    padding-left: 9vw;
  }

  .xs\:hover\:pt-10vw:hover {
    padding-top: 10vw;
  }

  .xs\:hover\:pr-10vw:hover {
    padding-right: 10vw;
  }

  .xs\:hover\:pb-10vw:hover {
    padding-bottom: 10vw;
  }

  .xs\:hover\:pl-10vw:hover {
    padding-left: 10vw;
  }

  .xs\:pointer-events-none {
    pointer-events: none;
  }

  .xs\:pointer-events-auto {
    pointer-events: auto;
  }

  .xs\:static {
    position: static;
  }

  .xs\:fixed {
    position: fixed;
  }

  .xs\:absolute {
    position: absolute;
  }

  .xs\:relative {
    position: relative;
  }

  .xs\:sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .xs\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .xs\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .xs\:pin-y {
    top: 0;
    bottom: 0;
  }

  .xs\:pin-x {
    right: 0;
    left: 0;
  }

  .xs\:pin-t {
    top: 0;
  }

  .xs\:pin-r {
    right: 0;
  }

  .xs\:pin-b {
    bottom: 0;
  }

  .xs\:pin-l {
    left: 0;
  }

  .xs\:hover\:static:hover {
    position: static;
  }

  .xs\:hover\:fixed:hover {
    position: fixed;
  }

  .xs\:hover\:absolute:hover {
    position: absolute;
  }

  .xs\:hover\:relative:hover {
    position: relative;
  }

  .xs\:hover\:sticky:hover {
    position: -webkit-sticky;
    position: sticky;
  }

  .xs\:hover\:pin-none:hover {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .xs\:hover\:pin:hover {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .xs\:hover\:pin-y:hover {
    top: 0;
    bottom: 0;
  }

  .xs\:hover\:pin-x:hover {
    right: 0;
    left: 0;
  }

  .xs\:hover\:pin-t:hover {
    top: 0;
  }

  .xs\:hover\:pin-r:hover {
    right: 0;
  }

  .xs\:hover\:pin-b:hover {
    bottom: 0;
  }

  .xs\:hover\:pin-l:hover {
    left: 0;
  }

  .xs\:resize-none {
    resize: none;
  }

  .xs\:resize-y {
    resize: vertical;
  }

  .xs\:resize-x {
    resize: horizontal;
  }

  .xs\:resize {
    resize: both;
  }

  .xs\:shadow {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  }

  .xs\:shadow-md {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  }

  .xs\:shadow-lg {
    box-shadow: 0 0 100px rgba(0, 0, 0, .15);
  }

  .xs\:shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
  }

  .xs\:shadow-none {
    box-shadow: none;
  }

  .xs\:hover\:shadow:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  }

  .xs\:hover\:shadow-md:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  }

  .xs\:hover\:shadow-lg:hover {
    box-shadow: 0 0 100px rgba(0, 0, 0, .15);
  }

  .xs\:hover\:shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
  }

  .xs\:hover\:shadow-none:hover {
    box-shadow: none;
  }

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

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

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

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

  .xs\:text-transparent {
    color: transparent;
  }

  .xs\:text-currentColor {
    color: currentColor;
  }

  .xs\:text-black {
    color: #222;
  }

  .xs\:text-black-10 {
    color: rgba(0, 0, 0, .1);
  }

  .xs\:text-black-20 {
    color: rgba(0, 0, 0, .2);
  }

  .xs\:text-black-30 {
    color: rgba(0, 0, 0, .3);
  }

  .xs\:text-black-40 {
    color: rgba(0, 0, 0, .4);
  }

  .xs\:text-black-50 {
    color: rgba(0, 0, 0, .5);
  }

  .xs\:text-black-60 {
    color: rgba(0, 0, 0, .6);
  }

  .xs\:text-black-70 {
    color: rgba(0, 0, 0, .7);
  }

  .xs\:text-black-80 {
    color: rgba(0, 0, 0, .8);
  }

  .xs\:text-black-90 {
    color: rgba(0, 0, 0, .9);
  }

  .xs\:text-black-1 {
    color: #313131;
  }

  .xs\:text-white {
    color: #fff;
  }

  .xs\:text-blue {
    color: #0277bd;
  }

  .xs\:text-dark-blue {
    color: #0277bd;
  }

  .xs\:text-blue-1 {
    color: #17214a;
  }

  .xs\:text-light-blue {
    color: #0277bd;
  }

  .xs\:text-red {
    color: #cb001c;
  }

  .xs\:text-green {
    color: #00bea0;
  }

  .xs\:text-purple {
    color: #5a80d1;
  }

  .xs\:text-orange {
    color: #ff9a0a;
  }

  .xs\:text-grey {
    color: #929a9d;
  }

  .xs\:text-grey-light {
    color: #e2e2e2;
  }

  .xs\:text-grey-1 {
    color: #f2f3f3;
  }

  .xs\:text-grey-2 {
    color: #c2c6c8;
  }

  .xs\:text-grey-3 {
    color: #6b7375;
  }

  .xs\:text-grey-4 {
    color: #465052;
  }

  .xs\:text-grey-5 {
    color: #828688;
  }

  .xs\:text-sd-red {
    color: #ed1c24;
  }

  .xs\:text-light-blue-1 {
    color: #21b8de;
  }

  .xs\:text-dark-blue-1 {
    color: #0277bd;
  }

  .xs\:text-dark-orange {
    color: #df8403;
  }

  .xs\:text-g-blue {
    color: #17214a;
  }

  .xs\:text-g-blue-1 {
    color: #556d88;
  }

  .xs\:text-g-blue-2 {
    color: #3c4c65;
  }

  .xs\:text-g-blue-3 {
    color: #222e4d;
  }

  .xs\:hover\:text-transparent:hover {
    color: transparent;
  }

  .xs\:hover\:text-currentColor:hover {
    color: currentColor;
  }

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

  .xs\:hover\:text-black-10:hover {
    color: rgba(0, 0, 0, .1);
  }

  .xs\:hover\:text-black-20:hover {
    color: rgba(0, 0, 0, .2);
  }

  .xs\:hover\:text-black-30:hover {
    color: rgba(0, 0, 0, .3);
  }

  .xs\:hover\:text-black-40:hover {
    color: rgba(0, 0, 0, .4);
  }

  .xs\:hover\:text-black-50:hover {
    color: rgba(0, 0, 0, .5);
  }

  .xs\:hover\:text-black-60:hover {
    color: rgba(0, 0, 0, .6);
  }

  .xs\:hover\:text-black-70:hover {
    color: rgba(0, 0, 0, .7);
  }

  .xs\:hover\:text-black-80:hover {
    color: rgba(0, 0, 0, .8);
  }

  .xs\:hover\:text-black-90:hover {
    color: rgba(0, 0, 0, .9);
  }

  .xs\:hover\:text-black-1:hover {
    color: #313131;
  }

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

  .xs\:hover\:text-blue:hover {
    color: #0277bd;
  }

  .xs\:hover\:text-dark-blue:hover {
    color: #0277bd;
  }

  .xs\:hover\:text-blue-1:hover {
    color: #17214a;
  }

  .xs\:hover\:text-light-blue:hover {
    color: #0277bd;
  }

  .xs\:hover\:text-red:hover {
    color: #cb001c;
  }

  .xs\:hover\:text-green:hover {
    color: #00bea0;
  }

  .xs\:hover\:text-purple:hover {
    color: #5a80d1;
  }

  .xs\:hover\:text-orange:hover {
    color: #ff9a0a;
  }

  .xs\:hover\:text-grey:hover {
    color: #929a9d;
  }

  .xs\:hover\:text-grey-light:hover {
    color: #e2e2e2;
  }

  .xs\:hover\:text-grey-1:hover {
    color: #f2f3f3;
  }

  .xs\:hover\:text-grey-2:hover {
    color: #c2c6c8;
  }

  .xs\:hover\:text-grey-3:hover {
    color: #6b7375;
  }

  .xs\:hover\:text-grey-4:hover {
    color: #465052;
  }

  .xs\:hover\:text-grey-5:hover {
    color: #828688;
  }

  .xs\:hover\:text-sd-red:hover {
    color: #ed1c24;
  }

  .xs\:hover\:text-light-blue-1:hover {
    color: #21b8de;
  }

  .xs\:hover\:text-dark-blue-1:hover {
    color: #0277bd;
  }

  .xs\:hover\:text-dark-orange:hover {
    color: #df8403;
  }

  .xs\:hover\:text-g-blue:hover {
    color: #17214a;
  }

  .xs\:hover\:text-g-blue-1:hover {
    color: #556d88;
  }

  .xs\:hover\:text-g-blue-2:hover {
    color: #3c4c65;
  }

  .xs\:hover\:text-g-blue-3:hover {
    color: #222e4d;
  }

  .xs\:text-xxxs {
    font-size: .625rem;;
  }

  .xs\:text-xxs {
    font-size: .75rem;
  }

  .xs\:text-xs {
    font-size: .875rem;
  }

  .xs\:text-sm {
    font-size: 1rem;
  }

  .xs\:text-base {
    font-size: 1.125rem;
  }

  .xs\:text-lg {
    font-size: 1.25rem;
  }

  .xs\:text-2lg {
    font-size: 1.25rem;
  }

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

  .xs\:text-1-5xl {
    font-size: 1.625rem;
  }

  .xs\:text-2xl {
    font-size: 1.75rem;
  }

  .xs\:text-2-5xl {
    font-size: 1.875rem;
  }

  .xs\:text-3xl {
    font-size: 2rem;
  }

  .xs\:text-4xl {
    font-size: 2.125rem;
  }

  .xs\:text-5xl {
    font-size: 2.25rem;
  }

  .xs\:text-6xl {
    font-size: 3.375rem;
  }

  .xs\:text-7xl {
    font-size: 4.125rem;
  }

  .xs\:italic {
    font-style: italic;
  }

  .xs\:roman {
    font-style: normal;
  }

  .xs\:uppercase {
    text-transform: uppercase;
  }

  .xs\:lowercase {
    text-transform: lowercase;
  }

  .xs\:capitalize {
    text-transform: capitalize;
  }

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

  .xs\:underline {
    text-decoration: underline;
  }

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

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

  .xs\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xs\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xs\:hover\:italic:hover {
    font-style: italic;
  }

  .xs\:hover\:roman:hover {
    font-style: normal;
  }

  .xs\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .xs\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .xs\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .xs\:hover\:normal-case:hover {
    text-transform: none;
  }

  .xs\:hover\:underline:hover {
    text-decoration: underline;
  }

  .xs\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .xs\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .xs\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xs\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xs\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .xs\:tracking-normal {
    letter-spacing: 0;
  }

  .xs\:tracking-wide {
    letter-spacing: .05em;
  }

  .xs\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .xs\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .xs\:align-baseline {
    vertical-align: baseline;
  }

  .xs\:align-top {
    vertical-align: top;
  }

  .xs\:align-middle {
    vertical-align: middle;
  }

  .xs\:align-bottom {
    vertical-align: bottom;
  }

  .xs\:align-text-top {
    vertical-align: text-top;
  }

  .xs\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .xs\:visible {
    visibility: visible;
  }

  .xs\:invisible {
    visibility: hidden;
  }

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

  .xs\:whitespace-no-wrap {
    white-space: nowrap;
  }

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

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

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

  .xs\:break-words {
    word-wrap: break-word;
  }

  .xs\:break-normal {
    word-wrap: normal;
  }

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

  .xs\:w-0 {
    width: 0;
  }

  .xs\:w-1 {
    width: .25rem;
  }

  .xs\:w-2 {
    width: .5rem;
  }

  .xs\:w-3 {
    width: .75rem;
  }

  .xs\:w-4 {
    width: 1rem;
  }

  .xs\:w-5 {
    width: 1.25rem;
  }

  .xs\:w-6 {
    width: 1.5rem;
  }

  .xs\:w-7 {
    width: 1.75rem;
  }

  .xs\:w-8 {
    width: 2rem;
  }

  .xs\:w-9 {
    width: 2.25rem;
  }

  .xs\:w-10 {
    width: 2.5rem;
  }

  .xs\:w-12 {
    width: 3rem;
  }

  .xs\:w-14 {
    width: 3.5rem;
  }

  .xs\:w-16 {
    width: 4rem;
  }

  .xs\:w-24 {
    width: 6rem;
  }

  .xs\:w-32 {
    width: 8rem;
  }

  .xs\:w-40 {
    width: 10rem;
  }

  .xs\:w-48 {
    width: 12rem;
  }

  .xs\:w-64 {
    width: 16rem;
  }

  .xs\:w-70 {
    width: 18rem;
  }

  .xs\:w-80 {
    width: 20rem;
  }

  .xs\:w-96 {
    width: 24rem;
  }

  .xs\:w-112 {
    width: 28rem;
  }

  .xs\:w-128 {
    width: 32rem;
  }

  .xs\:w-auto {
    width: auto;
  }

  .xs\:w-px {
    width: 1px;
  }

  .xs\:w-full {
    width: 100%;
  }

  .xs\:w-half {
    width: 50%;
  }

  .xs\:w-100px {
    width: 100px;
  }

  .xs\:w-200px {
    width: 200px;
  }

  .xs\:w-300px {
    width: 300px;
  }

  .xs\:w-400px {
    width: 400px;
  }

  .xs\:w-500px {
    width: 500px;
  }

  .xs\:w-576px {
    width: 576px;
  }

  .xs\:w-600px {
    width: 600px;
  }

  .xs\:w-700px {
    width: 700px;
  }

  .xs\:w-768px {
    width: 768px;
  }

  .xs\:w-800px {
    width: 800px;
  }

  .xs\:w-900px {
    width: 900px;
  }

  .xs\:w-992px {
    width: 992px;
  }

  .xs\:w-1000px {
    width: 1000px;
  }

  .xs\:w-1140px {
    width: 1140px;
  }

  .xs\:w-1200px {
    width: 1200px;
  }

  .xs\:w-1460px {
    width: 1460px;
  }

  .xs\:w-1600px {
    width: 1600px;
  }

  .xs\:w-screen {
    width: 100vw;
  }

  .xs\:z-0 {
    z-index: 0;
  }

  .xs\:z-1 {
    z-index: 1;
  }

  .xs\:z-4 {
    z-index: 4;
  }

  .xs\:z-10 {
    z-index: 10;
  }

  .xs\:z-20 {
    z-index: 20;
  }

  .xs\:z-30 {
    z-index: 30;
  }

  .xs\:z-40 {
    z-index: 40;
  }

  .xs\:z-50 {
    z-index: 50;
  }

  .xs\:z-60 {
    z-index: 60;
  }

  .xs\:z-70 {
    z-index: 70;
  }

  .xs\:z-80 {
    z-index: 80;
  }

  .xs\:z-90 {
    z-index: 90;
  }

  .xs\:z-100 {
    z-index: 100;
  }

  .xs\:z-auto {
    z-index: auto;
  }

  .xs\:hover\:z-0:hover {
    z-index: 0;
  }

  .xs\:hover\:z-1:hover {
    z-index: 1;
  }

  .xs\:hover\:z-4:hover {
    z-index: 4;
  }

  .xs\:hover\:z-10:hover {
    z-index: 10;
  }

  .xs\:hover\:z-20:hover {
    z-index: 20;
  }

  .xs\:hover\:z-30:hover {
    z-index: 30;
  }

  .xs\:hover\:z-40:hover {
    z-index: 40;
  }

  .xs\:hover\:z-50:hover {
    z-index: 50;
  }

  .xs\:hover\:z-60:hover {
    z-index: 60;
  }

  .xs\:hover\:z-70:hover {
    z-index: 70;
  }

  .xs\:hover\:z-80:hover {
    z-index: 80;
  }

  .xs\:hover\:z-90:hover {
    z-index: 90;
  }

  .xs\:hover\:z-100:hover {
    z-index: 100;
  }

  .xs\:hover\:z-auto:hover {
    z-index: auto;
  }

  .xs\:pin-t-0 {
    top: 0;
  }

  .xs\:pin-r-0 {
    right: 0;
  }

  .xs\:pin-b-0 {
    bottom: 0;
  }

  .xs\:pin-l-0 {
    left: 0;
  }

  .xs\:pin-t-1 {
    top: 1px;
  }

  .xs\:pin-r-1 {
    right: 1px;
  }

  .xs\:pin-b-1 {
    bottom: 1px;
  }

  .xs\:pin-l-1 {
    left: 1px;
  }

  .xs\:pin-t-3 {
    top: 3px;
  }

  .xs\:pin-r-3 {
    right: 3px;
  }

  .xs\:pin-b-3 {
    bottom: 3px;
  }

  .xs\:pin-l-3 {
    left: 3px;
  }

  .xs\:pin-t-5 {
    top: 5px;
  }

  .xs\:pin-r-5 {
    right: 5px;
  }

  .xs\:pin-b-5 {
    bottom: 5px;
  }

  .xs\:pin-l-5 {
    left: 5px;
  }

  .xs\:pin-t-6 {
    top: 6px;
  }

  .xs\:pin-r-6 {
    right: 6px;
  }

  .xs\:pin-b-6 {
    bottom: 6px;
  }

  .xs\:pin-l-6 {
    left: 6px;
  }

  .xs\:pin-t-10 {
    top: 10px;
  }

  .xs\:pin-r-10 {
    right: 10px;
  }

  .xs\:pin-b-10 {
    bottom: 10px;
  }

  .xs\:pin-l-10 {
    left: 10px;
  }

  .xs\:pin-t-11 {
    top: 11px;
  }

  .xs\:pin-r-11 {
    right: 11px;
  }

  .xs\:pin-b-11 {
    bottom: 11px;
  }

  .xs\:pin-l-11 {
    left: 11px;
  }

  .xs\:pin-t-12 {
    top: 3rem;
  }

  .xs\:pin-r-12 {
    right: 3rem;
  }

  .xs\:pin-b-12 {
    bottom: 3rem;
  }

  .xs\:pin-l-12 {
    left: 3rem;
  }

  .xs\:pin-t-15 {
    top: 15px;
  }

  .xs\:pin-r-15 {
    right: 15px;
  }

  .xs\:pin-b-15 {
    bottom: 15px;
  }

  .xs\:pin-l-15 {
    left: 15px;
  }

  .xs\:pin-t-16 {
    top: 4rem;
  }

  .xs\:pin-r-16 {
    right: 4rem;
  }

  .xs\:pin-b-16 {
    bottom: 4rem;
  }

  .xs\:pin-l-16 {
    left: 4rem;
  }

  .xs\:pin-t-20 {
    top: 20px;
  }

  .xs\:pin-r-20 {
    right: 20px;
  }

  .xs\:pin-b-20 {
    bottom: 20px;
  }

  .xs\:pin-l-20 {
    left: 20px;
  }

  .xs\:pin-t-25 {
    top: 25px;
  }

  .xs\:pin-r-25 {
    right: 25px;
  }

  .xs\:pin-b-25 {
    bottom: 25px;
  }

  .xs\:pin-l-25 {
    left: 25px;
  }

  .xs\:pin-t-50 {
    top: 50px;
  }

  .xs\:pin-r-50 {
    right: 50px;
  }

  .xs\:pin-b-50 {
    bottom: 50px;
  }

  .xs\:pin-l-50 {
    left: 50px;
  }

  .xs\:pin-t-64 {
    top: 64px;
  }

  .xs\:pin-r-64 {
    right: 64px;
  }

  .xs\:pin-b-64 {
    bottom: 64px;
  }

  .xs\:pin-l-64 {
    left: 64px;
  }

  .xs\:pin-t-75 {
    top: 75px;
  }

  .xs\:pin-r-75 {
    right: 75px;
  }

  .xs\:pin-b-75 {
    bottom: 75px;
  }

  .xs\:pin-l-75 {
    left: 75px;
  }

  .xs\:pin-t-80 {
    top: 80px;
  }

  .xs\:pin-r-80 {
    right: 80px;
  }

  .xs\:pin-b-80 {
    bottom: 80px;
  }

  .xs\:pin-l-80 {
    left: 80px;
  }

  .xs\:pin-t-100 {
    top: 100px;
  }

  .xs\:pin-r-100 {
    right: 100px;
  }

  .xs\:pin-b-100 {
    bottom: 100px;
  }

  .xs\:pin-l-100 {
    left: 100px;
  }

  .xs\:pin-t-150 {
    top: 150px;
  }

  .xs\:pin-r-150 {
    right: 150px;
  }

  .xs\:pin-b-150 {
    bottom: 150px;
  }

  .xs\:pin-l-150 {
    left: 150px;
  }

  .xs\:pin-t-200 {
    top: 150px;
  }

  .xs\:pin-r-200 {
    right: 150px;
  }

  .xs\:pin-b-200 {
    bottom: 150px;
  }

  .xs\:pin-l-200 {
    left: 150px;
  }

  .xs\:pin-t-250 {
    top: 250px;
  }

  .xs\:pin-r-250 {
    right: 250px;
  }

  .xs\:pin-b-250 {
    bottom: 250px;
  }

  .xs\:pin-l-250 {
    left: 250px;
  }

  .xs\:pin-t-300 {
    top: 300px;
  }

  .xs\:pin-r-300 {
    right: 300px;
  }

  .xs\:pin-b-300 {
    bottom: 300px;
  }

  .xs\:pin-l-300 {
    left: 300px;
  }

  .xs\:pin-t-400 {
    top: 400px;
  }

  .xs\:pin-r-400 {
    right: 400px;
  }

  .xs\:pin-b-400 {
    bottom: 400px;
  }

  .xs\:pin-l-400 {
    left: 400px;
  }

  .xs\:pin-t-500 {
    top: 500px;
  }

  .xs\:pin-r-500 {
    right: 500px;
  }

  .xs\:pin-b-500 {
    bottom: 500px;
  }

  .xs\:pin-l-500 {
    left: 500px;
  }

  .xs\:-pin-t-5 {
    top: -5px;
  }

  .xs\:-pin-r-5 {
    right: -5px;
  }

  .xs\:-pin-b-5 {
    bottom: -5px;
  }

  .xs\:-pin-l-5 {
    left: -5px;
  }

  .xs\:-pin-t-6 {
    top: -6px;
  }

  .xs\:-pin-r-6 {
    right: -6px;
  }

  .xs\:-pin-b-6 {
    bottom: -6px;
  }

  .xs\:-pin-l-6 {
    left: -6px;
  }

  .xs\:-pin-t-10 {
    top: -10px;
  }

  .xs\:-pin-r-10 {
    right: -10px;
  }

  .xs\:-pin-b-10 {
    bottom: -10px;
  }

  .xs\:-pin-l-10 {
    left: -10px;
  }

  .xs\:-pin-t-15 {
    top: -15px;
  }

  .xs\:-pin-r-15 {
    right: -15px;
  }

  .xs\:-pin-b-15 {
    bottom: -15px;
  }

  .xs\:-pin-l-15 {
    left: -15px;
  }

  .xs\:-pin-t-20 {
    top: -20px;
  }

  .xs\:-pin-r-20 {
    right: -20px;
  }

  .xs\:-pin-b-20 {
    bottom: -20px;
  }

  .xs\:-pin-l-20 {
    left: -20px;
  }

  .xs\:-pin-t-12 {
    top: -3rem;
  }

  .xs\:-pin-r-12 {
    right: -3rem;
  }

  .xs\:-pin-b-12 {
    bottom: -3rem;
  }

  .xs\:-pin-l-12 {
    left: -3rem;
  }

  .xs\:-pin-t-16 {
    top: -4rem;
  }

  .xs\:-pin-r-16 {
    right: -4rem;
  }

  .xs\:-pin-b-16 {
    bottom: -4rem;
  }

  .xs\:-pin-l-16 {
    left: -4rem;
  }

  .xs\:-pin-t-25 {
    top: -25px;
  }

  .xs\:-pin-r-25 {
    right: -25px;
  }

  .xs\:-pin-b-25 {
    bottom: -25px;
  }

  .xs\:-pin-l-25 {
    left: -25px;
  }

  .xs\:-pin-t-50 {
    top: -50px;
  }

  .xs\:-pin-r-50 {
    right: -50px;
  }

  .xs\:-pin-b-50 {
    bottom: -50px;
  }

  .xs\:-pin-l-50 {
    left: -50px;
  }

  .xs\:-pin-t-75 {
    top: 75px;
  }

  .xs\:-pin-r-75 {
    right: 75px;
  }

  .xs\:-pin-b-75 {
    bottom: 75px;
  }

  .xs\:-pin-l-75 {
    left: 75px;
  }

  .xs\:-pin-t-80 {
    top: -80px;
  }

  .xs\:-pin-r-80 {
    right: -80px;
  }

  .xs\:-pin-b-80 {
    bottom: -80px;
  }

  .xs\:-pin-l-80 {
    left: -80px;
  }

  .xs\:-pin-t-100 {
    top: -100px;
  }

  .xs\:-pin-r-100 {
    right: -100px;
  }

  .xs\:-pin-b-100 {
    bottom: -100px;
  }

  .xs\:-pin-l-100 {
    left: -100px;
  }

  .xs\:-pin-t-150 {
    top: -150px;
  }

  .xs\:-pin-r-150 {
    right: -150px;
  }

  .xs\:-pin-b-150 {
    bottom: -150px;
  }

  .xs\:-pin-l-150 {
    left: -150px;
  }

  .xs\:-pin-t-200 {
    top: -200px;
  }

  .xs\:-pin-r-200 {
    right: -200px;
  }

  .xs\:-pin-b-200 {
    bottom: -200px;
  }

  .xs\:-pin-l-200 {
    left: -200px;
  }

  .xs\:-pin-t-250 {
    top: -250px;
  }

  .xs\:-pin-r-250 {
    right: -250px;
  }

  .xs\:-pin-b-250 {
    bottom: -250px;
  }

  .xs\:-pin-l-250 {
    left: -250px;
  }

  .xs\:-pin-t-300 {
    top: -300px;
  }

  .xs\:-pin-r-300 {
    right: -300px;
  }

  .xs\:-pin-b-300 {
    bottom: -300px;
  }

  .xs\:-pin-l-300 {
    left: -300px;
  }

  .xs\:-pin-t-400 {
    top: -400px;
  }

  .xs\:-pin-r-400 {
    right: -400px;
  }

  .xs\:-pin-b-400 {
    bottom: -400px;
  }

  .xs\:-pin-l-400 {
    left: -400px;
  }

  .xs\:-pin-t-500 {
    top: -500px;
  }

  .xs\:-pin-r-500 {
    right: -500px;
  }

  .xs\:-pin-b-500 {
    bottom: -500px;
  }

  .xs\:-pin-l-500 {
    left: -500px;
  }

  .xs\:pin-t-half {
    top: 50%;
  }

  .xs\:pin-r-half {
    right: 50%;
  }

  .xs\:pin-b-half {
    bottom: 50%;
  }

  .xs\:pin-l-half {
    left: 50%;
  }

  .xs\:-pin-t-half {
    top: -50%;
  }

  .xs\:-pin-r-half {
    right: -50%;
  }

  .xs\:-pin-b-half {
    bottom: -50%;
  }

  .xs\:-pin-l-half {
    left: -50%;
  }

  .xs\:rotate-45 {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .xs\:rotate-90 {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .xs\:rotate-180 {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .xs\:-rotate-45 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .xs\:-rotate-90 {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .xs\:-rotate-180 {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .xs\:-translateX-50 {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .xs\:-translateY-50 {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .xs\:hover\:rotate-45:hover {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .xs\:hover\:rotate-90:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .xs\:hover\:rotate-180:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .xs\:hover\:-rotate-45:hover {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .xs\:hover\:-rotate-90:hover {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .xs\:hover\:-rotate-180:hover {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .xs\:hover\:-translateX-50:hover {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .xs\:hover\:-translateY-50:hover {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (min-width: 768px) {
  .sm\:list-reset {
    list-style: none;
    padding: 0;
  }

  .sm\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .sm\:bg-fixed {
    background-attachment: fixed;
  }

  .sm\:bg-local {
    background-attachment: local;
  }

  .sm\:bg-scroll {
    background-attachment: scroll;
  }

  .sm\:bg-transparent {
    background-color: transparent;
  }

  .sm\:bg-currentColor {
    background-color: currentColor;
  }

  .sm\:bg-black {
    background-color: #222;
  }

  .sm\:bg-black-10 {
    background-color: rgba(0, 0, 0, .1);
  }

  .sm\:bg-black-20 {
    background-color: rgba(0, 0, 0, .2);
  }

  .sm\:bg-black-30 {
    background-color: rgba(0, 0, 0, .3);
  }

  .sm\:bg-black-40 {
    background-color: rgba(0, 0, 0, .4);
  }

  .sm\:bg-black-50 {
    background-color: rgba(0, 0, 0, .5);
  }

  .sm\:bg-black-60 {
    background-color: rgba(0, 0, 0, .6);
  }

  .sm\:bg-black-70 {
    background-color: rgba(0, 0, 0, .7);
  }

  .sm\:bg-black-80 {
    background-color: rgba(0, 0, 0, .8);
  }

  .sm\:bg-black-90 {
    background-color: rgba(0, 0, 0, .9);
  }

  .sm\:bg-black-1 {
    background-color: #313131;
  }

  .sm\:bg-white {
    background-color: #fff;
  }

  .sm\:bg-blue {
    background-color: #0277bd;
  }

  .sm\:bg-dark-blue {
    background-color: #0277bd;
  }

  .sm\:bg-blue-1 {
    background-color: #17214a;
  }

  .sm\:bg-light-blue {
    background-color: #0277bd;
  }

  .sm\:bg-red {
    background-color: #cb001c;
  }

  .sm\:bg-green {
    background-color: #00bea0;
  }

  .sm\:bg-purple {
    background-color: #5a80d1;
  }

  .sm\:bg-orange {
    background-color: #ff9a0a;
  }

  .sm\:bg-grey {
    background-color: #929a9d;
  }

  .sm\:bg-grey-light {
    background-color: #e2e2e2;
  }

  .sm\:bg-grey-1 {
    background-color: #f2f3f3;
  }

  .sm\:bg-grey-2 {
    background-color: #c2c6c8;
  }

  .sm\:bg-grey-3 {
    background-color: #6b7375;
  }

  .sm\:bg-grey-4 {
    background-color: #465052;
  }

  .sm\:bg-grey-5 {
    background-color: #828688;
  }

  .sm\:bg-sd-red {
    background-color: #ed1c24;
  }

  .sm\:bg-light-blue-1 {
    background-color: #21b8de;
  }

  .sm\:bg-dark-blue-1 {
    background-color: #0277bd;
  }

  .sm\:bg-dark-orange {
    background-color: #df8403;
  }

  .sm\:bg-g-blue {
    background-color: #17214a;
  }

  .sm\:bg-g-blue-1 {
    background-color: #556d88;
  }

  .sm\:bg-g-blue-2 {
    background-color: #3c4c65;
  }

  .sm\:bg-g-blue-3 {
    background-color: #222e4d;
  }

  .sm\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .sm\:hover\:bg-currentColor:hover {
    background-color: currentColor;
  }

  .sm\:hover\:bg-black:hover {
    background-color: #222;
  }

  .sm\:hover\:bg-black-10:hover {
    background-color: rgba(0, 0, 0, .1);
  }

  .sm\:hover\:bg-black-20:hover {
    background-color: rgba(0, 0, 0, .2);
  }

  .sm\:hover\:bg-black-30:hover {
    background-color: rgba(0, 0, 0, .3);
  }

  .sm\:hover\:bg-black-40:hover {
    background-color: rgba(0, 0, 0, .4);
  }

  .sm\:hover\:bg-black-50:hover {
    background-color: rgba(0, 0, 0, .5);
  }

  .sm\:hover\:bg-black-60:hover {
    background-color: rgba(0, 0, 0, .6);
  }

  .sm\:hover\:bg-black-70:hover {
    background-color: rgba(0, 0, 0, .7);
  }

  .sm\:hover\:bg-black-80:hover {
    background-color: rgba(0, 0, 0, .8);
  }

  .sm\:hover\:bg-black-90:hover {
    background-color: rgba(0, 0, 0, .9);
  }

  .sm\:hover\:bg-black-1:hover {
    background-color: #313131;
  }

  .sm\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .sm\:hover\:bg-blue:hover {
    background-color: #0277bd;
  }

  .sm\:hover\:bg-dark-blue:hover {
    background-color: #0277bd;
  }

  .sm\:hover\:bg-blue-1:hover {
    background-color: #17214a;
  }

  .sm\:hover\:bg-light-blue:hover {
    background-color: #0277bd;
  }

  .sm\:hover\:bg-red:hover {
    background-color: #cb001c;
  }

  .sm\:hover\:bg-green:hover {
    background-color: #00bea0;
  }

  .sm\:hover\:bg-purple:hover {
    background-color: #5a80d1;
  }

  .sm\:hover\:bg-orange:hover {
    background-color: #ff9a0a;
  }

  .sm\:hover\:bg-grey:hover {
    background-color: #929a9d;
  }

  .sm\:hover\:bg-grey-light:hover {
    background-color: #e2e2e2;
  }

  .sm\:hover\:bg-grey-1:hover {
    background-color: #f2f3f3;
  }

  .sm\:hover\:bg-grey-2:hover {
    background-color: #c2c6c8;
  }

  .sm\:hover\:bg-grey-3:hover {
    background-color: #6b7375;
  }

  .sm\:hover\:bg-grey-4:hover {
    background-color: #465052;
  }

  .sm\:hover\:bg-grey-5:hover {
    background-color: #828688;
  }

  .sm\:hover\:bg-sd-red:hover {
    background-color: #ed1c24;
  }

  .sm\:hover\:bg-light-blue-1:hover {
    background-color: #21b8de;
  }

  .sm\:hover\:bg-dark-blue-1:hover {
    background-color: #0277bd;
  }

  .sm\:hover\:bg-dark-orange:hover {
    background-color: #df8403;
  }

  .sm\:hover\:bg-g-blue:hover {
    background-color: #17214a;
  }

  .sm\:hover\:bg-g-blue-1:hover {
    background-color: #556d88;
  }

  .sm\:hover\:bg-g-blue-2:hover {
    background-color: #3c4c65;
  }

  .sm\:hover\:bg-g-blue-3:hover {
    background-color: #222e4d;
  }

  .sm\:bg-bottom {
    background-position: bottom;
  }

  .sm\:bg-center {
    background-position: center;
  }

  .sm\:bg-left {
    background-position: left;
  }

  .sm\:bg-left-bottom {
    background-position: left bottom;
  }

  .sm\:bg-left-top {
    background-position: left top;
  }

  .sm\:bg-right {
    background-position: right;
  }

  .sm\:bg-right-bottom {
    background-position: right bottom;
  }

  .sm\:bg-right-top {
    background-position: right top;
  }

  .sm\:bg-top {
    background-position: top;
  }

  .sm\:bg-repeat {
    background-repeat: repeat;
  }

  .sm\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .sm\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .sm\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .sm\:bg-auto {
    background-size: auto;
  }

  .sm\:bg-cover {
    background-size: cover;
  }

  .sm\:bg-contain {
    background-size: contain;
  }

  .sm\:border-transparent {
    border-color: transparent;
  }

  .sm\:border-currentColor {
    border-color: currentColor;
  }

  .sm\:border-black {
    border-color: #222;
  }

  .sm\:border-black-10 {
    border-color: rgba(0, 0, 0, .1);
  }

  .sm\:border-black-20 {
    border-color: rgba(0, 0, 0, .2);
  }

  .sm\:border-black-30 {
    border-color: rgba(0, 0, 0, .3);
  }

  .sm\:border-black-40 {
    border-color: rgba(0, 0, 0, .4);
  }

  .sm\:border-black-50 {
    border-color: rgba(0, 0, 0, .5);
  }

  .sm\:border-black-60 {
    border-color: rgba(0, 0, 0, .6);
  }

  .sm\:border-black-70 {
    border-color: rgba(0, 0, 0, .7);
  }

  .sm\:border-black-80 {
    border-color: rgba(0, 0, 0, .8);
  }

  .sm\:border-black-90 {
    border-color: rgba(0, 0, 0, .9);
  }

  .sm\:border-black-1 {
    border-color: #313131;
  }

  .sm\:border-white {
    border-color: #fff;
  }

  .sm\:border-blue {
    border-color: #0277bd;
  }

  .sm\:border-dark-blue {
    border-color: #0277bd;
  }

  .sm\:border-blue-1 {
    border-color: #17214a;
  }

  .sm\:border-light-blue {
    border-color: #0277bd;
  }

  .sm\:border-red {
    border-color: #cb001c;
  }

  .sm\:border-green {
    border-color: #00bea0;
  }

  .sm\:border-purple {
    border-color: #5a80d1;
  }

  .sm\:border-orange {
    border-color: #ff9a0a;
  }

  .sm\:border-grey {
    border-color: #929a9d;
  }

  .sm\:border-grey-light {
    border-color: #e2e2e2;
  }

  .sm\:border-grey-1 {
    border-color: #f2f3f3;
  }

  .sm\:border-grey-2 {
    border-color: #c2c6c8;
  }

  .sm\:border-grey-3 {
    border-color: #6b7375;
  }

  .sm\:border-grey-4 {
    border-color: #465052;
  }

  .sm\:border-grey-5 {
    border-color: #828688;
  }

  .sm\:border-sd-red {
    border-color: #ed1c24;
  }

  .sm\:border-light-blue-1 {
    border-color: #21b8de;
  }

  .sm\:border-dark-blue-1 {
    border-color: #0277bd;
  }

  .sm\:border-dark-orange {
    border-color: #df8403;
  }

  .sm\:border-g-blue {
    border-color: #17214a;
  }

  .sm\:border-g-blue-1 {
    border-color: #556d88;
  }

  .sm\:border-g-blue-2 {
    border-color: #3c4c65;
  }

  .sm\:border-g-blue-3 {
    border-color: #222e4d;
  }

  .sm\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .sm\:hover\:border-currentColor:hover {
    border-color: currentColor;
  }

  .sm\:hover\:border-black:hover {
    border-color: #222;
  }

  .sm\:hover\:border-black-10:hover {
    border-color: rgba(0, 0, 0, .1);
  }

  .sm\:hover\:border-black-20:hover {
    border-color: rgba(0, 0, 0, .2);
  }

  .sm\:hover\:border-black-30:hover {
    border-color: rgba(0, 0, 0, .3);
  }

  .sm\:hover\:border-black-40:hover {
    border-color: rgba(0, 0, 0, .4);
  }

  .sm\:hover\:border-black-50:hover {
    border-color: rgba(0, 0, 0, .5);
  }

  .sm\:hover\:border-black-60:hover {
    border-color: rgba(0, 0, 0, .6);
  }

  .sm\:hover\:border-black-70:hover {
    border-color: rgba(0, 0, 0, .7);
  }

  .sm\:hover\:border-black-80:hover {
    border-color: rgba(0, 0, 0, .8);
  }

  .sm\:hover\:border-black-90:hover {
    border-color: rgba(0, 0, 0, .9);
  }

  .sm\:hover\:border-black-1:hover {
    border-color: #313131;
  }

  .sm\:hover\:border-white:hover {
    border-color: #fff;
  }

  .sm\:hover\:border-blue:hover {
    border-color: #0277bd;
  }

  .sm\:hover\:border-dark-blue:hover {
    border-color: #0277bd;
  }

  .sm\:hover\:border-blue-1:hover {
    border-color: #17214a;
  }

  .sm\:hover\:border-light-blue:hover {
    border-color: #0277bd;
  }

  .sm\:hover\:border-red:hover {
    border-color: #cb001c;
  }

  .sm\:hover\:border-green:hover {
    border-color: #00bea0;
  }

  .sm\:hover\:border-purple:hover {
    border-color: #5a80d1;
  }

  .sm\:hover\:border-orange:hover {
    border-color: #ff9a0a;
  }

  .sm\:hover\:border-grey:hover {
    border-color: #929a9d;
  }

  .sm\:hover\:border-grey-light:hover {
    border-color: #e2e2e2;
  }

  .sm\:hover\:border-grey-1:hover {
    border-color: #f2f3f3;
  }

  .sm\:hover\:border-grey-2:hover {
    border-color: #c2c6c8;
  }

  .sm\:hover\:border-grey-3:hover {
    border-color: #6b7375;
  }

  .sm\:hover\:border-grey-4:hover {
    border-color: #465052;
  }

  .sm\:hover\:border-grey-5:hover {
    border-color: #828688;
  }

  .sm\:hover\:border-sd-red:hover {
    border-color: #ed1c24;
  }

  .sm\:hover\:border-light-blue-1:hover {
    border-color: #21b8de;
  }

  .sm\:hover\:border-dark-blue-1:hover {
    border-color: #0277bd;
  }

  .sm\:hover\:border-dark-orange:hover {
    border-color: #df8403;
  }

  .sm\:hover\:border-g-blue:hover {
    border-color: #17214a;
  }

  .sm\:hover\:border-g-blue-1:hover {
    border-color: #556d88;
  }

  .sm\:hover\:border-g-blue-2:hover {
    border-color: #3c4c65;
  }

  .sm\:hover\:border-g-blue-3:hover {
    border-color: #222e4d;
  }

  .sm\:rounded-none {
    border-radius: 0;
  }

  .sm\:rounded-sm {
    border-radius: .125rem;
  }

  .sm\:rounded {
    border-radius: .25rem;
  }

  .sm\:rounded-lg {
    border-radius: .5rem;
  }

  .sm\:rounded-full {
    border-radius: 9999px;
  }

  .sm\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .sm\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .sm\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-t-sm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .sm\:rounded-r-sm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .sm\:rounded-b-sm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .sm\:rounded-l-sm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .sm\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .sm\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .sm\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .sm\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .sm\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .sm\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .sm\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .sm\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .sm\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .sm\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .sm\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .sm\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .sm\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .sm\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .sm\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .sm\:rounded-tl-sm {
    border-top-left-radius: .125rem;
  }

  .sm\:rounded-tr-sm {
    border-top-right-radius: .125rem;
  }

  .sm\:rounded-br-sm {
    border-bottom-right-radius: .125rem;
  }

  .sm\:rounded-bl-sm {
    border-bottom-left-radius: .125rem;
  }

  .sm\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .sm\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .sm\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .sm\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .sm\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .sm\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .sm\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .sm\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .sm\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .sm\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .sm\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .sm\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .sm\:border-solid {
    border-style: solid;
  }

  .sm\:border-dashed {
    border-style: dashed;
  }

  .sm\:border-dotted {
    border-style: dotted;
  }

  .sm\:border-none {
    border-style: none;
  }

  .sm\:border-0 {
    border-width: 0;
  }

  .sm\:border-2 {
    border-width: 2px;
  }

  .sm\:border-3 {
    border-width: 3px;
  }

  .sm\:border-4 {
    border-width: 4px;
  }

  .sm\:border-5 {
    border-width: 5px;
  }

  .sm\:border-6 {
    border-width: 6px;
  }

  .sm\:border-7 {
    border-width: 7px;
  }

  .sm\:border-8 {
    border-width: 8px;
  }

  .sm\:border-9 {
    border-width: 9px;
  }

  .sm\:border-10 {
    border-width: 10px;
  }

  .sm\:border {
    border-width: 1px;
  }

  .sm\:border-t-0 {
    border-top-width: 0;
  }

  .sm\:border-r-0 {
    border-right-width: 0;
  }

  .sm\:border-b-0 {
    border-bottom-width: 0;
  }

  .sm\:border-l-0 {
    border-left-width: 0;
  }

  .sm\:border-t-2 {
    border-top-width: 2px;
  }

  .sm\:border-r-2 {
    border-right-width: 2px;
  }

  .sm\:border-b-2 {
    border-bottom-width: 2px;
  }

  .sm\:border-l-2 {
    border-left-width: 2px;
  }

  .sm\:border-t-3 {
    border-top-width: 3px;
  }

  .sm\:border-r-3 {
    border-right-width: 3px;
  }

  .sm\:border-b-3 {
    border-bottom-width: 3px;
  }

  .sm\:border-l-3 {
    border-left-width: 3px;
  }

  .sm\:border-t-4 {
    border-top-width: 4px;
  }

  .sm\:border-r-4 {
    border-right-width: 4px;
  }

  .sm\:border-b-4 {
    border-bottom-width: 4px;
  }

  .sm\:border-l-4 {
    border-left-width: 4px;
  }

  .sm\:border-t-5 {
    border-top-width: 5px;
  }

  .sm\:border-r-5 {
    border-right-width: 5px;
  }

  .sm\:border-b-5 {
    border-bottom-width: 5px;
  }

  .sm\:border-l-5 {
    border-left-width: 5px;
  }

  .sm\:border-t-6 {
    border-top-width: 6px;
  }

  .sm\:border-r-6 {
    border-right-width: 6px;
  }

  .sm\:border-b-6 {
    border-bottom-width: 6px;
  }

  .sm\:border-l-6 {
    border-left-width: 6px;
  }

  .sm\:border-t-7 {
    border-top-width: 7px;
  }

  .sm\:border-r-7 {
    border-right-width: 7px;
  }

  .sm\:border-b-7 {
    border-bottom-width: 7px;
  }

  .sm\:border-l-7 {
    border-left-width: 7px;
  }

  .sm\:border-t-8 {
    border-top-width: 8px;
  }

  .sm\:border-r-8 {
    border-right-width: 8px;
  }

  .sm\:border-b-8 {
    border-bottom-width: 8px;
  }

  .sm\:border-l-8 {
    border-left-width: 8px;
  }

  .sm\:border-t-9 {
    border-top-width: 9px;
  }

  .sm\:border-r-9 {
    border-right-width: 9px;
  }

  .sm\:border-b-9 {
    border-bottom-width: 9px;
  }

  .sm\:border-l-9 {
    border-left-width: 9px;
  }

  .sm\:border-t-10 {
    border-top-width: 10px;
  }

  .sm\:border-r-10 {
    border-right-width: 10px;
  }

  .sm\:border-b-10 {
    border-bottom-width: 10px;
  }

  .sm\:border-l-10 {
    border-left-width: 10px;
  }

  .sm\:border-t {
    border-top-width: 1px;
  }

  .sm\:border-r {
    border-right-width: 1px;
  }

  .sm\:border-b {
    border-bottom-width: 1px;
  }

  .sm\:border-l {
    border-left-width: 1px;
  }

  .sm\:cursor-auto {
    cursor: auto;
  }

  .sm\:cursor-default {
    cursor: default;
  }

  .sm\:cursor-pointer {
    cursor: pointer;
  }

  .sm\:cursor-wait {
    cursor: wait;
  }

  .sm\:cursor-move {
    cursor: move;
  }

  .sm\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .sm\:block {
    display: block;
  }

  .sm\:inline-block {
    display: inline-block;
  }

  .sm\:inline {
    display: inline;
  }

  .sm\:table {
    display: table;
  }

  .sm\:table-row {
    display: table-row;
  }

  .sm\:table-cell {
    display: table-cell;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:flex {
    display: -webkit-box;
    display: flex;
  }

  .sm\:inline-flex {
    display: -webkit-inline-box;
    display: inline-flex;
  }

  .sm\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .sm\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }

  .sm\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .sm\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }

  .sm\:flex-wrap {
    flex-wrap: wrap;
  }

  .sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .sm\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .sm\:items-start {
    -webkit-box-align: start;
            align-items: flex-start;
  }

  .sm\:items-end {
    -webkit-box-align: end;
            align-items: flex-end;
  }

  .sm\:items-center {
    -webkit-box-align: center;
            align-items: center;
  }

  .sm\:items-baseline {
    -webkit-box-align: baseline;
            align-items: baseline;
  }

  .sm\:items-stretch {
    -webkit-box-align: stretch;
            align-items: stretch;
  }

  .sm\:self-auto {
    align-self: auto;
  }

  .sm\:self-start {
    align-self: flex-start;
  }

  .sm\:self-end {
    align-self: flex-end;
  }

  .sm\:self-center {
    align-self: center;
  }

  .sm\:self-stretch {
    align-self: stretch;
  }

  .sm\:justify-start {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }

  .sm\:justify-end {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }

  .sm\:justify-center {
    -webkit-box-pack: center;
            justify-content: center;
  }

  .sm\:justify-between {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }

  .sm\:justify-around {
    justify-content: space-around;
  }

  .sm\:content-center {
    align-content: center;
  }

  .sm\:content-start {
    align-content: flex-start;
  }

  .sm\:content-end {
    align-content: flex-end;
  }

  .sm\:content-between {
    align-content: space-between;
  }

  .sm\:content-around {
    align-content: space-around;
  }

  .sm\:flex-1 {
    -webkit-box-flex: 1;
            flex: 1;
  }

  .sm\:flex-auto {
    -webkit-box-flex: 1;
            flex: auto;
  }

  .sm\:flex-initial {
    -webkit-box-flex: initial;
            flex: initial;
  }

  .sm\:flex-none {
    -webkit-box-flex: 0;
            flex: none;
  }

  .sm\:flex-grow {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }

  .sm\:flex-shrink {
    flex-shrink: 1;
  }

  .sm\:flex-no-grow {
    -webkit-box-flex: 0;
            flex-grow: 0;
  }

  .sm\:flex-no-shrink {
    flex-shrink: 0;
  }

  .sm\:float-right {
    float: right;
  }

  .sm\:float-left {
    float: left;
  }

  .sm\:float-none {
    float: none;
  }

  .sm\:clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  .sm\:font-Roboto {
    font-family: Roboto;
  }

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

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

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

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

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

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

  .sm\:font-xxbold {
    font-weight: 900;
  }

  .sm\:hover\:font-light:hover {
    font-weight: 300;
  }

  .sm\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .sm\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .sm\:hover\:font-semibold:hover {
    font-weight: 600;
  }

  .sm\:hover\:font-bold:hover {
    font-weight: 700;
  }

  .sm\:hover\:font-extrabold:hover {
    font-weight: 800;
  }

  .sm\:hover\:font-xxbold:hover {
    font-weight: 900;
  }

  .sm\:h-0 {
    height: 0;
  }

  .sm\:h-1 {
    height: .25rem;
  }

  .sm\:h-2 {
    height: .5rem;
  }

  .sm\:h-3 {
    height: .75rem;
  }

  .sm\:h-4 {
    height: 1rem;
  }

  .sm\:h-5 {
    height: 1.25rem;
  }

  .sm\:h-6 {
    height: 1.5rem;
  }

  .sm\:h-7 {
    height: 1.75rem;
  }

  .sm\:h-8 {
    height: 2rem;
  }

  .sm\:h-9 {
    height: 2.25rem;
  }

  .sm\:h-10 {
    height: 2.5rem;
  }

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:h-14 {
    height: 3.5rem;
  }

  .sm\:h-16 {
    height: 4rem;
  }

  .sm\:h-18 {
    height: 4.5rem;
  }

  .sm\:h-24 {
    height: 6rem;
  }

  .sm\:h-32 {
    height: 8rem;
  }

  .sm\:h-48 {
    height: 12rem;
  }

  .sm\:h-64 {
    height: 16rem;
  }

  .sm\:h-auto {
    height: auto;
  }

  .sm\:h-px {
    height: 1px;
  }

  .sm\:h-2px {
    height: 2px;
  }

  .sm\:h-42px {
    height: 2.625rem;
  }

  .sm\:h-50px {
    height: 50px;
  }

  .sm\:h-100px {
    height: 100px;
  }

  .sm\:h-125px {
    height: 125px;
  }

  .sm\:h-150px {
    height: 150px;
  }

  .sm\:h-175px {
    height: 175px;
  }

  .sm\:h-200px {
    height: 200px;
  }

  .sm\:h-225px {
    height: 225px;
  }

  .sm\:h-250px {
    height: 250px;
  }

  .sm\:h-275px {
    height: 275px;
  }

  .sm\:h-300px {
    height: 300px;
  }

  .sm\:h-325px {
    height: 325px;
  }

  .sm\:h-350px {
    height: 350px;
  }

  .sm\:h-375px {
    height: 375px;
  }

  .sm\:h-400px {
    height: 400px;
  }

  .sm\:h-500px {
    height: 500px;
  }

  .sm\:h-576px {
    height: 576px;
  }

  .sm\:h-600px {
    height: 600px;
  }

  .sm\:h-700px {
    height: 700px;
  }

  .sm\:h-768px {
    height: 768px;
  }

  .sm\:h-800px {
    height: 800px;
  }

  .sm\:h-900px {
    height: 900px;
  }

  .sm\:h-992px {
    height: 992px;
  }

  .sm\:h-1000px {
    height: 1000px;
  }

  .sm\:h-1140px {
    height: 1140px;
  }

  .sm\:h-1200px {
    height: 1200px;
  }

  .sm\:h-1460px {
    height: 1460px;
  }

  .sm\:h-1600px {
    height: 1600px;
  }

  .sm\:h-screen {
    height: 100vh;
  }

  .sm\:h-half {
    height: 50%;
  }

  .sm\:h-quarter {
    height: 75%;
  }

  .sm\:h-85\% {
    height: 85%;
  }

  .sm\:h-full {
    height: 100%;
  }

  .sm\:hover\:h-0:hover {
    height: 0;
  }

  .sm\:hover\:h-1:hover {
    height: .25rem;
  }

  .sm\:hover\:h-2:hover {
    height: .5rem;
  }

  .sm\:hover\:h-3:hover {
    height: .75rem;
  }

  .sm\:hover\:h-4:hover {
    height: 1rem;
  }

  .sm\:hover\:h-5:hover {
    height: 1.25rem;
  }

  .sm\:hover\:h-6:hover {
    height: 1.5rem;
  }

  .sm\:hover\:h-7:hover {
    height: 1.75rem;
  }

  .sm\:hover\:h-8:hover {
    height: 2rem;
  }

  .sm\:hover\:h-9:hover {
    height: 2.25rem;
  }

  .sm\:hover\:h-10:hover {
    height: 2.5rem;
  }

  .sm\:hover\:h-12:hover {
    height: 3rem;
  }

  .sm\:hover\:h-14:hover {
    height: 3.5rem;
  }

  .sm\:hover\:h-16:hover {
    height: 4rem;
  }

  .sm\:hover\:h-18:hover {
    height: 4.5rem;
  }

  .sm\:hover\:h-24:hover {
    height: 6rem;
  }

  .sm\:hover\:h-32:hover {
    height: 8rem;
  }

  .sm\:hover\:h-48:hover {
    height: 12rem;
  }

  .sm\:hover\:h-64:hover {
    height: 16rem;
  }

  .sm\:hover\:h-auto:hover {
    height: auto;
  }

  .sm\:hover\:h-px:hover {
    height: 1px;
  }

  .sm\:hover\:h-2px:hover {
    height: 2px;
  }

  .sm\:hover\:h-42px:hover {
    height: 2.625rem;
  }

  .sm\:hover\:h-50px:hover {
    height: 50px;
  }

  .sm\:hover\:h-100px:hover {
    height: 100px;
  }

  .sm\:hover\:h-125px:hover {
    height: 125px;
  }

  .sm\:hover\:h-150px:hover {
    height: 150px;
  }

  .sm\:hover\:h-175px:hover {
    height: 175px;
  }

  .sm\:hover\:h-200px:hover {
    height: 200px;
  }

  .sm\:hover\:h-225px:hover {
    height: 225px;
  }

  .sm\:hover\:h-250px:hover {
    height: 250px;
  }

  .sm\:hover\:h-275px:hover {
    height: 275px;
  }

  .sm\:hover\:h-300px:hover {
    height: 300px;
  }

  .sm\:hover\:h-325px:hover {
    height: 325px;
  }

  .sm\:hover\:h-350px:hover {
    height: 350px;
  }

  .sm\:hover\:h-375px:hover {
    height: 375px;
  }

  .sm\:hover\:h-400px:hover {
    height: 400px;
  }

  .sm\:hover\:h-500px:hover {
    height: 500px;
  }

  .sm\:hover\:h-576px:hover {
    height: 576px;
  }

  .sm\:hover\:h-600px:hover {
    height: 600px;
  }

  .sm\:hover\:h-700px:hover {
    height: 700px;
  }

  .sm\:hover\:h-768px:hover {
    height: 768px;
  }

  .sm\:hover\:h-800px:hover {
    height: 800px;
  }

  .sm\:hover\:h-900px:hover {
    height: 900px;
  }

  .sm\:hover\:h-992px:hover {
    height: 992px;
  }

  .sm\:hover\:h-1000px:hover {
    height: 1000px;
  }

  .sm\:hover\:h-1140px:hover {
    height: 1140px;
  }

  .sm\:hover\:h-1200px:hover {
    height: 1200px;
  }

  .sm\:hover\:h-1460px:hover {
    height: 1460px;
  }

  .sm\:hover\:h-1600px:hover {
    height: 1600px;
  }

  .sm\:hover\:h-screen:hover {
    height: 100vh;
  }

  .sm\:hover\:h-half:hover {
    height: 50%;
  }

  .sm\:hover\:h-quarter:hover {
    height: 75%;
  }

  .sm\:hover\:h-85\%:hover {
    height: 85%;
  }

  .sm\:hover\:h-full:hover {
    height: 100%;
  }

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

  .sm\:leading-heading {
    line-height: 1.1;
  }

  .sm\:leading-tight {
    line-height: 1.2;
  }

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

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

  .sm\:m-0 {
    margin: 0;
  }

  .sm\:m-1 {
    margin: .25rem;
  }

  .sm\:m-2 {
    margin: .5rem;
  }

  .sm\:m-3 {
    margin: .75rem;
  }

  .sm\:m-4 {
    margin: 1rem;
  }

  .sm\:m-5 {
    margin: 1.25rem;
  }

  .sm\:m-6 {
    margin: 1.5rem;
  }

  .sm\:m-7 {
    margin: 1.75rem;
  }

  .sm\:m-8 {
    margin: 2rem;
  }

  .sm\:m-9 {
    margin: 2.25rem;
  }

  .sm\:m-10 {
    margin: 2.5rem;
  }

  .sm\:m-12 {
    margin: 3rem;
  }

  .sm\:m-16 {
    margin: 4rem;
  }

  .sm\:m-20 {
    margin: 5rem;
  }

  .sm\:m-24 {
    margin: 6rem;
  }

  .sm\:m-28 {
    margin: 7rem;
  }

  .sm\:m-32 {
    margin: 8rem;
  }

  .sm\:m-36 {
    margin: 9rem;
  }

  .sm\:m-40 {
    margin: 10rem;
  }

  .sm\:m-44 {
    margin: 11rem;
  }

  .sm\:m-48 {
    margin: 12rem;
  }

  .sm\:m-56 {
    margin: 14rem;
  }

  .sm\:m-60 {
    margin: 15rem;
  }

  .sm\:m-64 {
    margin: 16rem;
  }

  .sm\:m-80 {
    margin: 20rem;
  }

  .sm\:m-96 {
    margin: 24rem;
  }

  .sm\:m-120 {
    margin: 30rem;
  }

  .sm\:m-160 {
    margin: 40rem;
  }

  .sm\:m-auto {
    margin: auto;
  }

  .sm\:m-px {
    margin: 1px;
  }

  .sm\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .sm\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .sm\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .sm\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .sm\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .sm\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .sm\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .sm\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .sm\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .sm\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .sm\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sm\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .sm\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .sm\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .sm\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .sm\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .sm\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .sm\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .sm\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .sm\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .sm\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .sm\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .sm\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .sm\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .sm\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .sm\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .sm\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .sm\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .sm\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .sm\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .sm\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .sm\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .sm\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .sm\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .sm\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .sm\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .sm\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .sm\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .sm\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .sm\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .sm\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .sm\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .sm\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .sm\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .sm\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .sm\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .sm\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .sm\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .sm\:my-120 {
    margin-top: 30rem;
    margin-bottom: 30rem;
  }

  .sm\:mx-120 {
    margin-left: 30rem;
    margin-right: 30rem;
  }

  .sm\:my-160 {
    margin-top: 40rem;
    margin-bottom: 40rem;
  }

  .sm\:mx-160 {
    margin-left: 40rem;
    margin-right: 40rem;
  }

  .sm\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .sm\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .sm\:mt-0 {
    margin-top: 0;
  }

  .sm\:mr-0 {
    margin-right: 0;
  }

  .sm\:mb-0 {
    margin-bottom: 0;
  }

  .sm\:ml-0 {
    margin-left: 0;
  }

  .sm\:mt-1 {
    margin-top: .25rem;
  }

  .sm\:mr-1 {
    margin-right: .25rem;
  }

  .sm\:mb-1 {
    margin-bottom: .25rem;
  }

  .sm\:ml-1 {
    margin-left: .25rem;
  }

  .sm\:mt-2 {
    margin-top: .5rem;
  }

  .sm\:mr-2 {
    margin-right: .5rem;
  }

  .sm\:mb-2 {
    margin-bottom: .5rem;
  }

  .sm\:ml-2 {
    margin-left: .5rem;
  }

  .sm\:mt-3 {
    margin-top: .75rem;
  }

  .sm\:mr-3 {
    margin-right: .75rem;
  }

  .sm\:mb-3 {
    margin-bottom: .75rem;
  }

  .sm\:ml-3 {
    margin-left: .75rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:mr-4 {
    margin-right: 1rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:ml-4 {
    margin-left: 1rem;
  }

  .sm\:mt-5 {
    margin-top: 1.25rem;
  }

  .sm\:mr-5 {
    margin-right: 1.25rem;
  }

  .sm\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .sm\:ml-5 {
    margin-left: 1.25rem;
  }

  .sm\:mt-6 {
    margin-top: 1.5rem;
  }

  .sm\:mr-6 {
    margin-right: 1.5rem;
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .sm\:ml-6 {
    margin-left: 1.5rem;
  }

  .sm\:mt-7 {
    margin-top: 1.75rem;
  }

  .sm\:mr-7 {
    margin-right: 1.75rem;
  }

  .sm\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .sm\:ml-7 {
    margin-left: 1.75rem;
  }

  .sm\:mt-8 {
    margin-top: 2rem;
  }

  .sm\:mr-8 {
    margin-right: 2rem;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem;
  }

  .sm\:ml-8 {
    margin-left: 2rem;
  }

  .sm\:mt-9 {
    margin-top: 2.25rem;
  }

  .sm\:mr-9 {
    margin-right: 2.25rem;
  }

  .sm\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .sm\:ml-9 {
    margin-left: 2.25rem;
  }

  .sm\:mt-10 {
    margin-top: 2.5rem;
  }

  .sm\:mr-10 {
    margin-right: 2.5rem;
  }

  .sm\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .sm\:ml-10 {
    margin-left: 2.5rem;
  }

  .sm\:mt-12 {
    margin-top: 3rem;
  }

  .sm\:mr-12 {
    margin-right: 3rem;
  }

  .sm\:mb-12 {
    margin-bottom: 3rem;
  }

  .sm\:ml-12 {
    margin-left: 3rem;
  }

  .sm\:mt-16 {
    margin-top: 4rem;
  }

  .sm\:mr-16 {
    margin-right: 4rem;
  }

  .sm\:mb-16 {
    margin-bottom: 4rem;
  }

  .sm\:ml-16 {
    margin-left: 4rem;
  }

  .sm\:mt-20 {
    margin-top: 5rem;
  }

  .sm\:mr-20 {
    margin-right: 5rem;
  }

  .sm\:mb-20 {
    margin-bottom: 5rem;
  }

  .sm\:ml-20 {
    margin-left: 5rem;
  }

  .sm\:mt-24 {
    margin-top: 6rem;
  }

  .sm\:mr-24 {
    margin-right: 6rem;
  }

  .sm\:mb-24 {
    margin-bottom: 6rem;
  }

  .sm\:ml-24 {
    margin-left: 6rem;
  }

  .sm\:mt-28 {
    margin-top: 7rem;
  }

  .sm\:mr-28 {
    margin-right: 7rem;
  }

  .sm\:mb-28 {
    margin-bottom: 7rem;
  }

  .sm\:ml-28 {
    margin-left: 7rem;
  }

  .sm\:mt-32 {
    margin-top: 8rem;
  }

  .sm\:mr-32 {
    margin-right: 8rem;
  }

  .sm\:mb-32 {
    margin-bottom: 8rem;
  }

  .sm\:ml-32 {
    margin-left: 8rem;
  }

  .sm\:mt-36 {
    margin-top: 9rem;
  }

  .sm\:mr-36 {
    margin-right: 9rem;
  }

  .sm\:mb-36 {
    margin-bottom: 9rem;
  }

  .sm\:ml-36 {
    margin-left: 9rem;
  }

  .sm\:mt-40 {
    margin-top: 10rem;
  }

  .sm\:mr-40 {
    margin-right: 10rem;
  }

  .sm\:mb-40 {
    margin-bottom: 10rem;
  }

  .sm\:ml-40 {
    margin-left: 10rem;
  }

  .sm\:mt-44 {
    margin-top: 11rem;
  }

  .sm\:mr-44 {
    margin-right: 11rem;
  }

  .sm\:mb-44 {
    margin-bottom: 11rem;
  }

  .sm\:ml-44 {
    margin-left: 11rem;
  }

  .sm\:mt-48 {
    margin-top: 12rem;
  }

  .sm\:mr-48 {
    margin-right: 12rem;
  }

  .sm\:mb-48 {
    margin-bottom: 12rem;
  }

  .sm\:ml-48 {
    margin-left: 12rem;
  }

  .sm\:mt-56 {
    margin-top: 14rem;
  }

  .sm\:mr-56 {
    margin-right: 14rem;
  }

  .sm\:mb-56 {
    margin-bottom: 14rem;
  }

  .sm\:ml-56 {
    margin-left: 14rem;
  }

  .sm\:mt-60 {
    margin-top: 15rem;
  }

  .sm\:mr-60 {
    margin-right: 15rem;
  }

  .sm\:mb-60 {
    margin-bottom: 15rem;
  }

  .sm\:ml-60 {
    margin-left: 15rem;
  }

  .sm\:mt-64 {
    margin-top: 16rem;
  }

  .sm\:mr-64 {
    margin-right: 16rem;
  }

  .sm\:mb-64 {
    margin-bottom: 16rem;
  }

  .sm\:ml-64 {
    margin-left: 16rem;
  }

  .sm\:mt-80 {
    margin-top: 20rem;
  }

  .sm\:mr-80 {
    margin-right: 20rem;
  }

  .sm\:mb-80 {
    margin-bottom: 20rem;
  }

  .sm\:ml-80 {
    margin-left: 20rem;
  }

  .sm\:mt-96 {
    margin-top: 24rem;
  }

  .sm\:mr-96 {
    margin-right: 24rem;
  }

  .sm\:mb-96 {
    margin-bottom: 24rem;
  }

  .sm\:ml-96 {
    margin-left: 24rem;
  }

  .sm\:mt-120 {
    margin-top: 30rem;
  }

  .sm\:mr-120 {
    margin-right: 30rem;
  }

  .sm\:mb-120 {
    margin-bottom: 30rem;
  }

  .sm\:ml-120 {
    margin-left: 30rem;
  }

  .sm\:mt-160 {
    margin-top: 40rem;
  }

  .sm\:mr-160 {
    margin-right: 40rem;
  }

  .sm\:mb-160 {
    margin-bottom: 40rem;
  }

  .sm\:ml-160 {
    margin-left: 40rem;
  }

  .sm\:mt-auto {
    margin-top: auto;
  }

  .sm\:mr-auto {
    margin-right: auto;
  }

  .sm\:mb-auto {
    margin-bottom: auto;
  }

  .sm\:ml-auto {
    margin-left: auto;
  }

  .sm\:mt-px {
    margin-top: 1px;
  }

  .sm\:mr-px {
    margin-right: 1px;
  }

  .sm\:mb-px {
    margin-bottom: 1px;
  }

  .sm\:ml-px {
    margin-left: 1px;
  }

  .sm\:max-h-0 {
    max-height: 0;
  }

  .sm\:max-h-1 {
    max-height: .25rem;
  }

  .sm\:max-h-2 {
    max-height: .5rem;
  }

  .sm\:max-h-3 {
    max-height: .75rem;
  }

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

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

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

  .sm\:max-h-7 {
    max-height: 1.75rem;
  }

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

  .sm\:max-h-9 {
    max-height: 2.25rem;
  }

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

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

  .sm\:max-h-14 {
    max-height: 3.5rem;
  }

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

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

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

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

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

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

  .sm\:max-h-70 {
    max-height: 18rem;
  }

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

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

  .sm\:max-h-112 {
    max-height: 28rem;
  }

  .sm\:max-h-128 {
    max-height: 32rem;
  }

  .sm\:max-h-600 {
    max-height: 600px;
  }

  .sm\:max-h-700 {
    max-height: 700px;
  }

  .sm\:max-h-unset {
    max-height: unset;
  }

  .sm\:max-h-none {
    max-height: none;
  }

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

  .sm\:max-h-2px {
    max-height: 2px;
  }

  .sm\:max-h-100px {
    max-height: 100px;
  }

  .sm\:max-h-125px {
    max-height: 125px;
  }

  .sm\:max-h-150px {
    max-height: 150px;
  }

  .sm\:max-h-175px {
    max-height: 175px;
  }

  .sm\:max-h-200px {
    max-height: 200px;
  }

  .sm\:max-h-225px {
    max-height: 225px;
  }

  .sm\:max-h-250px {
    max-height: 250px;
  }

  .sm\:max-h-275px {
    max-height: 275px;
  }

  .sm\:max-h-300px {
    max-height: 300px;
  }

  .sm\:max-h-325px {
    max-height: 325px;
  }

  .sm\:max-h-350px {
    max-height: 350px;
  }

  .sm\:max-h-375px {
    max-height: 375px;
  }

  .sm\:max-h-400px {
    max-height: 400px;
  }

  .sm\:max-h-450px {
    max-height: 450px;
  }

  .sm\:max-h-475px {
    max-height: 475px;
  }

  .sm\:max-h-500px {
    max-height: 500px;
  }

  .sm\:max-h-768px {
    max-height: 768px;
  }

  .sm\:max-h-800px {
    max-height: 800px;
  }

  .sm\:max-h-900px {
    max-height: 900px;
  }

  .sm\:max-h-992px {
    max-height: 992px;
  }

  .sm\:max-h-1000px {
    max-height: 1000px;
  }

  .sm\:max-h-1140px {
    max-height: 1140px;
  }

  .sm\:max-h-1200px {
    max-height: 1200px;
  }

  .sm\:max-h-1460px {
    max-height: 1460px;
  }

  .sm\:max-h-1600px {
    max-height: 1600px;
  }

  .sm\:max-h-screen {
    max-height: 100vw;
  }

  .sm\:max-h-half {
    max-height: 50%;
  }

  .sm\:max-h-quarter {
    max-height: 75%;
  }

  .sm\:max-h-85\% {
    max-height: 85%;
  }

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

  .sm\:max-w-0 {
    max-width: 0;
  }

  .sm\:max-w-1 {
    max-width: .25rem;
  }

  .sm\:max-w-2 {
    max-width: .5rem;
  }

  .sm\:max-w-3 {
    max-width: .75rem;
  }

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

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

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

  .sm\:max-w-7 {
    max-width: 1.75rem;
  }

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

  .sm\:max-w-9 {
    max-width: 2.25rem;
  }

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

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

  .sm\:max-w-14 {
    max-width: 3.5rem;
  }

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

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

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

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

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

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

  .sm\:max-w-70 {
    max-width: 18rem;
  }

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

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

  .sm\:max-w-112 {
    max-width: 28rem;
  }

  .sm\:max-w-128 {
    max-width: 32rem;
  }

  .sm\:max-w-600 {
    max-width: 600px;
  }

  .sm\:max-w-700 {
    max-width: 700px;
  }

  .sm\:max-w-none {
    max-width: none;
  }

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

  .sm\:max-w-2px {
    max-width: 2px;
  }

  .sm\:max-w-100px {
    max-width: 100px;
  }

  .sm\:max-w-125px {
    max-width: 125px;
  }

  .sm\:max-w-150px {
    max-width: 150px;
  }

  .sm\:max-w-175px {
    max-width: 175px;
  }

  .sm\:max-w-200px {
    max-width: 200px;
  }

  .sm\:max-w-225px {
    max-width: 225px;
  }

  .sm\:max-w-250px {
    max-width: 250px;
  }

  .sm\:max-w-275px {
    max-width: 275px;
  }

  .sm\:max-w-300px {
    max-width: 300px;
  }

  .sm\:max-w-325px {
    max-width: 325px;
  }

  .sm\:max-w-350px {
    max-width: 350px;
  }

  .sm\:max-w-375px {
    max-width: 375px;
  }

  .sm\:max-w-400px {
    max-width: 400px;
  }

  .sm\:max-w-450px {
    max-width: 450px;
  }

  .sm\:max-w-475px {
    max-width: 475px;
  }

  .sm\:max-w-500px {
    max-width: 500px;
  }

  .sm\:max-w-768px {
    max-width: 768px;
  }

  .sm\:max-w-800px {
    max-width: 800px;
  }

  .sm\:max-w-900px {
    max-width: 900px;
  }

  .sm\:max-w-992px {
    max-width: 992px;
  }

  .sm\:max-w-1000px {
    max-width: 1000px;
  }

  .sm\:max-w-1140px {
    max-width: 1140px;
  }

  .sm\:max-w-1200px {
    max-width: 1200px;
  }

  .sm\:max-w-1460px {
    max-width: 1460px;
  }

  .sm\:max-w-1600px {
    max-width: 1600px;
  }

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

  .sm\:max-w-half {
    max-width: 50%;
  }

  .sm\:max-w-quarter {
    max-width: 75%;
  }

  .sm\:max-w-85\% {
    max-width: 85%;
  }

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

  .sm\:min-h-0 {
    min-height: 0;
  }

  .sm\:min-h-1 {
    min-height: .25rem;
  }

  .sm\:min-h-2 {
    min-height: .5rem;
  }

  .sm\:min-h-3 {
    min-height: .75rem;
  }

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

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

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

  .sm\:min-h-7 {
    min-height: 1.75rem;
  }

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

  .sm\:min-h-9 {
    min-height: 2.25rem;
  }

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

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

  .sm\:min-h-14 {
    min-height: 3.5rem;
  }

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

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

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

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

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

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

  .sm\:min-h-70 {
    min-height: 18rem;
  }

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

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

  .sm\:min-h-112 {
    min-height: 28rem;
  }

  .sm\:min-h-128 {
    min-height: 32rem;
  }

  .sm\:min-h-600 {
    min-height: 600px;
  }

  .sm\:min-h-700 {
    min-height: 700px;
  }

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

  .sm\:min-h-2px {
    min-height: 2px;
  }

  .sm\:min-h-100px {
    min-height: 100px;
  }

  .sm\:min-h-125px {
    min-height: 125px;
  }

  .sm\:min-h-150px {
    min-height: 150px;
  }

  .sm\:min-h-175px {
    min-height: 175px;
  }

  .sm\:min-h-200px {
    min-height: 200px;
  }

  .sm\:min-h-225px {
    min-height: 225px;
  }

  .sm\:min-h-250px {
    min-height: 250px;
  }

  .sm\:min-h-275px {
    min-height: 275px;
  }

  .sm\:min-h-300px {
    min-height: 300px;
  }

  .sm\:min-h-325px {
    min-height: 325px;
  }

  .sm\:min-h-350px {
    min-height: 350px;
  }

  .sm\:min-h-375px {
    min-height: 375px;
  }

  .sm\:min-h-400px {
    min-height: 400px;
  }

  .sm\:min-h-450px {
    min-height: 450px;
  }

  .sm\:min-h-475px {
    min-height: 475px;
  }

  .sm\:min-h-500px {
    min-height: 500px;
  }

  .sm\:min-h-768px {
    min-height: 768px;
  }

  .sm\:min-h-800px {
    min-height: 800px;
  }

  .sm\:min-h-900px {
    min-height: 900px;
  }

  .sm\:min-h-992px {
    min-height: 992px;
  }

  .sm\:min-h-1000px {
    min-height: 1000px;
  }

  .sm\:min-h-1140px {
    min-height: 1140px;
  }

  .sm\:min-h-1200px {
    min-height: 1200px;
  }

  .sm\:min-h-1460px {
    min-height: 1460px;
  }

  .sm\:min-h-1600px {
    min-height: 1600px;
  }

  .sm\:min-h-screen {
    min-height: 100vw;
  }

  .sm\:min-h-half {
    min-height: 50%;
  }

  .sm\:min-h-quarter {
    min-height: 75%;
  }

  .sm\:min-h-85\% {
    min-height: 85%;
  }

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

  .sm\:min-w-0 {
    min-width: 0;
  }

  .sm\:min-w-1 {
    min-width: .25rem;
  }

  .sm\:min-w-2 {
    min-width: .5rem;
  }

  .sm\:min-w-3 {
    min-width: .75rem;
  }

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

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

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

  .sm\:min-w-7 {
    min-width: 1.75rem;
  }

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

  .sm\:min-w-9 {
    min-width: 2.25rem;
  }

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

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

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

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

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

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

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

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

  .sm\:min-w-70 {
    min-width: 18rem;
  }

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

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

  .sm\:min-w-112 {
    min-width: 28rem;
  }

  .sm\:min-w-128 {
    min-width: 32rem;
  }

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

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

  .sm\:min-w-2px {
    min-width: 2px;
  }

  .sm\:min-w-100px {
    min-width: 100px;
  }

  .sm\:min-w-125px {
    min-width: 125px;
  }

  .sm\:min-w-150px {
    min-width: 150px;
  }

  .sm\:min-w-175px {
    min-width: 175px;
  }

  .sm\:min-w-200px {
    min-width: 200px;
  }

  .sm\:min-w-225px {
    min-width: 225px;
  }

  .sm\:min-w-250px {
    min-width: 250px;
  }

  .sm\:min-w-275px {
    min-width: 275px;
  }

  .sm\:min-w-300px {
    min-width: 300px;
  }

  .sm\:min-w-325px {
    min-width: 325px;
  }

  .sm\:min-w-350px {
    min-width: 350px;
  }

  .sm\:min-w-375px {
    min-width: 375px;
  }

  .sm\:min-w-400px {
    min-width: 400px;
  }

  .sm\:min-w-450px {
    min-width: 450px;
  }

  .sm\:min-w-475px {
    min-width: 475px;
  }

  .sm\:min-w-500px {
    min-width: 500px;
  }

  .sm\:min-w-576px {
    min-width: 576px;
  }

  .sm\:min-w-600px {
    min-width: 600px;
  }

  .sm\:min-w-700px {
    min-width: 700px;
  }

  .sm\:min-w-768px {
    min-width: 768px;
  }

  .sm\:min-w-800px {
    min-width: 800px;
  }

  .sm\:min-w-900px {
    min-width: 900px;
  }

  .sm\:min-w-992px {
    min-width: 992px;
  }

  .sm\:min-w-1000px {
    min-width: 1000px;
  }

  .sm\:min-w-1140px {
    min-width: 1140px;
  }

  .sm\:min-w-1200px {
    min-width: 1200px;
  }

  .sm\:min-w-1460px {
    min-width: 1460px;
  }

  .sm\:min-w-1600px {
    min-width: 1600px;
  }

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

  .sm\:min-w-half {
    min-width: 50%;
  }

  .sm\:min-w-quarter {
    min-width: 75%;
  }

  .sm\:min-w-85\% {
    min-width: 85%;
  }

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

  .sm\:-m-0 {
    margin: 0;
  }

  .sm\:-m-1 {
    margin: -0.25rem;
  }

  .sm\:-m-2 {
    margin: -0.5rem;
  }

  .sm\:-m-3 {
    margin: -0.75rem;
  }

  .sm\:-m-4 {
    margin: -1rem;
  }

  .sm\:-m-5 {
    margin: -1.25rem;
  }

  .sm\:-m-6 {
    margin: -1.5rem;
  }

  .sm\:-m-7 {
    margin: -1.75rem;
  }

  .sm\:-m-8 {
    margin: -2rem;
  }

  .sm\:-m-9 {
    margin: -2.25rem;
  }

  .sm\:-m-10 {
    margin: -2.5rem;
  }

  .sm\:-m-12 {
    margin: -3rem;
  }

  .sm\:-m-16 {
    margin: -4rem;
  }

  .sm\:-m-20 {
    margin: -5rem;
  }

  .sm\:-m-24 {
    margin: -6rem;
  }

  .sm\:-m-28 {
    margin: -7rem;
  }

  .sm\:-m-32 {
    margin: -8rem;
  }

  .sm\:-m-36 {
    margin: -9rem;
  }

  .sm\:-m-40 {
    margin: -10rem;
  }

  .sm\:-m-44 {
    margin: -11rem;
  }

  .sm\:-m-48 {
    margin: -12rem;
  }

  .sm\:-m-56 {
    margin: -14rem;
  }

  .sm\:-m-60 {
    margin: -15rem;
  }

  .sm\:-m-64 {
    margin: -16rem;
  }

  .sm\:-m-80 {
    margin: -20rem;
  }

  .sm\:-m-96 {
    margin: -24rem;
  }

  .sm\:-m-120 {
    margin: -30rem;
  }

  .sm\:-m-160 {
    margin: -40rem;
  }

  .sm\:-m-auto {
    margin: -auto;
  }

  .sm\:-m-px {
    margin: -1px;
  }

  .sm\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .sm\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .sm\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .sm\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .sm\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .sm\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .sm\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .sm\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .sm\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .sm\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .sm\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .sm\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .sm\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .sm\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .sm\:-my-7 {
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .sm\:-mx-7 {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .sm\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .sm\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .sm\:-my-9 {
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .sm\:-mx-9 {
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .sm\:-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .sm\:-mx-10 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .sm\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .sm\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .sm\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .sm\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .sm\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .sm\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .sm\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .sm\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .sm\:-my-28 {
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .sm\:-mx-28 {
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .sm\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .sm\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .sm\:-my-36 {
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .sm\:-mx-36 {
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .sm\:-my-40 {
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .sm\:-mx-40 {
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .sm\:-my-44 {
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .sm\:-mx-44 {
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .sm\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .sm\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .sm\:-my-56 {
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .sm\:-mx-56 {
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .sm\:-my-60 {
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .sm\:-mx-60 {
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .sm\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .sm\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .sm\:-my-80 {
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .sm\:-mx-80 {
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .sm\:-my-96 {
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .sm\:-mx-96 {
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .sm\:-my-120 {
    margin-top: -30rem;
    margin-bottom: -30rem;
  }

  .sm\:-mx-120 {
    margin-left: -30rem;
    margin-right: -30rem;
  }

  .sm\:-my-160 {
    margin-top: -40rem;
    margin-bottom: -40rem;
  }

  .sm\:-mx-160 {
    margin-left: -40rem;
    margin-right: -40rem;
  }

  .sm\:-my-auto {
    margin-top: -auto;
    margin-bottom: -auto;
  }

  .sm\:-mx-auto {
    margin-left: -auto;
    margin-right: -auto;
  }

  .sm\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .sm\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .sm\:-mt-0 {
    margin-top: 0;
  }

  .sm\:-mr-0 {
    margin-right: 0;
  }

  .sm\:-mb-0 {
    margin-bottom: 0;
  }

  .sm\:-ml-0 {
    margin-left: 0;
  }

  .sm\:-mt-1 {
    margin-top: -0.25rem;
  }

  .sm\:-mr-1 {
    margin-right: -0.25rem;
  }

  .sm\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .sm\:-ml-1 {
    margin-left: -0.25rem;
  }

  .sm\:-mt-2 {
    margin-top: -0.5rem;
  }

  .sm\:-mr-2 {
    margin-right: -0.5rem;
  }

  .sm\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .sm\:-ml-2 {
    margin-left: -0.5rem;
  }

  .sm\:-mt-3 {
    margin-top: -0.75rem;
  }

  .sm\:-mr-3 {
    margin-right: -0.75rem;
  }

  .sm\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .sm\:-ml-3 {
    margin-left: -0.75rem;
  }

  .sm\:-mt-4 {
    margin-top: -1rem;
  }

  .sm\:-mr-4 {
    margin-right: -1rem;
  }

  .sm\:-mb-4 {
    margin-bottom: -1rem;
  }

  .sm\:-ml-4 {
    margin-left: -1rem;
  }

  .sm\:-mt-5 {
    margin-top: -1.25rem;
  }

  .sm\:-mr-5 {
    margin-right: -1.25rem;
  }

  .sm\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .sm\:-ml-5 {
    margin-left: -1.25rem;
  }

  .sm\:-mt-6 {
    margin-top: -1.5rem;
  }

  .sm\:-mr-6 {
    margin-right: -1.5rem;
  }

  .sm\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .sm\:-ml-6 {
    margin-left: -1.5rem;
  }

  .sm\:-mt-7 {
    margin-top: -1.75rem;
  }

  .sm\:-mr-7 {
    margin-right: -1.75rem;
  }

  .sm\:-mb-7 {
    margin-bottom: -1.75rem;
  }

  .sm\:-ml-7 {
    margin-left: -1.75rem;
  }

  .sm\:-mt-8 {
    margin-top: -2rem;
  }

  .sm\:-mr-8 {
    margin-right: -2rem;
  }

  .sm\:-mb-8 {
    margin-bottom: -2rem;
  }

  .sm\:-ml-8 {
    margin-left: -2rem;
  }

  .sm\:-mt-9 {
    margin-top: -2.25rem;
  }

  .sm\:-mr-9 {
    margin-right: -2.25rem;
  }

  .sm\:-mb-9 {
    margin-bottom: -2.25rem;
  }

  .sm\:-ml-9 {
    margin-left: -2.25rem;
  }

  .sm\:-mt-10 {
    margin-top: -2.5rem;
  }

  .sm\:-mr-10 {
    margin-right: -2.5rem;
  }

  .sm\:-mb-10 {
    margin-bottom: -2.5rem;
  }

  .sm\:-ml-10 {
    margin-left: -2.5rem;
  }

  .sm\:-mt-12 {
    margin-top: -3rem;
  }

  .sm\:-mr-12 {
    margin-right: -3rem;
  }

  .sm\:-mb-12 {
    margin-bottom: -3rem;
  }

  .sm\:-ml-12 {
    margin-left: -3rem;
  }

  .sm\:-mt-16 {
    margin-top: -4rem;
  }

  .sm\:-mr-16 {
    margin-right: -4rem;
  }

  .sm\:-mb-16 {
    margin-bottom: -4rem;
  }

  .sm\:-ml-16 {
    margin-left: -4rem;
  }

  .sm\:-mt-20 {
    margin-top: -5rem;
  }

  .sm\:-mr-20 {
    margin-right: -5rem;
  }

  .sm\:-mb-20 {
    margin-bottom: -5rem;
  }

  .sm\:-ml-20 {
    margin-left: -5rem;
  }

  .sm\:-mt-24 {
    margin-top: -6rem;
  }

  .sm\:-mr-24 {
    margin-right: -6rem;
  }

  .sm\:-mb-24 {
    margin-bottom: -6rem;
  }

  .sm\:-ml-24 {
    margin-left: -6rem;
  }

  .sm\:-mt-28 {
    margin-top: -7rem;
  }

  .sm\:-mr-28 {
    margin-right: -7rem;
  }

  .sm\:-mb-28 {
    margin-bottom: -7rem;
  }

  .sm\:-ml-28 {
    margin-left: -7rem;
  }

  .sm\:-mt-32 {
    margin-top: -8rem;
  }

  .sm\:-mr-32 {
    margin-right: -8rem;
  }

  .sm\:-mb-32 {
    margin-bottom: -8rem;
  }

  .sm\:-ml-32 {
    margin-left: -8rem;
  }

  .sm\:-mt-36 {
    margin-top: -9rem;
  }

  .sm\:-mr-36 {
    margin-right: -9rem;
  }

  .sm\:-mb-36 {
    margin-bottom: -9rem;
  }

  .sm\:-ml-36 {
    margin-left: -9rem;
  }

  .sm\:-mt-40 {
    margin-top: -10rem;
  }

  .sm\:-mr-40 {
    margin-right: -10rem;
  }

  .sm\:-mb-40 {
    margin-bottom: -10rem;
  }

  .sm\:-ml-40 {
    margin-left: -10rem;
  }

  .sm\:-mt-44 {
    margin-top: -11rem;
  }

  .sm\:-mr-44 {
    margin-right: -11rem;
  }

  .sm\:-mb-44 {
    margin-bottom: -11rem;
  }

  .sm\:-ml-44 {
    margin-left: -11rem;
  }

  .sm\:-mt-48 {
    margin-top: -12rem;
  }

  .sm\:-mr-48 {
    margin-right: -12rem;
  }

  .sm\:-mb-48 {
    margin-bottom: -12rem;
  }

  .sm\:-ml-48 {
    margin-left: -12rem;
  }

  .sm\:-mt-56 {
    margin-top: -14rem;
  }

  .sm\:-mr-56 {
    margin-right: -14rem;
  }

  .sm\:-mb-56 {
    margin-bottom: -14rem;
  }

  .sm\:-ml-56 {
    margin-left: -14rem;
  }

  .sm\:-mt-60 {
    margin-top: -15rem;
  }

  .sm\:-mr-60 {
    margin-right: -15rem;
  }

  .sm\:-mb-60 {
    margin-bottom: -15rem;
  }

  .sm\:-ml-60 {
    margin-left: -15rem;
  }

  .sm\:-mt-64 {
    margin-top: -16rem;
  }

  .sm\:-mr-64 {
    margin-right: -16rem;
  }

  .sm\:-mb-64 {
    margin-bottom: -16rem;
  }

  .sm\:-ml-64 {
    margin-left: -16rem;
  }

  .sm\:-mt-80 {
    margin-top: -20rem;
  }

  .sm\:-mr-80 {
    margin-right: -20rem;
  }

  .sm\:-mb-80 {
    margin-bottom: -20rem;
  }

  .sm\:-ml-80 {
    margin-left: -20rem;
  }

  .sm\:-mt-96 {
    margin-top: -24rem;
  }

  .sm\:-mr-96 {
    margin-right: -24rem;
  }

  .sm\:-mb-96 {
    margin-bottom: -24rem;
  }

  .sm\:-ml-96 {
    margin-left: -24rem;
  }

  .sm\:-mt-120 {
    margin-top: -30rem;
  }

  .sm\:-mr-120 {
    margin-right: -30rem;
  }

  .sm\:-mb-120 {
    margin-bottom: -30rem;
  }

  .sm\:-ml-120 {
    margin-left: -30rem;
  }

  .sm\:-mt-160 {
    margin-top: -40rem;
  }

  .sm\:-mr-160 {
    margin-right: -40rem;
  }

  .sm\:-mb-160 {
    margin-bottom: -40rem;
  }

  .sm\:-ml-160 {
    margin-left: -40rem;
  }

  .sm\:-mt-auto {
    margin-top: -auto;
  }

  .sm\:-mr-auto {
    margin-right: -auto;
  }

  .sm\:-mb-auto {
    margin-bottom: -auto;
  }

  .sm\:-ml-auto {
    margin-left: -auto;
  }

  .sm\:-mt-px {
    margin-top: -1px;
  }

  .sm\:-mr-px {
    margin-right: -1px;
  }

  .sm\:-mb-px {
    margin-bottom: -1px;
  }

  .sm\:-ml-px {
    margin-left: -1px;
  }

  .sm\:opacity-0 {
    opacity: 0;
  }

  .sm\:opacity-25 {
    opacity: .25;
  }

  .sm\:opacity-50 {
    opacity: .5;
  }

  .sm\:opacity-75 {
    opacity: .75;
  }

  .sm\:opacity-100 {
    opacity: 1;
  }

  .sm\:overflow-auto {
    overflow: auto;
  }

  .sm\:overflow-hidden {
    overflow: hidden;
  }

  .sm\:overflow-visible {
    overflow: visible;
  }

  .sm\:overflow-scroll {
    overflow: scroll;
  }

  .sm\:overflow-x-auto {
    overflow-x: auto;
  }

  .sm\:overflow-y-auto {
    overflow-y: auto;
  }

  .sm\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .sm\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .sm\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .sm\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .sm\:p-0 {
    padding: 0;
  }

  .sm\:p-1 {
    padding: .25rem;
  }

  .sm\:p-2 {
    padding: .5rem;
  }

  .sm\:p-3 {
    padding: .75rem;
  }

  .sm\:p-4 {
    padding: 1rem;
  }

  .sm\:p-5 {
    padding: 1.25rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:p-7 {
    padding: 1.75rem;
  }

  .sm\:p-8 {
    padding: 2rem;
  }

  .sm\:p-9 {
    padding: 2.25rem;
  }

  .sm\:p-10 {
    padding: 2.5rem;
  }

  .sm\:p-12 {
    padding: 3rem;
  }

  .sm\:p-16 {
    padding: 4rem;
  }

  .sm\:p-20 {
    padding: 5rem;
  }

  .sm\:p-24 {
    padding: 6rem;
  }

  .sm\:p-28 {
    padding: 7rem;
  }

  .sm\:p-32 {
    padding: 8rem;
  }

  .sm\:p-36 {
    padding: 9rem;
  }

  .sm\:p-40 {
    padding: 10rem;
  }

  .sm\:p-44 {
    padding: 11rem;
  }

  .sm\:p-48 {
    padding: 12rem;
  }

  .sm\:p-56 {
    padding: 14rem;
  }

  .sm\:p-60 {
    padding: 15rem;
  }

  .sm\:p-64 {
    padding: 16rem;
  }

  .sm\:p-80 {
    padding: 20rem;
  }

  .sm\:p-96 {
    padding: 24rem;
  }

  .sm\:p-120 {
    padding: 30rem;
  }

  .sm\:p-160 {
    padding: 40rem;
  }

  .sm\:p-px {
    padding: 1px;
  }

  .sm\:p-10\% {
    padding: 10%;
  }

  .sm\:p-20\% {
    padding: 20%;
  }

  .sm\:p-30\% {
    padding: 30%;
  }

  .sm\:p-40\% {
    padding: 40%;
  }

  .sm\:p-50\% {
    padding: 50%;
  }

  .sm\:p-60\% {
    padding: 60%;
  }

  .sm\:p-70\% {
    padding: 70%;
  }

  .sm\:p-80\% {
    padding: 80%;
  }

  .sm\:p-90\% {
    padding: 90%;
  }

  .sm\:p-1vw {
    padding: 1vw;
  }

  .sm\:p-2vw {
    padding: 2vw;
  }

  .sm\:p-3vw {
    padding: 3vw;
  }

  .sm\:p-4vw {
    padding: 4vw;
  }

  .sm\:p-5vw {
    padding: 5vw;
  }

  .sm\:p-6vw {
    padding: 6vw;
  }

  .sm\:p-7vw {
    padding: 7vw;
  }

  .sm\:p-8vw {
    padding: 8vw;
  }

  .sm\:p-9vw {
    padding: 9vw;
  }

  .sm\:p-10vw {
    padding: 10vw;
  }

  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .sm\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .sm\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .sm\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .sm\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .sm\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .sm\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .sm\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .sm\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .sm\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .sm\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .sm\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .sm\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .sm\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .sm\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .sm\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .sm\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .sm\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .sm\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .sm\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .sm\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .sm\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .sm\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .sm\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .sm\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .sm\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .sm\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .sm\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .sm\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .sm\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .sm\:py-120 {
    padding-top: 30rem;
    padding-bottom: 30rem;
  }

  .sm\:px-120 {
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .sm\:py-160 {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }

  .sm\:px-160 {
    padding-left: 40rem;
    padding-right: 40rem;
  }

  .sm\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .sm\:py-10\% {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .sm\:px-10\% {
    padding-left: 10%;
    padding-right: 10%;
  }

  .sm\:py-20\% {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .sm\:px-20\% {
    padding-left: 20%;
    padding-right: 20%;
  }

  .sm\:py-30\% {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  .sm\:px-30\% {
    padding-left: 30%;
    padding-right: 30%;
  }

  .sm\:py-40\% {
    padding-top: 40%;
    padding-bottom: 40%;
  }

  .sm\:px-40\% {
    padding-left: 40%;
    padding-right: 40%;
  }

  .sm\:py-50\% {
    padding-top: 50%;
    padding-bottom: 50%;
  }

  .sm\:px-50\% {
    padding-left: 50%;
    padding-right: 50%;
  }

  .sm\:py-60\% {
    padding-top: 60%;
    padding-bottom: 60%;
  }

  .sm\:px-60\% {
    padding-left: 60%;
    padding-right: 60%;
  }

  .sm\:py-70\% {
    padding-top: 70%;
    padding-bottom: 70%;
  }

  .sm\:px-70\% {
    padding-left: 70%;
    padding-right: 70%;
  }

  .sm\:py-80\% {
    padding-top: 80%;
    padding-bottom: 80%;
  }

  .sm\:px-80\% {
    padding-left: 80%;
    padding-right: 80%;
  }

  .sm\:py-90\% {
    padding-top: 90%;
    padding-bottom: 90%;
  }

  .sm\:px-90\% {
    padding-left: 90%;
    padding-right: 90%;
  }

  .sm\:py-1vw {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .sm\:px-1vw {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .sm\:py-2vw {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .sm\:px-2vw {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .sm\:py-3vw {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .sm\:px-3vw {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .sm\:py-4vw {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .sm\:px-4vw {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .sm\:py-5vw {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .sm\:px-5vw {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sm\:py-6vw {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .sm\:px-6vw {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .sm\:py-7vw {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .sm\:px-7vw {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .sm\:py-8vw {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .sm\:px-8vw {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .sm\:py-9vw {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .sm\:px-9vw {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .sm\:py-10vw {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .sm\:px-10vw {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .sm\:pt-0 {
    padding-top: 0;
  }

  .sm\:pr-0 {
    padding-right: 0;
  }

  .sm\:pb-0 {
    padding-bottom: 0;
  }

  .sm\:pl-0 {
    padding-left: 0;
  }

  .sm\:pt-1 {
    padding-top: .25rem;
  }

  .sm\:pr-1 {
    padding-right: .25rem;
  }

  .sm\:pb-1 {
    padding-bottom: .25rem;
  }

  .sm\:pl-1 {
    padding-left: .25rem;
  }

  .sm\:pt-2 {
    padding-top: .5rem;
  }

  .sm\:pr-2 {
    padding-right: .5rem;
  }

  .sm\:pb-2 {
    padding-bottom: .5rem;
  }

  .sm\:pl-2 {
    padding-left: .5rem;
  }

  .sm\:pt-3 {
    padding-top: .75rem;
  }

  .sm\:pr-3 {
    padding-right: .75rem;
  }

  .sm\:pb-3 {
    padding-bottom: .75rem;
  }

  .sm\:pl-3 {
    padding-left: .75rem;
  }

  .sm\:pt-4 {
    padding-top: 1rem;
  }

  .sm\:pr-4 {
    padding-right: 1rem;
  }

  .sm\:pb-4 {
    padding-bottom: 1rem;
  }

  .sm\:pl-4 {
    padding-left: 1rem;
  }

  .sm\:pt-5 {
    padding-top: 1.25rem;
  }

  .sm\:pr-5 {
    padding-right: 1.25rem;
  }

  .sm\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .sm\:pl-5 {
    padding-left: 1.25rem;
  }

  .sm\:pt-6 {
    padding-top: 1.5rem;
  }

  .sm\:pr-6 {
    padding-right: 1.5rem;
  }

  .sm\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .sm\:pl-6 {
    padding-left: 1.5rem;
  }

  .sm\:pt-7 {
    padding-top: 1.75rem;
  }

  .sm\:pr-7 {
    padding-right: 1.75rem;
  }

  .sm\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .sm\:pl-7 {
    padding-left: 1.75rem;
  }

  .sm\:pt-8 {
    padding-top: 2rem;
  }

  .sm\:pr-8 {
    padding-right: 2rem;
  }

  .sm\:pb-8 {
    padding-bottom: 2rem;
  }

  .sm\:pl-8 {
    padding-left: 2rem;
  }

  .sm\:pt-9 {
    padding-top: 2.25rem;
  }

  .sm\:pr-9 {
    padding-right: 2.25rem;
  }

  .sm\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .sm\:pl-9 {
    padding-left: 2.25rem;
  }

  .sm\:pt-10 {
    padding-top: 2.5rem;
  }

  .sm\:pr-10 {
    padding-right: 2.5rem;
  }

  .sm\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .sm\:pl-10 {
    padding-left: 2.5rem;
  }

  .sm\:pt-12 {
    padding-top: 3rem;
  }

  .sm\:pr-12 {
    padding-right: 3rem;
  }

  .sm\:pb-12 {
    padding-bottom: 3rem;
  }

  .sm\:pl-12 {
    padding-left: 3rem;
  }

  .sm\:pt-16 {
    padding-top: 4rem;
  }

  .sm\:pr-16 {
    padding-right: 4rem;
  }

  .sm\:pb-16 {
    padding-bottom: 4rem;
  }

  .sm\:pl-16 {
    padding-left: 4rem;
  }

  .sm\:pt-20 {
    padding-top: 5rem;
  }

  .sm\:pr-20 {
    padding-right: 5rem;
  }

  .sm\:pb-20 {
    padding-bottom: 5rem;
  }

  .sm\:pl-20 {
    padding-left: 5rem;
  }

  .sm\:pt-24 {
    padding-top: 6rem;
  }

  .sm\:pr-24 {
    padding-right: 6rem;
  }

  .sm\:pb-24 {
    padding-bottom: 6rem;
  }

  .sm\:pl-24 {
    padding-left: 6rem;
  }

  .sm\:pt-28 {
    padding-top: 7rem;
  }

  .sm\:pr-28 {
    padding-right: 7rem;
  }

  .sm\:pb-28 {
    padding-bottom: 7rem;
  }

  .sm\:pl-28 {
    padding-left: 7rem;
  }

  .sm\:pt-32 {
    padding-top: 8rem;
  }

  .sm\:pr-32 {
    padding-right: 8rem;
  }

  .sm\:pb-32 {
    padding-bottom: 8rem;
  }

  .sm\:pl-32 {
    padding-left: 8rem;
  }

  .sm\:pt-36 {
    padding-top: 9rem;
  }

  .sm\:pr-36 {
    padding-right: 9rem;
  }

  .sm\:pb-36 {
    padding-bottom: 9rem;
  }

  .sm\:pl-36 {
    padding-left: 9rem;
  }

  .sm\:pt-40 {
    padding-top: 10rem;
  }

  .sm\:pr-40 {
    padding-right: 10rem;
  }

  .sm\:pb-40 {
    padding-bottom: 10rem;
  }

  .sm\:pl-40 {
    padding-left: 10rem;
  }

  .sm\:pt-44 {
    padding-top: 11rem;
  }

  .sm\:pr-44 {
    padding-right: 11rem;
  }

  .sm\:pb-44 {
    padding-bottom: 11rem;
  }

  .sm\:pl-44 {
    padding-left: 11rem;
  }

  .sm\:pt-48 {
    padding-top: 12rem;
  }

  .sm\:pr-48 {
    padding-right: 12rem;
  }

  .sm\:pb-48 {
    padding-bottom: 12rem;
  }

  .sm\:pl-48 {
    padding-left: 12rem;
  }

  .sm\:pt-56 {
    padding-top: 14rem;
  }

  .sm\:pr-56 {
    padding-right: 14rem;
  }

  .sm\:pb-56 {
    padding-bottom: 14rem;
  }

  .sm\:pl-56 {
    padding-left: 14rem;
  }

  .sm\:pt-60 {
    padding-top: 15rem;
  }

  .sm\:pr-60 {
    padding-right: 15rem;
  }

  .sm\:pb-60 {
    padding-bottom: 15rem;
  }

  .sm\:pl-60 {
    padding-left: 15rem;
  }

  .sm\:pt-64 {
    padding-top: 16rem;
  }

  .sm\:pr-64 {
    padding-right: 16rem;
  }

  .sm\:pb-64 {
    padding-bottom: 16rem;
  }

  .sm\:pl-64 {
    padding-left: 16rem;
  }

  .sm\:pt-80 {
    padding-top: 20rem;
  }

  .sm\:pr-80 {
    padding-right: 20rem;
  }

  .sm\:pb-80 {
    padding-bottom: 20rem;
  }

  .sm\:pl-80 {
    padding-left: 20rem;
  }

  .sm\:pt-96 {
    padding-top: 24rem;
  }

  .sm\:pr-96 {
    padding-right: 24rem;
  }

  .sm\:pb-96 {
    padding-bottom: 24rem;
  }

  .sm\:pl-96 {
    padding-left: 24rem;
  }

  .sm\:pt-120 {
    padding-top: 30rem;
  }

  .sm\:pr-120 {
    padding-right: 30rem;
  }

  .sm\:pb-120 {
    padding-bottom: 30rem;
  }

  .sm\:pl-120 {
    padding-left: 30rem;
  }

  .sm\:pt-160 {
    padding-top: 40rem;
  }

  .sm\:pr-160 {
    padding-right: 40rem;
  }

  .sm\:pb-160 {
    padding-bottom: 40rem;
  }

  .sm\:pl-160 {
    padding-left: 40rem;
  }

  .sm\:pt-px {
    padding-top: 1px;
  }

  .sm\:pr-px {
    padding-right: 1px;
  }

  .sm\:pb-px {
    padding-bottom: 1px;
  }

  .sm\:pl-px {
    padding-left: 1px;
  }

  .sm\:pt-10\% {
    padding-top: 10%;
  }

  .sm\:pr-10\% {
    padding-right: 10%;
  }

  .sm\:pb-10\% {
    padding-bottom: 10%;
  }

  .sm\:pl-10\% {
    padding-left: 10%;
  }

  .sm\:pt-20\% {
    padding-top: 20%;
  }

  .sm\:pr-20\% {
    padding-right: 20%;
  }

  .sm\:pb-20\% {
    padding-bottom: 20%;
  }

  .sm\:pl-20\% {
    padding-left: 20%;
  }

  .sm\:pt-30\% {
    padding-top: 30%;
  }

  .sm\:pr-30\% {
    padding-right: 30%;
  }

  .sm\:pb-30\% {
    padding-bottom: 30%;
  }

  .sm\:pl-30\% {
    padding-left: 30%;
  }

  .sm\:pt-40\% {
    padding-top: 40%;
  }

  .sm\:pr-40\% {
    padding-right: 40%;
  }

  .sm\:pb-40\% {
    padding-bottom: 40%;
  }

  .sm\:pl-40\% {
    padding-left: 40%;
  }

  .sm\:pt-50\% {
    padding-top: 50%;
  }

  .sm\:pr-50\% {
    padding-right: 50%;
  }

  .sm\:pb-50\% {
    padding-bottom: 50%;
  }

  .sm\:pl-50\% {
    padding-left: 50%;
  }

  .sm\:pt-60\% {
    padding-top: 60%;
  }

  .sm\:pr-60\% {
    padding-right: 60%;
  }

  .sm\:pb-60\% {
    padding-bottom: 60%;
  }

  .sm\:pl-60\% {
    padding-left: 60%;
  }

  .sm\:pt-70\% {
    padding-top: 70%;
  }

  .sm\:pr-70\% {
    padding-right: 70%;
  }

  .sm\:pb-70\% {
    padding-bottom: 70%;
  }

  .sm\:pl-70\% {
    padding-left: 70%;
  }

  .sm\:pt-80\% {
    padding-top: 80%;
  }

  .sm\:pr-80\% {
    padding-right: 80%;
  }

  .sm\:pb-80\% {
    padding-bottom: 80%;
  }

  .sm\:pl-80\% {
    padding-left: 80%;
  }

  .sm\:pt-90\% {
    padding-top: 90%;
  }

  .sm\:pr-90\% {
    padding-right: 90%;
  }

  .sm\:pb-90\% {
    padding-bottom: 90%;
  }

  .sm\:pl-90\% {
    padding-left: 90%;
  }

  .sm\:pt-1vw {
    padding-top: 1vw;
  }

  .sm\:pr-1vw {
    padding-right: 1vw;
  }

  .sm\:pb-1vw {
    padding-bottom: 1vw;
  }

  .sm\:pl-1vw {
    padding-left: 1vw;
  }

  .sm\:pt-2vw {
    padding-top: 2vw;
  }

  .sm\:pr-2vw {
    padding-right: 2vw;
  }

  .sm\:pb-2vw {
    padding-bottom: 2vw;
  }

  .sm\:pl-2vw {
    padding-left: 2vw;
  }

  .sm\:pt-3vw {
    padding-top: 3vw;
  }

  .sm\:pr-3vw {
    padding-right: 3vw;
  }

  .sm\:pb-3vw {
    padding-bottom: 3vw;
  }

  .sm\:pl-3vw {
    padding-left: 3vw;
  }

  .sm\:pt-4vw {
    padding-top: 4vw;
  }

  .sm\:pr-4vw {
    padding-right: 4vw;
  }

  .sm\:pb-4vw {
    padding-bottom: 4vw;
  }

  .sm\:pl-4vw {
    padding-left: 4vw;
  }

  .sm\:pt-5vw {
    padding-top: 5vw;
  }

  .sm\:pr-5vw {
    padding-right: 5vw;
  }

  .sm\:pb-5vw {
    padding-bottom: 5vw;
  }

  .sm\:pl-5vw {
    padding-left: 5vw;
  }

  .sm\:pt-6vw {
    padding-top: 6vw;
  }

  .sm\:pr-6vw {
    padding-right: 6vw;
  }

  .sm\:pb-6vw {
    padding-bottom: 6vw;
  }

  .sm\:pl-6vw {
    padding-left: 6vw;
  }

  .sm\:pt-7vw {
    padding-top: 7vw;
  }

  .sm\:pr-7vw {
    padding-right: 7vw;
  }

  .sm\:pb-7vw {
    padding-bottom: 7vw;
  }

  .sm\:pl-7vw {
    padding-left: 7vw;
  }

  .sm\:pt-8vw {
    padding-top: 8vw;
  }

  .sm\:pr-8vw {
    padding-right: 8vw;
  }

  .sm\:pb-8vw {
    padding-bottom: 8vw;
  }

  .sm\:pl-8vw {
    padding-left: 8vw;
  }

  .sm\:pt-9vw {
    padding-top: 9vw;
  }

  .sm\:pr-9vw {
    padding-right: 9vw;
  }

  .sm\:pb-9vw {
    padding-bottom: 9vw;
  }

  .sm\:pl-9vw {
    padding-left: 9vw;
  }

  .sm\:pt-10vw {
    padding-top: 10vw;
  }

  .sm\:pr-10vw {
    padding-right: 10vw;
  }

  .sm\:pb-10vw {
    padding-bottom: 10vw;
  }

  .sm\:pl-10vw {
    padding-left: 10vw;
  }

  .sm\:hover\:p-0:hover {
    padding: 0;
  }

  .sm\:hover\:p-1:hover {
    padding: .25rem;
  }

  .sm\:hover\:p-2:hover {
    padding: .5rem;
  }

  .sm\:hover\:p-3:hover {
    padding: .75rem;
  }

  .sm\:hover\:p-4:hover {
    padding: 1rem;
  }

  .sm\:hover\:p-5:hover {
    padding: 1.25rem;
  }

  .sm\:hover\:p-6:hover {
    padding: 1.5rem;
  }

  .sm\:hover\:p-7:hover {
    padding: 1.75rem;
  }

  .sm\:hover\:p-8:hover {
    padding: 2rem;
  }

  .sm\:hover\:p-9:hover {
    padding: 2.25rem;
  }

  .sm\:hover\:p-10:hover {
    padding: 2.5rem;
  }

  .sm\:hover\:p-12:hover {
    padding: 3rem;
  }

  .sm\:hover\:p-16:hover {
    padding: 4rem;
  }

  .sm\:hover\:p-20:hover {
    padding: 5rem;
  }

  .sm\:hover\:p-24:hover {
    padding: 6rem;
  }

  .sm\:hover\:p-28:hover {
    padding: 7rem;
  }

  .sm\:hover\:p-32:hover {
    padding: 8rem;
  }

  .sm\:hover\:p-36:hover {
    padding: 9rem;
  }

  .sm\:hover\:p-40:hover {
    padding: 10rem;
  }

  .sm\:hover\:p-44:hover {
    padding: 11rem;
  }

  .sm\:hover\:p-48:hover {
    padding: 12rem;
  }

  .sm\:hover\:p-56:hover {
    padding: 14rem;
  }

  .sm\:hover\:p-60:hover {
    padding: 15rem;
  }

  .sm\:hover\:p-64:hover {
    padding: 16rem;
  }

  .sm\:hover\:p-80:hover {
    padding: 20rem;
  }

  .sm\:hover\:p-96:hover {
    padding: 24rem;
  }

  .sm\:hover\:p-120:hover {
    padding: 30rem;
  }

  .sm\:hover\:p-160:hover {
    padding: 40rem;
  }

  .sm\:hover\:p-px:hover {
    padding: 1px;
  }

  .sm\:hover\:p-10\%:hover {
    padding: 10%;
  }

  .sm\:hover\:p-20\%:hover {
    padding: 20%;
  }

  .sm\:hover\:p-30\%:hover {
    padding: 30%;
  }

  .sm\:hover\:p-40\%:hover {
    padding: 40%;
  }

  .sm\:hover\:p-50\%:hover {
    padding: 50%;
  }

  .sm\:hover\:p-60\%:hover {
    padding: 60%;
  }

  .sm\:hover\:p-70\%:hover {
    padding: 70%;
  }

  .sm\:hover\:p-80\%:hover {
    padding: 80%;
  }

  .sm\:hover\:p-90\%:hover {
    padding: 90%;
  }

  .sm\:hover\:p-1vw:hover {
    padding: 1vw;
  }

  .sm\:hover\:p-2vw:hover {
    padding: 2vw;
  }

  .sm\:hover\:p-3vw:hover {
    padding: 3vw;
  }

  .sm\:hover\:p-4vw:hover {
    padding: 4vw;
  }

  .sm\:hover\:p-5vw:hover {
    padding: 5vw;
  }

  .sm\:hover\:p-6vw:hover {
    padding: 6vw;
  }

  .sm\:hover\:p-7vw:hover {
    padding: 7vw;
  }

  .sm\:hover\:p-8vw:hover {
    padding: 8vw;
  }

  .sm\:hover\:p-9vw:hover {
    padding: 9vw;
  }

  .sm\:hover\:p-10vw:hover {
    padding: 10vw;
  }

  .sm\:hover\:py-0:hover {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:hover\:px-0:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:hover\:py-1:hover {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .sm\:hover\:px-1:hover {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .sm\:hover\:py-2:hover {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .sm\:hover\:px-2:hover {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .sm\:hover\:py-3:hover {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .sm\:hover\:px-3:hover {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .sm\:hover\:py-4:hover {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:hover\:px-4:hover {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:hover\:py-5:hover {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:hover\:px-5:hover {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:hover\:py-6:hover {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:hover\:px-6:hover {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:hover\:py-7:hover {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .sm\:hover\:px-7:hover {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .sm\:hover\:py-8:hover {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:hover\:px-8:hover {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:hover\:py-9:hover {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .sm\:hover\:px-9:hover {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:hover\:py-10:hover {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sm\:hover\:px-10:hover {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .sm\:hover\:py-12:hover {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:hover\:px-12:hover {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sm\:hover\:py-16:hover {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:hover\:px-16:hover {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:hover\:py-20:hover {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:hover\:px-20:hover {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm\:hover\:py-24:hover {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:hover\:px-24:hover {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .sm\:hover\:py-28:hover {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .sm\:hover\:px-28:hover {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .sm\:hover\:py-32:hover {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:hover\:px-32:hover {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .sm\:hover\:py-36:hover {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .sm\:hover\:px-36:hover {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .sm\:hover\:py-40:hover {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .sm\:hover\:px-40:hover {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .sm\:hover\:py-44:hover {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .sm\:hover\:px-44:hover {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .sm\:hover\:py-48:hover {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .sm\:hover\:px-48:hover {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .sm\:hover\:py-56:hover {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .sm\:hover\:px-56:hover {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .sm\:hover\:py-60:hover {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .sm\:hover\:px-60:hover {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .sm\:hover\:py-64:hover {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .sm\:hover\:px-64:hover {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .sm\:hover\:py-80:hover {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .sm\:hover\:px-80:hover {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .sm\:hover\:py-96:hover {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .sm\:hover\:px-96:hover {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .sm\:hover\:py-120:hover {
    padding-top: 30rem;
    padding-bottom: 30rem;
  }

  .sm\:hover\:px-120:hover {
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .sm\:hover\:py-160:hover {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }

  .sm\:hover\:px-160:hover {
    padding-left: 40rem;
    padding-right: 40rem;
  }

  .sm\:hover\:py-px:hover {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:hover\:px-px:hover {
    padding-left: 1px;
    padding-right: 1px;
  }

  .sm\:hover\:py-10\%:hover {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .sm\:hover\:px-10\%:hover {
    padding-left: 10%;
    padding-right: 10%;
  }

  .sm\:hover\:py-20\%:hover {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .sm\:hover\:px-20\%:hover {
    padding-left: 20%;
    padding-right: 20%;
  }

  .sm\:hover\:py-30\%:hover {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  .sm\:hover\:px-30\%:hover {
    padding-left: 30%;
    padding-right: 30%;
  }

  .sm\:hover\:py-40\%:hover {
    padding-top: 40%;
    padding-bottom: 40%;
  }

  .sm\:hover\:px-40\%:hover {
    padding-left: 40%;
    padding-right: 40%;
  }

  .sm\:hover\:py-50\%:hover {
    padding-top: 50%;
    padding-bottom: 50%;
  }

  .sm\:hover\:px-50\%:hover {
    padding-left: 50%;
    padding-right: 50%;
  }

  .sm\:hover\:py-60\%:hover {
    padding-top: 60%;
    padding-bottom: 60%;
  }

  .sm\:hover\:px-60\%:hover {
    padding-left: 60%;
    padding-right: 60%;
  }

  .sm\:hover\:py-70\%:hover {
    padding-top: 70%;
    padding-bottom: 70%;
  }

  .sm\:hover\:px-70\%:hover {
    padding-left: 70%;
    padding-right: 70%;
  }

  .sm\:hover\:py-80\%:hover {
    padding-top: 80%;
    padding-bottom: 80%;
  }

  .sm\:hover\:px-80\%:hover {
    padding-left: 80%;
    padding-right: 80%;
  }

  .sm\:hover\:py-90\%:hover {
    padding-top: 90%;
    padding-bottom: 90%;
  }

  .sm\:hover\:px-90\%:hover {
    padding-left: 90%;
    padding-right: 90%;
  }

  .sm\:hover\:py-1vw:hover {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .sm\:hover\:px-1vw:hover {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .sm\:hover\:py-2vw:hover {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .sm\:hover\:px-2vw:hover {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .sm\:hover\:py-3vw:hover {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .sm\:hover\:px-3vw:hover {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .sm\:hover\:py-4vw:hover {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .sm\:hover\:px-4vw:hover {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .sm\:hover\:py-5vw:hover {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .sm\:hover\:px-5vw:hover {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sm\:hover\:py-6vw:hover {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .sm\:hover\:px-6vw:hover {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .sm\:hover\:py-7vw:hover {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .sm\:hover\:px-7vw:hover {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .sm\:hover\:py-8vw:hover {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .sm\:hover\:px-8vw:hover {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .sm\:hover\:py-9vw:hover {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .sm\:hover\:px-9vw:hover {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .sm\:hover\:py-10vw:hover {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .sm\:hover\:px-10vw:hover {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .sm\:hover\:pt-0:hover {
    padding-top: 0;
  }

  .sm\:hover\:pr-0:hover {
    padding-right: 0;
  }

  .sm\:hover\:pb-0:hover {
    padding-bottom: 0;
  }

  .sm\:hover\:pl-0:hover {
    padding-left: 0;
  }

  .sm\:hover\:pt-1:hover {
    padding-top: .25rem;
  }

  .sm\:hover\:pr-1:hover {
    padding-right: .25rem;
  }

  .sm\:hover\:pb-1:hover {
    padding-bottom: .25rem;
  }

  .sm\:hover\:pl-1:hover {
    padding-left: .25rem;
  }

  .sm\:hover\:pt-2:hover {
    padding-top: .5rem;
  }

  .sm\:hover\:pr-2:hover {
    padding-right: .5rem;
  }

  .sm\:hover\:pb-2:hover {
    padding-bottom: .5rem;
  }

  .sm\:hover\:pl-2:hover {
    padding-left: .5rem;
  }

  .sm\:hover\:pt-3:hover {
    padding-top: .75rem;
  }

  .sm\:hover\:pr-3:hover {
    padding-right: .75rem;
  }

  .sm\:hover\:pb-3:hover {
    padding-bottom: .75rem;
  }

  .sm\:hover\:pl-3:hover {
    padding-left: .75rem;
  }

  .sm\:hover\:pt-4:hover {
    padding-top: 1rem;
  }

  .sm\:hover\:pr-4:hover {
    padding-right: 1rem;
  }

  .sm\:hover\:pb-4:hover {
    padding-bottom: 1rem;
  }

  .sm\:hover\:pl-4:hover {
    padding-left: 1rem;
  }

  .sm\:hover\:pt-5:hover {
    padding-top: 1.25rem;
  }

  .sm\:hover\:pr-5:hover {
    padding-right: 1.25rem;
  }

  .sm\:hover\:pb-5:hover {
    padding-bottom: 1.25rem;
  }

  .sm\:hover\:pl-5:hover {
    padding-left: 1.25rem;
  }

  .sm\:hover\:pt-6:hover {
    padding-top: 1.5rem;
  }

  .sm\:hover\:pr-6:hover {
    padding-right: 1.5rem;
  }

  .sm\:hover\:pb-6:hover {
    padding-bottom: 1.5rem;
  }

  .sm\:hover\:pl-6:hover {
    padding-left: 1.5rem;
  }

  .sm\:hover\:pt-7:hover {
    padding-top: 1.75rem;
  }

  .sm\:hover\:pr-7:hover {
    padding-right: 1.75rem;
  }

  .sm\:hover\:pb-7:hover {
    padding-bottom: 1.75rem;
  }

  .sm\:hover\:pl-7:hover {
    padding-left: 1.75rem;
  }

  .sm\:hover\:pt-8:hover {
    padding-top: 2rem;
  }

  .sm\:hover\:pr-8:hover {
    padding-right: 2rem;
  }

  .sm\:hover\:pb-8:hover {
    padding-bottom: 2rem;
  }

  .sm\:hover\:pl-8:hover {
    padding-left: 2rem;
  }

  .sm\:hover\:pt-9:hover {
    padding-top: 2.25rem;
  }

  .sm\:hover\:pr-9:hover {
    padding-right: 2.25rem;
  }

  .sm\:hover\:pb-9:hover {
    padding-bottom: 2.25rem;
  }

  .sm\:hover\:pl-9:hover {
    padding-left: 2.25rem;
  }

  .sm\:hover\:pt-10:hover {
    padding-top: 2.5rem;
  }

  .sm\:hover\:pr-10:hover {
    padding-right: 2.5rem;
  }

  .sm\:hover\:pb-10:hover {
    padding-bottom: 2.5rem;
  }

  .sm\:hover\:pl-10:hover {
    padding-left: 2.5rem;
  }

  .sm\:hover\:pt-12:hover {
    padding-top: 3rem;
  }

  .sm\:hover\:pr-12:hover {
    padding-right: 3rem;
  }

  .sm\:hover\:pb-12:hover {
    padding-bottom: 3rem;
  }

  .sm\:hover\:pl-12:hover {
    padding-left: 3rem;
  }

  .sm\:hover\:pt-16:hover {
    padding-top: 4rem;
  }

  .sm\:hover\:pr-16:hover {
    padding-right: 4rem;
  }

  .sm\:hover\:pb-16:hover {
    padding-bottom: 4rem;
  }

  .sm\:hover\:pl-16:hover {
    padding-left: 4rem;
  }

  .sm\:hover\:pt-20:hover {
    padding-top: 5rem;
  }

  .sm\:hover\:pr-20:hover {
    padding-right: 5rem;
  }

  .sm\:hover\:pb-20:hover {
    padding-bottom: 5rem;
  }

  .sm\:hover\:pl-20:hover {
    padding-left: 5rem;
  }

  .sm\:hover\:pt-24:hover {
    padding-top: 6rem;
  }

  .sm\:hover\:pr-24:hover {
    padding-right: 6rem;
  }

  .sm\:hover\:pb-24:hover {
    padding-bottom: 6rem;
  }

  .sm\:hover\:pl-24:hover {
    padding-left: 6rem;
  }

  .sm\:hover\:pt-28:hover {
    padding-top: 7rem;
  }

  .sm\:hover\:pr-28:hover {
    padding-right: 7rem;
  }

  .sm\:hover\:pb-28:hover {
    padding-bottom: 7rem;
  }

  .sm\:hover\:pl-28:hover {
    padding-left: 7rem;
  }

  .sm\:hover\:pt-32:hover {
    padding-top: 8rem;
  }

  .sm\:hover\:pr-32:hover {
    padding-right: 8rem;
  }

  .sm\:hover\:pb-32:hover {
    padding-bottom: 8rem;
  }

  .sm\:hover\:pl-32:hover {
    padding-left: 8rem;
  }

  .sm\:hover\:pt-36:hover {
    padding-top: 9rem;
  }

  .sm\:hover\:pr-36:hover {
    padding-right: 9rem;
  }

  .sm\:hover\:pb-36:hover {
    padding-bottom: 9rem;
  }

  .sm\:hover\:pl-36:hover {
    padding-left: 9rem;
  }

  .sm\:hover\:pt-40:hover {
    padding-top: 10rem;
  }

  .sm\:hover\:pr-40:hover {
    padding-right: 10rem;
  }

  .sm\:hover\:pb-40:hover {
    padding-bottom: 10rem;
  }

  .sm\:hover\:pl-40:hover {
    padding-left: 10rem;
  }

  .sm\:hover\:pt-44:hover {
    padding-top: 11rem;
  }

  .sm\:hover\:pr-44:hover {
    padding-right: 11rem;
  }

  .sm\:hover\:pb-44:hover {
    padding-bottom: 11rem;
  }

  .sm\:hover\:pl-44:hover {
    padding-left: 11rem;
  }

  .sm\:hover\:pt-48:hover {
    padding-top: 12rem;
  }

  .sm\:hover\:pr-48:hover {
    padding-right: 12rem;
  }

  .sm\:hover\:pb-48:hover {
    padding-bottom: 12rem;
  }

  .sm\:hover\:pl-48:hover {
    padding-left: 12rem;
  }

  .sm\:hover\:pt-56:hover {
    padding-top: 14rem;
  }

  .sm\:hover\:pr-56:hover {
    padding-right: 14rem;
  }

  .sm\:hover\:pb-56:hover {
    padding-bottom: 14rem;
  }

  .sm\:hover\:pl-56:hover {
    padding-left: 14rem;
  }

  .sm\:hover\:pt-60:hover {
    padding-top: 15rem;
  }

  .sm\:hover\:pr-60:hover {
    padding-right: 15rem;
  }

  .sm\:hover\:pb-60:hover {
    padding-bottom: 15rem;
  }

  .sm\:hover\:pl-60:hover {
    padding-left: 15rem;
  }

  .sm\:hover\:pt-64:hover {
    padding-top: 16rem;
  }

  .sm\:hover\:pr-64:hover {
    padding-right: 16rem;
  }

  .sm\:hover\:pb-64:hover {
    padding-bottom: 16rem;
  }

  .sm\:hover\:pl-64:hover {
    padding-left: 16rem;
  }

  .sm\:hover\:pt-80:hover {
    padding-top: 20rem;
  }

  .sm\:hover\:pr-80:hover {
    padding-right: 20rem;
  }

  .sm\:hover\:pb-80:hover {
    padding-bottom: 20rem;
  }

  .sm\:hover\:pl-80:hover {
    padding-left: 20rem;
  }

  .sm\:hover\:pt-96:hover {
    padding-top: 24rem;
  }

  .sm\:hover\:pr-96:hover {
    padding-right: 24rem;
  }

  .sm\:hover\:pb-96:hover {
    padding-bottom: 24rem;
  }

  .sm\:hover\:pl-96:hover {
    padding-left: 24rem;
  }

  .sm\:hover\:pt-120:hover {
    padding-top: 30rem;
  }

  .sm\:hover\:pr-120:hover {
    padding-right: 30rem;
  }

  .sm\:hover\:pb-120:hover {
    padding-bottom: 30rem;
  }

  .sm\:hover\:pl-120:hover {
    padding-left: 30rem;
  }

  .sm\:hover\:pt-160:hover {
    padding-top: 40rem;
  }

  .sm\:hover\:pr-160:hover {
    padding-right: 40rem;
  }

  .sm\:hover\:pb-160:hover {
    padding-bottom: 40rem;
  }

  .sm\:hover\:pl-160:hover {
    padding-left: 40rem;
  }

  .sm\:hover\:pt-px:hover {
    padding-top: 1px;
  }

  .sm\:hover\:pr-px:hover {
    padding-right: 1px;
  }

  .sm\:hover\:pb-px:hover {
    padding-bottom: 1px;
  }

  .sm\:hover\:pl-px:hover {
    padding-left: 1px;
  }

  .sm\:hover\:pt-10\%:hover {
    padding-top: 10%;
  }

  .sm\:hover\:pr-10\%:hover {
    padding-right: 10%;
  }

  .sm\:hover\:pb-10\%:hover {
    padding-bottom: 10%;
  }

  .sm\:hover\:pl-10\%:hover {
    padding-left: 10%;
  }

  .sm\:hover\:pt-20\%:hover {
    padding-top: 20%;
  }

  .sm\:hover\:pr-20\%:hover {
    padding-right: 20%;
  }

  .sm\:hover\:pb-20\%:hover {
    padding-bottom: 20%;
  }

  .sm\:hover\:pl-20\%:hover {
    padding-left: 20%;
  }

  .sm\:hover\:pt-30\%:hover {
    padding-top: 30%;
  }

  .sm\:hover\:pr-30\%:hover {
    padding-right: 30%;
  }

  .sm\:hover\:pb-30\%:hover {
    padding-bottom: 30%;
  }

  .sm\:hover\:pl-30\%:hover {
    padding-left: 30%;
  }

  .sm\:hover\:pt-40\%:hover {
    padding-top: 40%;
  }

  .sm\:hover\:pr-40\%:hover {
    padding-right: 40%;
  }

  .sm\:hover\:pb-40\%:hover {
    padding-bottom: 40%;
  }

  .sm\:hover\:pl-40\%:hover {
    padding-left: 40%;
  }

  .sm\:hover\:pt-50\%:hover {
    padding-top: 50%;
  }

  .sm\:hover\:pr-50\%:hover {
    padding-right: 50%;
  }

  .sm\:hover\:pb-50\%:hover {
    padding-bottom: 50%;
  }

  .sm\:hover\:pl-50\%:hover {
    padding-left: 50%;
  }

  .sm\:hover\:pt-60\%:hover {
    padding-top: 60%;
  }

  .sm\:hover\:pr-60\%:hover {
    padding-right: 60%;
  }

  .sm\:hover\:pb-60\%:hover {
    padding-bottom: 60%;
  }

  .sm\:hover\:pl-60\%:hover {
    padding-left: 60%;
  }

  .sm\:hover\:pt-70\%:hover {
    padding-top: 70%;
  }

  .sm\:hover\:pr-70\%:hover {
    padding-right: 70%;
  }

  .sm\:hover\:pb-70\%:hover {
    padding-bottom: 70%;
  }

  .sm\:hover\:pl-70\%:hover {
    padding-left: 70%;
  }

  .sm\:hover\:pt-80\%:hover {
    padding-top: 80%;
  }

  .sm\:hover\:pr-80\%:hover {
    padding-right: 80%;
  }

  .sm\:hover\:pb-80\%:hover {
    padding-bottom: 80%;
  }

  .sm\:hover\:pl-80\%:hover {
    padding-left: 80%;
  }

  .sm\:hover\:pt-90\%:hover {
    padding-top: 90%;
  }

  .sm\:hover\:pr-90\%:hover {
    padding-right: 90%;
  }

  .sm\:hover\:pb-90\%:hover {
    padding-bottom: 90%;
  }

  .sm\:hover\:pl-90\%:hover {
    padding-left: 90%;
  }

  .sm\:hover\:pt-1vw:hover {
    padding-top: 1vw;
  }

  .sm\:hover\:pr-1vw:hover {
    padding-right: 1vw;
  }

  .sm\:hover\:pb-1vw:hover {
    padding-bottom: 1vw;
  }

  .sm\:hover\:pl-1vw:hover {
    padding-left: 1vw;
  }

  .sm\:hover\:pt-2vw:hover {
    padding-top: 2vw;
  }

  .sm\:hover\:pr-2vw:hover {
    padding-right: 2vw;
  }

  .sm\:hover\:pb-2vw:hover {
    padding-bottom: 2vw;
  }

  .sm\:hover\:pl-2vw:hover {
    padding-left: 2vw;
  }

  .sm\:hover\:pt-3vw:hover {
    padding-top: 3vw;
  }

  .sm\:hover\:pr-3vw:hover {
    padding-right: 3vw;
  }

  .sm\:hover\:pb-3vw:hover {
    padding-bottom: 3vw;
  }

  .sm\:hover\:pl-3vw:hover {
    padding-left: 3vw;
  }

  .sm\:hover\:pt-4vw:hover {
    padding-top: 4vw;
  }

  .sm\:hover\:pr-4vw:hover {
    padding-right: 4vw;
  }

  .sm\:hover\:pb-4vw:hover {
    padding-bottom: 4vw;
  }

  .sm\:hover\:pl-4vw:hover {
    padding-left: 4vw;
  }

  .sm\:hover\:pt-5vw:hover {
    padding-top: 5vw;
  }

  .sm\:hover\:pr-5vw:hover {
    padding-right: 5vw;
  }

  .sm\:hover\:pb-5vw:hover {
    padding-bottom: 5vw;
  }

  .sm\:hover\:pl-5vw:hover {
    padding-left: 5vw;
  }

  .sm\:hover\:pt-6vw:hover {
    padding-top: 6vw;
  }

  .sm\:hover\:pr-6vw:hover {
    padding-right: 6vw;
  }

  .sm\:hover\:pb-6vw:hover {
    padding-bottom: 6vw;
  }

  .sm\:hover\:pl-6vw:hover {
    padding-left: 6vw;
  }

  .sm\:hover\:pt-7vw:hover {
    padding-top: 7vw;
  }

  .sm\:hover\:pr-7vw:hover {
    padding-right: 7vw;
  }

  .sm\:hover\:pb-7vw:hover {
    padding-bottom: 7vw;
  }

  .sm\:hover\:pl-7vw:hover {
    padding-left: 7vw;
  }

  .sm\:hover\:pt-8vw:hover {
    padding-top: 8vw;
  }

  .sm\:hover\:pr-8vw:hover {
    padding-right: 8vw;
  }

  .sm\:hover\:pb-8vw:hover {
    padding-bottom: 8vw;
  }

  .sm\:hover\:pl-8vw:hover {
    padding-left: 8vw;
  }

  .sm\:hover\:pt-9vw:hover {
    padding-top: 9vw;
  }

  .sm\:hover\:pr-9vw:hover {
    padding-right: 9vw;
  }

  .sm\:hover\:pb-9vw:hover {
    padding-bottom: 9vw;
  }

  .sm\:hover\:pl-9vw:hover {
    padding-left: 9vw;
  }

  .sm\:hover\:pt-10vw:hover {
    padding-top: 10vw;
  }

  .sm\:hover\:pr-10vw:hover {
    padding-right: 10vw;
  }

  .sm\:hover\:pb-10vw:hover {
    padding-bottom: 10vw;
  }

  .sm\:hover\:pl-10vw:hover {
    padding-left: 10vw;
  }

  .sm\:pointer-events-none {
    pointer-events: none;
  }

  .sm\:pointer-events-auto {
    pointer-events: auto;
  }

  .sm\:static {
    position: static;
  }

  .sm\:fixed {
    position: fixed;
  }

  .sm\:absolute {
    position: absolute;
  }

  .sm\:relative {
    position: relative;
  }

  .sm\:sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .sm\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .sm\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:pin-y {
    top: 0;
    bottom: 0;
  }

  .sm\:pin-x {
    right: 0;
    left: 0;
  }

  .sm\:pin-t {
    top: 0;
  }

  .sm\:pin-r {
    right: 0;
  }

  .sm\:pin-b {
    bottom: 0;
  }

  .sm\:pin-l {
    left: 0;
  }

  .sm\:hover\:static:hover {
    position: static;
  }

  .sm\:hover\:fixed:hover {
    position: fixed;
  }

  .sm\:hover\:absolute:hover {
    position: absolute;
  }

  .sm\:hover\:relative:hover {
    position: relative;
  }

  .sm\:hover\:sticky:hover {
    position: -webkit-sticky;
    position: sticky;
  }

  .sm\:hover\:pin-none:hover {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .sm\:hover\:pin:hover {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:hover\:pin-y:hover {
    top: 0;
    bottom: 0;
  }

  .sm\:hover\:pin-x:hover {
    right: 0;
    left: 0;
  }

  .sm\:hover\:pin-t:hover {
    top: 0;
  }

  .sm\:hover\:pin-r:hover {
    right: 0;
  }

  .sm\:hover\:pin-b:hover {
    bottom: 0;
  }

  .sm\:hover\:pin-l:hover {
    left: 0;
  }

  .sm\:resize-none {
    resize: none;
  }

  .sm\:resize-y {
    resize: vertical;
  }

  .sm\:resize-x {
    resize: horizontal;
  }

  .sm\:resize {
    resize: both;
  }

  .sm\:shadow {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  }

  .sm\:shadow-md {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  }

  .sm\:shadow-lg {
    box-shadow: 0 0 100px rgba(0, 0, 0, .15);
  }

  .sm\:shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
  }

  .sm\:shadow-none {
    box-shadow: none;
  }

  .sm\:hover\:shadow:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  }

  .sm\:hover\:shadow-md:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  }

  .sm\:hover\:shadow-lg:hover {
    box-shadow: 0 0 100px rgba(0, 0, 0, .15);
  }

  .sm\:hover\:shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
  }

  .sm\:hover\:shadow-none:hover {
    box-shadow: none;
  }

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

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

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

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

  .sm\:text-transparent {
    color: transparent;
  }

  .sm\:text-currentColor {
    color: currentColor;
  }

  .sm\:text-black {
    color: #222;
  }

  .sm\:text-black-10 {
    color: rgba(0, 0, 0, .1);
  }

  .sm\:text-black-20 {
    color: rgba(0, 0, 0, .2);
  }

  .sm\:text-black-30 {
    color: rgba(0, 0, 0, .3);
  }

  .sm\:text-black-40 {
    color: rgba(0, 0, 0, .4);
  }

  .sm\:text-black-50 {
    color: rgba(0, 0, 0, .5);
  }

  .sm\:text-black-60 {
    color: rgba(0, 0, 0, .6);
  }

  .sm\:text-black-70 {
    color: rgba(0, 0, 0, .7);
  }

  .sm\:text-black-80 {
    color: rgba(0, 0, 0, .8);
  }

  .sm\:text-black-90 {
    color: rgba(0, 0, 0, .9);
  }

  .sm\:text-black-1 {
    color: #313131;
  }

  .sm\:text-white {
    color: #fff;
  }

  .sm\:text-blue {
    color: #0277bd;
  }

  .sm\:text-dark-blue {
    color: #0277bd;
  }

  .sm\:text-blue-1 {
    color: #17214a;
  }

  .sm\:text-light-blue {
    color: #0277bd;
  }

  .sm\:text-red {
    color: #cb001c;
  }

  .sm\:text-green {
    color: #00bea0;
  }

  .sm\:text-purple {
    color: #5a80d1;
  }

  .sm\:text-orange {
    color: #ff9a0a;
  }

  .sm\:text-grey {
    color: #929a9d;
  }

  .sm\:text-grey-light {
    color: #e2e2e2;
  }

  .sm\:text-grey-1 {
    color: #f2f3f3;
  }

  .sm\:text-grey-2 {
    color: #c2c6c8;
  }

  .sm\:text-grey-3 {
    color: #6b7375;
  }

  .sm\:text-grey-4 {
    color: #465052;
  }

  .sm\:text-grey-5 {
    color: #828688;
  }

  .sm\:text-sd-red {
    color: #ed1c24;
  }

  .sm\:text-light-blue-1 {
    color: #21b8de;
  }

  .sm\:text-dark-blue-1 {
    color: #0277bd;
  }

  .sm\:text-dark-orange {
    color: #df8403;
  }

  .sm\:text-g-blue {
    color: #17214a;
  }

  .sm\:text-g-blue-1 {
    color: #556d88;
  }

  .sm\:text-g-blue-2 {
    color: #3c4c65;
  }

  .sm\:text-g-blue-3 {
    color: #222e4d;
  }

  .sm\:hover\:text-transparent:hover {
    color: transparent;
  }

  .sm\:hover\:text-currentColor:hover {
    color: currentColor;
  }

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

  .sm\:hover\:text-black-10:hover {
    color: rgba(0, 0, 0, .1);
  }

  .sm\:hover\:text-black-20:hover {
    color: rgba(0, 0, 0, .2);
  }

  .sm\:hover\:text-black-30:hover {
    color: rgba(0, 0, 0, .3);
  }

  .sm\:hover\:text-black-40:hover {
    color: rgba(0, 0, 0, .4);
  }

  .sm\:hover\:text-black-50:hover {
    color: rgba(0, 0, 0, .5);
  }

  .sm\:hover\:text-black-60:hover {
    color: rgba(0, 0, 0, .6);
  }

  .sm\:hover\:text-black-70:hover {
    color: rgba(0, 0, 0, .7);
  }

  .sm\:hover\:text-black-80:hover {
    color: rgba(0, 0, 0, .8);
  }

  .sm\:hover\:text-black-90:hover {
    color: rgba(0, 0, 0, .9);
  }

  .sm\:hover\:text-black-1:hover {
    color: #313131;
  }

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

  .sm\:hover\:text-blue:hover {
    color: #0277bd;
  }

  .sm\:hover\:text-dark-blue:hover {
    color: #0277bd;
  }

  .sm\:hover\:text-blue-1:hover {
    color: #17214a;
  }

  .sm\:hover\:text-light-blue:hover {
    color: #0277bd;
  }

  .sm\:hover\:text-red:hover {
    color: #cb001c;
  }

  .sm\:hover\:text-green:hover {
    color: #00bea0;
  }

  .sm\:hover\:text-purple:hover {
    color: #5a80d1;
  }

  .sm\:hover\:text-orange:hover {
    color: #ff9a0a;
  }

  .sm\:hover\:text-grey:hover {
    color: #929a9d;
  }

  .sm\:hover\:text-grey-light:hover {
    color: #e2e2e2;
  }

  .sm\:hover\:text-grey-1:hover {
    color: #f2f3f3;
  }

  .sm\:hover\:text-grey-2:hover {
    color: #c2c6c8;
  }

  .sm\:hover\:text-grey-3:hover {
    color: #6b7375;
  }

  .sm\:hover\:text-grey-4:hover {
    color: #465052;
  }

  .sm\:hover\:text-grey-5:hover {
    color: #828688;
  }

  .sm\:hover\:text-sd-red:hover {
    color: #ed1c24;
  }

  .sm\:hover\:text-light-blue-1:hover {
    color: #21b8de;
  }

  .sm\:hover\:text-dark-blue-1:hover {
    color: #0277bd;
  }

  .sm\:hover\:text-dark-orange:hover {
    color: #df8403;
  }

  .sm\:hover\:text-g-blue:hover {
    color: #17214a;
  }

  .sm\:hover\:text-g-blue-1:hover {
    color: #556d88;
  }

  .sm\:hover\:text-g-blue-2:hover {
    color: #3c4c65;
  }

  .sm\:hover\:text-g-blue-3:hover {
    color: #222e4d;
  }

  .sm\:text-xxxs {
    font-size: .625rem;;
  }

  .sm\:text-xxs {
    font-size: .75rem;
  }

  .sm\:text-xs {
    font-size: .875rem;
  }

  .sm\:text-sm {
    font-size: 1rem;
  }

  .sm\:text-base {
    font-size: 1.125rem;
  }

  .sm\:text-lg {
    font-size: 1.25rem;
  }

  .sm\:text-2lg {
    font-size: 1.25rem;
  }

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

  .sm\:text-1-5xl {
    font-size: 1.625rem;
  }

  .sm\:text-2xl {
    font-size: 1.75rem;
  }

  .sm\:text-2-5xl {
    font-size: 1.875rem;
  }

  .sm\:text-3xl {
    font-size: 2rem;
  }

  .sm\:text-4xl {
    font-size: 2.125rem;
  }

  .sm\:text-5xl {
    font-size: 2.25rem;
  }

  .sm\:text-6xl {
    font-size: 3.375rem;
  }

  .sm\:text-7xl {
    font-size: 4.125rem;
  }

  .sm\:italic {
    font-style: italic;
  }

  .sm\:roman {
    font-style: normal;
  }

  .sm\:uppercase {
    text-transform: uppercase;
  }

  .sm\:lowercase {
    text-transform: lowercase;
  }

  .sm\:capitalize {
    text-transform: capitalize;
  }

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

  .sm\:underline {
    text-decoration: underline;
  }

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

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

  .sm\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:hover\:italic:hover {
    font-style: italic;
  }

  .sm\:hover\:roman:hover {
    font-style: normal;
  }

  .sm\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .sm\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .sm\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .sm\:hover\:normal-case:hover {
    text-transform: none;
  }

  .sm\:hover\:underline:hover {
    text-decoration: underline;
  }

  .sm\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .sm\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .sm\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .sm\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .sm\:tracking-normal {
    letter-spacing: 0;
  }

  .sm\:tracking-wide {
    letter-spacing: .05em;
  }

  .sm\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .sm\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .sm\:align-baseline {
    vertical-align: baseline;
  }

  .sm\:align-top {
    vertical-align: top;
  }

  .sm\:align-middle {
    vertical-align: middle;
  }

  .sm\:align-bottom {
    vertical-align: bottom;
  }

  .sm\:align-text-top {
    vertical-align: text-top;
  }

  .sm\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .sm\:visible {
    visibility: visible;
  }

  .sm\:invisible {
    visibility: hidden;
  }

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

  .sm\:whitespace-no-wrap {
    white-space: nowrap;
  }

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

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

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

  .sm\:break-words {
    word-wrap: break-word;
  }

  .sm\:break-normal {
    word-wrap: normal;
  }

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

  .sm\:w-0 {
    width: 0;
  }

  .sm\:w-1 {
    width: .25rem;
  }

  .sm\:w-2 {
    width: .5rem;
  }

  .sm\:w-3 {
    width: .75rem;
  }

  .sm\:w-4 {
    width: 1rem;
  }

  .sm\:w-5 {
    width: 1.25rem;
  }

  .sm\:w-6 {
    width: 1.5rem;
  }

  .sm\:w-7 {
    width: 1.75rem;
  }

  .sm\:w-8 {
    width: 2rem;
  }

  .sm\:w-9 {
    width: 2.25rem;
  }

  .sm\:w-10 {
    width: 2.5rem;
  }

  .sm\:w-12 {
    width: 3rem;
  }

  .sm\:w-14 {
    width: 3.5rem;
  }

  .sm\:w-16 {
    width: 4rem;
  }

  .sm\:w-24 {
    width: 6rem;
  }

  .sm\:w-32 {
    width: 8rem;
  }

  .sm\:w-40 {
    width: 10rem;
  }

  .sm\:w-48 {
    width: 12rem;
  }

  .sm\:w-64 {
    width: 16rem;
  }

  .sm\:w-70 {
    width: 18rem;
  }

  .sm\:w-80 {
    width: 20rem;
  }

  .sm\:w-96 {
    width: 24rem;
  }

  .sm\:w-112 {
    width: 28rem;
  }

  .sm\:w-128 {
    width: 32rem;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:w-px {
    width: 1px;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:w-half {
    width: 50%;
  }

  .sm\:w-100px {
    width: 100px;
  }

  .sm\:w-200px {
    width: 200px;
  }

  .sm\:w-300px {
    width: 300px;
  }

  .sm\:w-400px {
    width: 400px;
  }

  .sm\:w-500px {
    width: 500px;
  }

  .sm\:w-576px {
    width: 576px;
  }

  .sm\:w-600px {
    width: 600px;
  }

  .sm\:w-700px {
    width: 700px;
  }

  .sm\:w-768px {
    width: 768px;
  }

  .sm\:w-800px {
    width: 800px;
  }

  .sm\:w-900px {
    width: 900px;
  }

  .sm\:w-992px {
    width: 992px;
  }

  .sm\:w-1000px {
    width: 1000px;
  }

  .sm\:w-1140px {
    width: 1140px;
  }

  .sm\:w-1200px {
    width: 1200px;
  }

  .sm\:w-1460px {
    width: 1460px;
  }

  .sm\:w-1600px {
    width: 1600px;
  }

  .sm\:w-screen {
    width: 100vw;
  }

  .sm\:z-0 {
    z-index: 0;
  }

  .sm\:z-1 {
    z-index: 1;
  }

  .sm\:z-4 {
    z-index: 4;
  }

  .sm\:z-10 {
    z-index: 10;
  }

  .sm\:z-20 {
    z-index: 20;
  }

  .sm\:z-30 {
    z-index: 30;
  }

  .sm\:z-40 {
    z-index: 40;
  }

  .sm\:z-50 {
    z-index: 50;
  }

  .sm\:z-60 {
    z-index: 60;
  }

  .sm\:z-70 {
    z-index: 70;
  }

  .sm\:z-80 {
    z-index: 80;
  }

  .sm\:z-90 {
    z-index: 90;
  }

  .sm\:z-100 {
    z-index: 100;
  }

  .sm\:z-auto {
    z-index: auto;
  }

  .sm\:hover\:z-0:hover {
    z-index: 0;
  }

  .sm\:hover\:z-1:hover {
    z-index: 1;
  }

  .sm\:hover\:z-4:hover {
    z-index: 4;
  }

  .sm\:hover\:z-10:hover {
    z-index: 10;
  }

  .sm\:hover\:z-20:hover {
    z-index: 20;
  }

  .sm\:hover\:z-30:hover {
    z-index: 30;
  }

  .sm\:hover\:z-40:hover {
    z-index: 40;
  }

  .sm\:hover\:z-50:hover {
    z-index: 50;
  }

  .sm\:hover\:z-60:hover {
    z-index: 60;
  }

  .sm\:hover\:z-70:hover {
    z-index: 70;
  }

  .sm\:hover\:z-80:hover {
    z-index: 80;
  }

  .sm\:hover\:z-90:hover {
    z-index: 90;
  }

  .sm\:hover\:z-100:hover {
    z-index: 100;
  }

  .sm\:hover\:z-auto:hover {
    z-index: auto;
  }

  .sm\:pin-t-0 {
    top: 0;
  }

  .sm\:pin-r-0 {
    right: 0;
  }

  .sm\:pin-b-0 {
    bottom: 0;
  }

  .sm\:pin-l-0 {
    left: 0;
  }

  .sm\:pin-t-1 {
    top: 1px;
  }

  .sm\:pin-r-1 {
    right: 1px;
  }

  .sm\:pin-b-1 {
    bottom: 1px;
  }

  .sm\:pin-l-1 {
    left: 1px;
  }

  .sm\:pin-t-3 {
    top: 3px;
  }

  .sm\:pin-r-3 {
    right: 3px;
  }

  .sm\:pin-b-3 {
    bottom: 3px;
  }

  .sm\:pin-l-3 {
    left: 3px;
  }

  .sm\:pin-t-5 {
    top: 5px;
  }

  .sm\:pin-r-5 {
    right: 5px;
  }

  .sm\:pin-b-5 {
    bottom: 5px;
  }

  .sm\:pin-l-5 {
    left: 5px;
  }

  .sm\:pin-t-6 {
    top: 6px;
  }

  .sm\:pin-r-6 {
    right: 6px;
  }

  .sm\:pin-b-6 {
    bottom: 6px;
  }

  .sm\:pin-l-6 {
    left: 6px;
  }

  .sm\:pin-t-10 {
    top: 10px;
  }

  .sm\:pin-r-10 {
    right: 10px;
  }

  .sm\:pin-b-10 {
    bottom: 10px;
  }

  .sm\:pin-l-10 {
    left: 10px;
  }

  .sm\:pin-t-11 {
    top: 11px;
  }

  .sm\:pin-r-11 {
    right: 11px;
  }

  .sm\:pin-b-11 {
    bottom: 11px;
  }

  .sm\:pin-l-11 {
    left: 11px;
  }

  .sm\:pin-t-12 {
    top: 3rem;
  }

  .sm\:pin-r-12 {
    right: 3rem;
  }

  .sm\:pin-b-12 {
    bottom: 3rem;
  }

  .sm\:pin-l-12 {
    left: 3rem;
  }

  .sm\:pin-t-15 {
    top: 15px;
  }

  .sm\:pin-r-15 {
    right: 15px;
  }

  .sm\:pin-b-15 {
    bottom: 15px;
  }

  .sm\:pin-l-15 {
    left: 15px;
  }

  .sm\:pin-t-16 {
    top: 4rem;
  }

  .sm\:pin-r-16 {
    right: 4rem;
  }

  .sm\:pin-b-16 {
    bottom: 4rem;
  }

  .sm\:pin-l-16 {
    left: 4rem;
  }

  .sm\:pin-t-20 {
    top: 20px;
  }

  .sm\:pin-r-20 {
    right: 20px;
  }

  .sm\:pin-b-20 {
    bottom: 20px;
  }

  .sm\:pin-l-20 {
    left: 20px;
  }

  .sm\:pin-t-25 {
    top: 25px;
  }

  .sm\:pin-r-25 {
    right: 25px;
  }

  .sm\:pin-b-25 {
    bottom: 25px;
  }

  .sm\:pin-l-25 {
    left: 25px;
  }

  .sm\:pin-t-50 {
    top: 50px;
  }

  .sm\:pin-r-50 {
    right: 50px;
  }

  .sm\:pin-b-50 {
    bottom: 50px;
  }

  .sm\:pin-l-50 {
    left: 50px;
  }

  .sm\:pin-t-64 {
    top: 64px;
  }

  .sm\:pin-r-64 {
    right: 64px;
  }

  .sm\:pin-b-64 {
    bottom: 64px;
  }

  .sm\:pin-l-64 {
    left: 64px;
  }

  .sm\:pin-t-75 {
    top: 75px;
  }

  .sm\:pin-r-75 {
    right: 75px;
  }

  .sm\:pin-b-75 {
    bottom: 75px;
  }

  .sm\:pin-l-75 {
    left: 75px;
  }

  .sm\:pin-t-80 {
    top: 80px;
  }

  .sm\:pin-r-80 {
    right: 80px;
  }

  .sm\:pin-b-80 {
    bottom: 80px;
  }

  .sm\:pin-l-80 {
    left: 80px;
  }

  .sm\:pin-t-100 {
    top: 100px;
  }

  .sm\:pin-r-100 {
    right: 100px;
  }

  .sm\:pin-b-100 {
    bottom: 100px;
  }

  .sm\:pin-l-100 {
    left: 100px;
  }

  .sm\:pin-t-150 {
    top: 150px;
  }

  .sm\:pin-r-150 {
    right: 150px;
  }

  .sm\:pin-b-150 {
    bottom: 150px;
  }

  .sm\:pin-l-150 {
    left: 150px;
  }

  .sm\:pin-t-200 {
    top: 150px;
  }

  .sm\:pin-r-200 {
    right: 150px;
  }

  .sm\:pin-b-200 {
    bottom: 150px;
  }

  .sm\:pin-l-200 {
    left: 150px;
  }

  .sm\:pin-t-250 {
    top: 250px;
  }

  .sm\:pin-r-250 {
    right: 250px;
  }

  .sm\:pin-b-250 {
    bottom: 250px;
  }

  .sm\:pin-l-250 {
    left: 250px;
  }

  .sm\:pin-t-300 {
    top: 300px;
  }

  .sm\:pin-r-300 {
    right: 300px;
  }

  .sm\:pin-b-300 {
    bottom: 300px;
  }

  .sm\:pin-l-300 {
    left: 300px;
  }

  .sm\:pin-t-400 {
    top: 400px;
  }

  .sm\:pin-r-400 {
    right: 400px;
  }

  .sm\:pin-b-400 {
    bottom: 400px;
  }

  .sm\:pin-l-400 {
    left: 400px;
  }

  .sm\:pin-t-500 {
    top: 500px;
  }

  .sm\:pin-r-500 {
    right: 500px;
  }

  .sm\:pin-b-500 {
    bottom: 500px;
  }

  .sm\:pin-l-500 {
    left: 500px;
  }

  .sm\:-pin-t-5 {
    top: -5px;
  }

  .sm\:-pin-r-5 {
    right: -5px;
  }

  .sm\:-pin-b-5 {
    bottom: -5px;
  }

  .sm\:-pin-l-5 {
    left: -5px;
  }

  .sm\:-pin-t-6 {
    top: -6px;
  }

  .sm\:-pin-r-6 {
    right: -6px;
  }

  .sm\:-pin-b-6 {
    bottom: -6px;
  }

  .sm\:-pin-l-6 {
    left: -6px;
  }

  .sm\:-pin-t-10 {
    top: -10px;
  }

  .sm\:-pin-r-10 {
    right: -10px;
  }

  .sm\:-pin-b-10 {
    bottom: -10px;
  }

  .sm\:-pin-l-10 {
    left: -10px;
  }

  .sm\:-pin-t-15 {
    top: -15px;
  }

  .sm\:-pin-r-15 {
    right: -15px;
  }

  .sm\:-pin-b-15 {
    bottom: -15px;
  }

  .sm\:-pin-l-15 {
    left: -15px;
  }

  .sm\:-pin-t-20 {
    top: -20px;
  }

  .sm\:-pin-r-20 {
    right: -20px;
  }

  .sm\:-pin-b-20 {
    bottom: -20px;
  }

  .sm\:-pin-l-20 {
    left: -20px;
  }

  .sm\:-pin-t-12 {
    top: -3rem;
  }

  .sm\:-pin-r-12 {
    right: -3rem;
  }

  .sm\:-pin-b-12 {
    bottom: -3rem;
  }

  .sm\:-pin-l-12 {
    left: -3rem;
  }

  .sm\:-pin-t-16 {
    top: -4rem;
  }

  .sm\:-pin-r-16 {
    right: -4rem;
  }

  .sm\:-pin-b-16 {
    bottom: -4rem;
  }

  .sm\:-pin-l-16 {
    left: -4rem;
  }

  .sm\:-pin-t-25 {
    top: -25px;
  }

  .sm\:-pin-r-25 {
    right: -25px;
  }

  .sm\:-pin-b-25 {
    bottom: -25px;
  }

  .sm\:-pin-l-25 {
    left: -25px;
  }

  .sm\:-pin-t-50 {
    top: -50px;
  }

  .sm\:-pin-r-50 {
    right: -50px;
  }

  .sm\:-pin-b-50 {
    bottom: -50px;
  }

  .sm\:-pin-l-50 {
    left: -50px;
  }

  .sm\:-pin-t-75 {
    top: 75px;
  }

  .sm\:-pin-r-75 {
    right: 75px;
  }

  .sm\:-pin-b-75 {
    bottom: 75px;
  }

  .sm\:-pin-l-75 {
    left: 75px;
  }

  .sm\:-pin-t-80 {
    top: -80px;
  }

  .sm\:-pin-r-80 {
    right: -80px;
  }

  .sm\:-pin-b-80 {
    bottom: -80px;
  }

  .sm\:-pin-l-80 {
    left: -80px;
  }

  .sm\:-pin-t-100 {
    top: -100px;
  }

  .sm\:-pin-r-100 {
    right: -100px;
  }

  .sm\:-pin-b-100 {
    bottom: -100px;
  }

  .sm\:-pin-l-100 {
    left: -100px;
  }

  .sm\:-pin-t-150 {
    top: -150px;
  }

  .sm\:-pin-r-150 {
    right: -150px;
  }

  .sm\:-pin-b-150 {
    bottom: -150px;
  }

  .sm\:-pin-l-150 {
    left: -150px;
  }

  .sm\:-pin-t-200 {
    top: -200px;
  }

  .sm\:-pin-r-200 {
    right: -200px;
  }

  .sm\:-pin-b-200 {
    bottom: -200px;
  }

  .sm\:-pin-l-200 {
    left: -200px;
  }

  .sm\:-pin-t-250 {
    top: -250px;
  }

  .sm\:-pin-r-250 {
    right: -250px;
  }

  .sm\:-pin-b-250 {
    bottom: -250px;
  }

  .sm\:-pin-l-250 {
    left: -250px;
  }

  .sm\:-pin-t-300 {
    top: -300px;
  }

  .sm\:-pin-r-300 {
    right: -300px;
  }

  .sm\:-pin-b-300 {
    bottom: -300px;
  }

  .sm\:-pin-l-300 {
    left: -300px;
  }

  .sm\:-pin-t-400 {
    top: -400px;
  }

  .sm\:-pin-r-400 {
    right: -400px;
  }

  .sm\:-pin-b-400 {
    bottom: -400px;
  }

  .sm\:-pin-l-400 {
    left: -400px;
  }

  .sm\:-pin-t-500 {
    top: -500px;
  }

  .sm\:-pin-r-500 {
    right: -500px;
  }

  .sm\:-pin-b-500 {
    bottom: -500px;
  }

  .sm\:-pin-l-500 {
    left: -500px;
  }

  .sm\:pin-t-half {
    top: 50%;
  }

  .sm\:pin-r-half {
    right: 50%;
  }

  .sm\:pin-b-half {
    bottom: 50%;
  }

  .sm\:pin-l-half {
    left: 50%;
  }

  .sm\:-pin-t-half {
    top: -50%;
  }

  .sm\:-pin-r-half {
    right: -50%;
  }

  .sm\:-pin-b-half {
    bottom: -50%;
  }

  .sm\:-pin-l-half {
    left: -50%;
  }

  .sm\:rotate-45 {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .sm\:rotate-90 {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .sm\:rotate-180 {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .sm\:-rotate-45 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .sm\:-rotate-90 {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .sm\:-rotate-180 {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .sm\:-translateX-50 {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .sm\:-translateY-50 {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .sm\:hover\:rotate-45:hover {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .sm\:hover\:rotate-90:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .sm\:hover\:rotate-180:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .sm\:hover\:-rotate-45:hover {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .sm\:hover\:-rotate-90:hover {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .sm\:hover\:-rotate-180:hover {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .sm\:hover\:-translateX-50:hover {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .sm\:hover\:-translateY-50:hover {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (min-width: 992px) {
  .md\:list-reset {
    list-style: none;
    padding: 0;
  }

  .md\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .md\:bg-fixed {
    background-attachment: fixed;
  }

  .md\:bg-local {
    background-attachment: local;
  }

  .md\:bg-scroll {
    background-attachment: scroll;
  }

  .md\:bg-transparent {
    background-color: transparent;
  }

  .md\:bg-currentColor {
    background-color: currentColor;
  }

  .md\:bg-black {
    background-color: #222;
  }

  .md\:bg-black-10 {
    background-color: rgba(0, 0, 0, .1);
  }

  .md\:bg-black-20 {
    background-color: rgba(0, 0, 0, .2);
  }

  .md\:bg-black-30 {
    background-color: rgba(0, 0, 0, .3);
  }

  .md\:bg-black-40 {
    background-color: rgba(0, 0, 0, .4);
  }

  .md\:bg-black-50 {
    background-color: rgba(0, 0, 0, .5);
  }

  .md\:bg-black-60 {
    background-color: rgba(0, 0, 0, .6);
  }

  .md\:bg-black-70 {
    background-color: rgba(0, 0, 0, .7);
  }

  .md\:bg-black-80 {
    background-color: rgba(0, 0, 0, .8);
  }

  .md\:bg-black-90 {
    background-color: rgba(0, 0, 0, .9);
  }

  .md\:bg-black-1 {
    background-color: #313131;
  }

  .md\:bg-white {
    background-color: #fff;
  }

  .md\:bg-blue {
    background-color: #0277bd;
  }

  .md\:bg-dark-blue {
    background-color: #0277bd;
  }

  .md\:bg-blue-1 {
    background-color: #17214a;
  }

  .md\:bg-light-blue {
    background-color: #0277bd;
  }

  .md\:bg-red {
    background-color: #cb001c;
  }

  .md\:bg-green {
    background-color: #00bea0;
  }

  .md\:bg-purple {
    background-color: #5a80d1;
  }

  .md\:bg-orange {
    background-color: #ff9a0a;
  }

  .md\:bg-grey {
    background-color: #929a9d;
  }

  .md\:bg-grey-light {
    background-color: #e2e2e2;
  }

  .md\:bg-grey-1 {
    background-color: #f2f3f3;
  }

  .md\:bg-grey-2 {
    background-color: #c2c6c8;
  }

  .md\:bg-grey-3 {
    background-color: #6b7375;
  }

  .md\:bg-grey-4 {
    background-color: #465052;
  }

  .md\:bg-grey-5 {
    background-color: #828688;
  }

  .md\:bg-sd-red {
    background-color: #ed1c24;
  }

  .md\:bg-light-blue-1 {
    background-color: #21b8de;
  }

  .md\:bg-dark-blue-1 {
    background-color: #0277bd;
  }

  .md\:bg-dark-orange {
    background-color: #df8403;
  }

  .md\:bg-g-blue {
    background-color: #17214a;
  }

  .md\:bg-g-blue-1 {
    background-color: #556d88;
  }

  .md\:bg-g-blue-2 {
    background-color: #3c4c65;
  }

  .md\:bg-g-blue-3 {
    background-color: #222e4d;
  }

  .md\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .md\:hover\:bg-currentColor:hover {
    background-color: currentColor;
  }

  .md\:hover\:bg-black:hover {
    background-color: #222;
  }

  .md\:hover\:bg-black-10:hover {
    background-color: rgba(0, 0, 0, .1);
  }

  .md\:hover\:bg-black-20:hover {
    background-color: rgba(0, 0, 0, .2);
  }

  .md\:hover\:bg-black-30:hover {
    background-color: rgba(0, 0, 0, .3);
  }

  .md\:hover\:bg-black-40:hover {
    background-color: rgba(0, 0, 0, .4);
  }

  .md\:hover\:bg-black-50:hover {
    background-color: rgba(0, 0, 0, .5);
  }

  .md\:hover\:bg-black-60:hover {
    background-color: rgba(0, 0, 0, .6);
  }

  .md\:hover\:bg-black-70:hover {
    background-color: rgba(0, 0, 0, .7);
  }

  .md\:hover\:bg-black-80:hover {
    background-color: rgba(0, 0, 0, .8);
  }

  .md\:hover\:bg-black-90:hover {
    background-color: rgba(0, 0, 0, .9);
  }

  .md\:hover\:bg-black-1:hover {
    background-color: #313131;
  }

  .md\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .md\:hover\:bg-blue:hover {
    background-color: #0277bd;
  }

  .md\:hover\:bg-dark-blue:hover {
    background-color: #0277bd;
  }

  .md\:hover\:bg-blue-1:hover {
    background-color: #17214a;
  }

  .md\:hover\:bg-light-blue:hover {
    background-color: #0277bd;
  }

  .md\:hover\:bg-red:hover {
    background-color: #cb001c;
  }

  .md\:hover\:bg-green:hover {
    background-color: #00bea0;
  }

  .md\:hover\:bg-purple:hover {
    background-color: #5a80d1;
  }

  .md\:hover\:bg-orange:hover {
    background-color: #ff9a0a;
  }

  .md\:hover\:bg-grey:hover {
    background-color: #929a9d;
  }

  .md\:hover\:bg-grey-light:hover {
    background-color: #e2e2e2;
  }

  .md\:hover\:bg-grey-1:hover {
    background-color: #f2f3f3;
  }

  .md\:hover\:bg-grey-2:hover {
    background-color: #c2c6c8;
  }

  .md\:hover\:bg-grey-3:hover {
    background-color: #6b7375;
  }

  .md\:hover\:bg-grey-4:hover {
    background-color: #465052;
  }

  .md\:hover\:bg-grey-5:hover {
    background-color: #828688;
  }

  .md\:hover\:bg-sd-red:hover {
    background-color: #ed1c24;
  }

  .md\:hover\:bg-light-blue-1:hover {
    background-color: #21b8de;
  }

  .md\:hover\:bg-dark-blue-1:hover {
    background-color: #0277bd;
  }

  .md\:hover\:bg-dark-orange:hover {
    background-color: #df8403;
  }

  .md\:hover\:bg-g-blue:hover {
    background-color: #17214a;
  }

  .md\:hover\:bg-g-blue-1:hover {
    background-color: #556d88;
  }

  .md\:hover\:bg-g-blue-2:hover {
    background-color: #3c4c65;
  }

  .md\:hover\:bg-g-blue-3:hover {
    background-color: #222e4d;
  }

  .md\:bg-bottom {
    background-position: bottom;
  }

  .md\:bg-center {
    background-position: center;
  }

  .md\:bg-left {
    background-position: left;
  }

  .md\:bg-left-bottom {
    background-position: left bottom;
  }

  .md\:bg-left-top {
    background-position: left top;
  }

  .md\:bg-right {
    background-position: right;
  }

  .md\:bg-right-bottom {
    background-position: right bottom;
  }

  .md\:bg-right-top {
    background-position: right top;
  }

  .md\:bg-top {
    background-position: top;
  }

  .md\:bg-repeat {
    background-repeat: repeat;
  }

  .md\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .md\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .md\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .md\:bg-auto {
    background-size: auto;
  }

  .md\:bg-cover {
    background-size: cover;
  }

  .md\:bg-contain {
    background-size: contain;
  }

  .md\:border-transparent {
    border-color: transparent;
  }

  .md\:border-currentColor {
    border-color: currentColor;
  }

  .md\:border-black {
    border-color: #222;
  }

  .md\:border-black-10 {
    border-color: rgba(0, 0, 0, .1);
  }

  .md\:border-black-20 {
    border-color: rgba(0, 0, 0, .2);
  }

  .md\:border-black-30 {
    border-color: rgba(0, 0, 0, .3);
  }

  .md\:border-black-40 {
    border-color: rgba(0, 0, 0, .4);
  }

  .md\:border-black-50 {
    border-color: rgba(0, 0, 0, .5);
  }

  .md\:border-black-60 {
    border-color: rgba(0, 0, 0, .6);
  }

  .md\:border-black-70 {
    border-color: rgba(0, 0, 0, .7);
  }

  .md\:border-black-80 {
    border-color: rgba(0, 0, 0, .8);
  }

  .md\:border-black-90 {
    border-color: rgba(0, 0, 0, .9);
  }

  .md\:border-black-1 {
    border-color: #313131;
  }

  .md\:border-white {
    border-color: #fff;
  }

  .md\:border-blue {
    border-color: #0277bd;
  }

  .md\:border-dark-blue {
    border-color: #0277bd;
  }

  .md\:border-blue-1 {
    border-color: #17214a;
  }

  .md\:border-light-blue {
    border-color: #0277bd;
  }

  .md\:border-red {
    border-color: #cb001c;
  }

  .md\:border-green {
    border-color: #00bea0;
  }

  .md\:border-purple {
    border-color: #5a80d1;
  }

  .md\:border-orange {
    border-color: #ff9a0a;
  }

  .md\:border-grey {
    border-color: #929a9d;
  }

  .md\:border-grey-light {
    border-color: #e2e2e2;
  }

  .md\:border-grey-1 {
    border-color: #f2f3f3;
  }

  .md\:border-grey-2 {
    border-color: #c2c6c8;
  }

  .md\:border-grey-3 {
    border-color: #6b7375;
  }

  .md\:border-grey-4 {
    border-color: #465052;
  }

  .md\:border-grey-5 {
    border-color: #828688;
  }

  .md\:border-sd-red {
    border-color: #ed1c24;
  }

  .md\:border-light-blue-1 {
    border-color: #21b8de;
  }

  .md\:border-dark-blue-1 {
    border-color: #0277bd;
  }

  .md\:border-dark-orange {
    border-color: #df8403;
  }

  .md\:border-g-blue {
    border-color: #17214a;
  }

  .md\:border-g-blue-1 {
    border-color: #556d88;
  }

  .md\:border-g-blue-2 {
    border-color: #3c4c65;
  }

  .md\:border-g-blue-3 {
    border-color: #222e4d;
  }

  .md\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .md\:hover\:border-currentColor:hover {
    border-color: currentColor;
  }

  .md\:hover\:border-black:hover {
    border-color: #222;
  }

  .md\:hover\:border-black-10:hover {
    border-color: rgba(0, 0, 0, .1);
  }

  .md\:hover\:border-black-20:hover {
    border-color: rgba(0, 0, 0, .2);
  }

  .md\:hover\:border-black-30:hover {
    border-color: rgba(0, 0, 0, .3);
  }

  .md\:hover\:border-black-40:hover {
    border-color: rgba(0, 0, 0, .4);
  }

  .md\:hover\:border-black-50:hover {
    border-color: rgba(0, 0, 0, .5);
  }

  .md\:hover\:border-black-60:hover {
    border-color: rgba(0, 0, 0, .6);
  }

  .md\:hover\:border-black-70:hover {
    border-color: rgba(0, 0, 0, .7);
  }

  .md\:hover\:border-black-80:hover {
    border-color: rgba(0, 0, 0, .8);
  }

  .md\:hover\:border-black-90:hover {
    border-color: rgba(0, 0, 0, .9);
  }

  .md\:hover\:border-black-1:hover {
    border-color: #313131;
  }

  .md\:hover\:border-white:hover {
    border-color: #fff;
  }

  .md\:hover\:border-blue:hover {
    border-color: #0277bd;
  }

  .md\:hover\:border-dark-blue:hover {
    border-color: #0277bd;
  }

  .md\:hover\:border-blue-1:hover {
    border-color: #17214a;
  }

  .md\:hover\:border-light-blue:hover {
    border-color: #0277bd;
  }

  .md\:hover\:border-red:hover {
    border-color: #cb001c;
  }

  .md\:hover\:border-green:hover {
    border-color: #00bea0;
  }

  .md\:hover\:border-purple:hover {
    border-color: #5a80d1;
  }

  .md\:hover\:border-orange:hover {
    border-color: #ff9a0a;
  }

  .md\:hover\:border-grey:hover {
    border-color: #929a9d;
  }

  .md\:hover\:border-grey-light:hover {
    border-color: #e2e2e2;
  }

  .md\:hover\:border-grey-1:hover {
    border-color: #f2f3f3;
  }

  .md\:hover\:border-grey-2:hover {
    border-color: #c2c6c8;
  }

  .md\:hover\:border-grey-3:hover {
    border-color: #6b7375;
  }

  .md\:hover\:border-grey-4:hover {
    border-color: #465052;
  }

  .md\:hover\:border-grey-5:hover {
    border-color: #828688;
  }

  .md\:hover\:border-sd-red:hover {
    border-color: #ed1c24;
  }

  .md\:hover\:border-light-blue-1:hover {
    border-color: #21b8de;
  }

  .md\:hover\:border-dark-blue-1:hover {
    border-color: #0277bd;
  }

  .md\:hover\:border-dark-orange:hover {
    border-color: #df8403;
  }

  .md\:hover\:border-g-blue:hover {
    border-color: #17214a;
  }

  .md\:hover\:border-g-blue-1:hover {
    border-color: #556d88;
  }

  .md\:hover\:border-g-blue-2:hover {
    border-color: #3c4c65;
  }

  .md\:hover\:border-g-blue-3:hover {
    border-color: #222e4d;
  }

  .md\:rounded-none {
    border-radius: 0;
  }

  .md\:rounded-sm {
    border-radius: .125rem;
  }

  .md\:rounded {
    border-radius: .25rem;
  }

  .md\:rounded-lg {
    border-radius: .5rem;
  }

  .md\:rounded-full {
    border-radius: 9999px;
  }

  .md\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .md\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .md\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .md\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .md\:rounded-t-sm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .md\:rounded-r-sm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .md\:rounded-b-sm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .md\:rounded-l-sm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .md\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .md\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .md\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .md\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .md\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .md\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .md\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .md\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .md\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .md\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .md\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .md\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .md\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .md\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .md\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .md\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .md\:rounded-tl-sm {
    border-top-left-radius: .125rem;
  }

  .md\:rounded-tr-sm {
    border-top-right-radius: .125rem;
  }

  .md\:rounded-br-sm {
    border-bottom-right-radius: .125rem;
  }

  .md\:rounded-bl-sm {
    border-bottom-left-radius: .125rem;
  }

  .md\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .md\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .md\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .md\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .md\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .md\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .md\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .md\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .md\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .md\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .md\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .md\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .md\:border-solid {
    border-style: solid;
  }

  .md\:border-dashed {
    border-style: dashed;
  }

  .md\:border-dotted {
    border-style: dotted;
  }

  .md\:border-none {
    border-style: none;
  }

  .md\:border-0 {
    border-width: 0;
  }

  .md\:border-2 {
    border-width: 2px;
  }

  .md\:border-3 {
    border-width: 3px;
  }

  .md\:border-4 {
    border-width: 4px;
  }

  .md\:border-5 {
    border-width: 5px;
  }

  .md\:border-6 {
    border-width: 6px;
  }

  .md\:border-7 {
    border-width: 7px;
  }

  .md\:border-8 {
    border-width: 8px;
  }

  .md\:border-9 {
    border-width: 9px;
  }

  .md\:border-10 {
    border-width: 10px;
  }

  .md\:border {
    border-width: 1px;
  }

  .md\:border-t-0 {
    border-top-width: 0;
  }

  .md\:border-r-0 {
    border-right-width: 0;
  }

  .md\:border-b-0 {
    border-bottom-width: 0;
  }

  .md\:border-l-0 {
    border-left-width: 0;
  }

  .md\:border-t-2 {
    border-top-width: 2px;
  }

  .md\:border-r-2 {
    border-right-width: 2px;
  }

  .md\:border-b-2 {
    border-bottom-width: 2px;
  }

  .md\:border-l-2 {
    border-left-width: 2px;
  }

  .md\:border-t-3 {
    border-top-width: 3px;
  }

  .md\:border-r-3 {
    border-right-width: 3px;
  }

  .md\:border-b-3 {
    border-bottom-width: 3px;
  }

  .md\:border-l-3 {
    border-left-width: 3px;
  }

  .md\:border-t-4 {
    border-top-width: 4px;
  }

  .md\:border-r-4 {
    border-right-width: 4px;
  }

  .md\:border-b-4 {
    border-bottom-width: 4px;
  }

  .md\:border-l-4 {
    border-left-width: 4px;
  }

  .md\:border-t-5 {
    border-top-width: 5px;
  }

  .md\:border-r-5 {
    border-right-width: 5px;
  }

  .md\:border-b-5 {
    border-bottom-width: 5px;
  }

  .md\:border-l-5 {
    border-left-width: 5px;
  }

  .md\:border-t-6 {
    border-top-width: 6px;
  }

  .md\:border-r-6 {
    border-right-width: 6px;
  }

  .md\:border-b-6 {
    border-bottom-width: 6px;
  }

  .md\:border-l-6 {
    border-left-width: 6px;
  }

  .md\:border-t-7 {
    border-top-width: 7px;
  }

  .md\:border-r-7 {
    border-right-width: 7px;
  }

  .md\:border-b-7 {
    border-bottom-width: 7px;
  }

  .md\:border-l-7 {
    border-left-width: 7px;
  }

  .md\:border-t-8 {
    border-top-width: 8px;
  }

  .md\:border-r-8 {
    border-right-width: 8px;
  }

  .md\:border-b-8 {
    border-bottom-width: 8px;
  }

  .md\:border-l-8 {
    border-left-width: 8px;
  }

  .md\:border-t-9 {
    border-top-width: 9px;
  }

  .md\:border-r-9 {
    border-right-width: 9px;
  }

  .md\:border-b-9 {
    border-bottom-width: 9px;
  }

  .md\:border-l-9 {
    border-left-width: 9px;
  }

  .md\:border-t-10 {
    border-top-width: 10px;
  }

  .md\:border-r-10 {
    border-right-width: 10px;
  }

  .md\:border-b-10 {
    border-bottom-width: 10px;
  }

  .md\:border-l-10 {
    border-left-width: 10px;
  }

  .md\:border-t {
    border-top-width: 1px;
  }

  .md\:border-r {
    border-right-width: 1px;
  }

  .md\:border-b {
    border-bottom-width: 1px;
  }

  .md\:border-l {
    border-left-width: 1px;
  }

  .md\:cursor-auto {
    cursor: auto;
  }

  .md\:cursor-default {
    cursor: default;
  }

  .md\:cursor-pointer {
    cursor: pointer;
  }

  .md\:cursor-wait {
    cursor: wait;
  }

  .md\:cursor-move {
    cursor: move;
  }

  .md\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .md\:block {
    display: block;
  }

  .md\:inline-block {
    display: inline-block;
  }

  .md\:inline {
    display: inline;
  }

  .md\:table {
    display: table;
  }

  .md\:table-row {
    display: table-row;
  }

  .md\:table-cell {
    display: table-cell;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex {
    display: -webkit-box;
    display: flex;
  }

  .md\:inline-flex {
    display: -webkit-inline-box;
    display: inline-flex;
  }

  .md\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .md\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }

  .md\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .md\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }

  .md\:flex-wrap {
    flex-wrap: wrap;
  }

  .md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .md\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .md\:items-start {
    -webkit-box-align: start;
            align-items: flex-start;
  }

  .md\:items-end {
    -webkit-box-align: end;
            align-items: flex-end;
  }

  .md\:items-center {
    -webkit-box-align: center;
            align-items: center;
  }

  .md\:items-baseline {
    -webkit-box-align: baseline;
            align-items: baseline;
  }

  .md\:items-stretch {
    -webkit-box-align: stretch;
            align-items: stretch;
  }

  .md\:self-auto {
    align-self: auto;
  }

  .md\:self-start {
    align-self: flex-start;
  }

  .md\:self-end {
    align-self: flex-end;
  }

  .md\:self-center {
    align-self: center;
  }

  .md\:self-stretch {
    align-self: stretch;
  }

  .md\:justify-start {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }

  .md\:justify-end {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }

  .md\:justify-center {
    -webkit-box-pack: center;
            justify-content: center;
  }

  .md\:justify-between {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }

  .md\:justify-around {
    justify-content: space-around;
  }

  .md\:content-center {
    align-content: center;
  }

  .md\:content-start {
    align-content: flex-start;
  }

  .md\:content-end {
    align-content: flex-end;
  }

  .md\:content-between {
    align-content: space-between;
  }

  .md\:content-around {
    align-content: space-around;
  }

  .md\:flex-1 {
    -webkit-box-flex: 1;
            flex: 1;
  }

  .md\:flex-auto {
    -webkit-box-flex: 1;
            flex: auto;
  }

  .md\:flex-initial {
    -webkit-box-flex: initial;
            flex: initial;
  }

  .md\:flex-none {
    -webkit-box-flex: 0;
            flex: none;
  }

  .md\:flex-grow {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }

  .md\:flex-shrink {
    flex-shrink: 1;
  }

  .md\:flex-no-grow {
    -webkit-box-flex: 0;
            flex-grow: 0;
  }

  .md\:flex-no-shrink {
    flex-shrink: 0;
  }

  .md\:float-right {
    float: right;
  }

  .md\:float-left {
    float: left;
  }

  .md\:float-none {
    float: none;
  }

  .md\:clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  .md\:font-Roboto {
    font-family: Roboto;
  }

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

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

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

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

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

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

  .md\:font-xxbold {
    font-weight: 900;
  }

  .md\:hover\:font-light:hover {
    font-weight: 300;
  }

  .md\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .md\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .md\:hover\:font-semibold:hover {
    font-weight: 600;
  }

  .md\:hover\:font-bold:hover {
    font-weight: 700;
  }

  .md\:hover\:font-extrabold:hover {
    font-weight: 800;
  }

  .md\:hover\:font-xxbold:hover {
    font-weight: 900;
  }

  .md\:h-0 {
    height: 0;
  }

  .md\:h-1 {
    height: .25rem;
  }

  .md\:h-2 {
    height: .5rem;
  }

  .md\:h-3 {
    height: .75rem;
  }

  .md\:h-4 {
    height: 1rem;
  }

  .md\:h-5 {
    height: 1.25rem;
  }

  .md\:h-6 {
    height: 1.5rem;
  }

  .md\:h-7 {
    height: 1.75rem;
  }

  .md\:h-8 {
    height: 2rem;
  }

  .md\:h-9 {
    height: 2.25rem;
  }

  .md\:h-10 {
    height: 2.5rem;
  }

  .md\:h-12 {
    height: 3rem;
  }

  .md\:h-14 {
    height: 3.5rem;
  }

  .md\:h-16 {
    height: 4rem;
  }

  .md\:h-18 {
    height: 4.5rem;
  }

  .md\:h-24 {
    height: 6rem;
  }

  .md\:h-32 {
    height: 8rem;
  }

  .md\:h-48 {
    height: 12rem;
  }

  .md\:h-64 {
    height: 16rem;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:h-px {
    height: 1px;
  }

  .md\:h-2px {
    height: 2px;
  }

  .md\:h-42px {
    height: 2.625rem;
  }

  .md\:h-50px {
    height: 50px;
  }

  .md\:h-100px {
    height: 100px;
  }

  .md\:h-125px {
    height: 125px;
  }

  .md\:h-150px {
    height: 150px;
  }

  .md\:h-175px {
    height: 175px;
  }

  .md\:h-200px {
    height: 200px;
  }

  .md\:h-225px {
    height: 225px;
  }

  .md\:h-250px {
    height: 250px;
  }

  .md\:h-275px {
    height: 275px;
  }

  .md\:h-300px {
    height: 300px;
  }

  .md\:h-325px {
    height: 325px;
  }

  .md\:h-350px {
    height: 350px;
  }

  .md\:h-375px {
    height: 375px;
  }

  .md\:h-400px {
    height: 400px;
  }

  .md\:h-500px {
    height: 500px;
  }

  .md\:h-576px {
    height: 576px;
  }

  .md\:h-600px {
    height: 600px;
  }

  .md\:h-700px {
    height: 700px;
  }

  .md\:h-768px {
    height: 768px;
  }

  .md\:h-800px {
    height: 800px;
  }

  .md\:h-900px {
    height: 900px;
  }

  .md\:h-992px {
    height: 992px;
  }

  .md\:h-1000px {
    height: 1000px;
  }

  .md\:h-1140px {
    height: 1140px;
  }

  .md\:h-1200px {
    height: 1200px;
  }

  .md\:h-1460px {
    height: 1460px;
  }

  .md\:h-1600px {
    height: 1600px;
  }

  .md\:h-screen {
    height: 100vh;
  }

  .md\:h-half {
    height: 50%;
  }

  .md\:h-quarter {
    height: 75%;
  }

  .md\:h-85\% {
    height: 85%;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:hover\:h-0:hover {
    height: 0;
  }

  .md\:hover\:h-1:hover {
    height: .25rem;
  }

  .md\:hover\:h-2:hover {
    height: .5rem;
  }

  .md\:hover\:h-3:hover {
    height: .75rem;
  }

  .md\:hover\:h-4:hover {
    height: 1rem;
  }

  .md\:hover\:h-5:hover {
    height: 1.25rem;
  }

  .md\:hover\:h-6:hover {
    height: 1.5rem;
  }

  .md\:hover\:h-7:hover {
    height: 1.75rem;
  }

  .md\:hover\:h-8:hover {
    height: 2rem;
  }

  .md\:hover\:h-9:hover {
    height: 2.25rem;
  }

  .md\:hover\:h-10:hover {
    height: 2.5rem;
  }

  .md\:hover\:h-12:hover {
    height: 3rem;
  }

  .md\:hover\:h-14:hover {
    height: 3.5rem;
  }

  .md\:hover\:h-16:hover {
    height: 4rem;
  }

  .md\:hover\:h-18:hover {
    height: 4.5rem;
  }

  .md\:hover\:h-24:hover {
    height: 6rem;
  }

  .md\:hover\:h-32:hover {
    height: 8rem;
  }

  .md\:hover\:h-48:hover {
    height: 12rem;
  }

  .md\:hover\:h-64:hover {
    height: 16rem;
  }

  .md\:hover\:h-auto:hover {
    height: auto;
  }

  .md\:hover\:h-px:hover {
    height: 1px;
  }

  .md\:hover\:h-2px:hover {
    height: 2px;
  }

  .md\:hover\:h-42px:hover {
    height: 2.625rem;
  }

  .md\:hover\:h-50px:hover {
    height: 50px;
  }

  .md\:hover\:h-100px:hover {
    height: 100px;
  }

  .md\:hover\:h-125px:hover {
    height: 125px;
  }

  .md\:hover\:h-150px:hover {
    height: 150px;
  }

  .md\:hover\:h-175px:hover {
    height: 175px;
  }

  .md\:hover\:h-200px:hover {
    height: 200px;
  }

  .md\:hover\:h-225px:hover {
    height: 225px;
  }

  .md\:hover\:h-250px:hover {
    height: 250px;
  }

  .md\:hover\:h-275px:hover {
    height: 275px;
  }

  .md\:hover\:h-300px:hover {
    height: 300px;
  }

  .md\:hover\:h-325px:hover {
    height: 325px;
  }

  .md\:hover\:h-350px:hover {
    height: 350px;
  }

  .md\:hover\:h-375px:hover {
    height: 375px;
  }

  .md\:hover\:h-400px:hover {
    height: 400px;
  }

  .md\:hover\:h-500px:hover {
    height: 500px;
  }

  .md\:hover\:h-576px:hover {
    height: 576px;
  }

  .md\:hover\:h-600px:hover {
    height: 600px;
  }

  .md\:hover\:h-700px:hover {
    height: 700px;
  }

  .md\:hover\:h-768px:hover {
    height: 768px;
  }

  .md\:hover\:h-800px:hover {
    height: 800px;
  }

  .md\:hover\:h-900px:hover {
    height: 900px;
  }

  .md\:hover\:h-992px:hover {
    height: 992px;
  }

  .md\:hover\:h-1000px:hover {
    height: 1000px;
  }

  .md\:hover\:h-1140px:hover {
    height: 1140px;
  }

  .md\:hover\:h-1200px:hover {
    height: 1200px;
  }

  .md\:hover\:h-1460px:hover {
    height: 1460px;
  }

  .md\:hover\:h-1600px:hover {
    height: 1600px;
  }

  .md\:hover\:h-screen:hover {
    height: 100vh;
  }

  .md\:hover\:h-half:hover {
    height: 50%;
  }

  .md\:hover\:h-quarter:hover {
    height: 75%;
  }

  .md\:hover\:h-85\%:hover {
    height: 85%;
  }

  .md\:hover\:h-full:hover {
    height: 100%;
  }

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

  .md\:leading-heading {
    line-height: 1.1;
  }

  .md\:leading-tight {
    line-height: 1.2;
  }

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

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

  .md\:m-0 {
    margin: 0;
  }

  .md\:m-1 {
    margin: .25rem;
  }

  .md\:m-2 {
    margin: .5rem;
  }

  .md\:m-3 {
    margin: .75rem;
  }

  .md\:m-4 {
    margin: 1rem;
  }

  .md\:m-5 {
    margin: 1.25rem;
  }

  .md\:m-6 {
    margin: 1.5rem;
  }

  .md\:m-7 {
    margin: 1.75rem;
  }

  .md\:m-8 {
    margin: 2rem;
  }

  .md\:m-9 {
    margin: 2.25rem;
  }

  .md\:m-10 {
    margin: 2.5rem;
  }

  .md\:m-12 {
    margin: 3rem;
  }

  .md\:m-16 {
    margin: 4rem;
  }

  .md\:m-20 {
    margin: 5rem;
  }

  .md\:m-24 {
    margin: 6rem;
  }

  .md\:m-28 {
    margin: 7rem;
  }

  .md\:m-32 {
    margin: 8rem;
  }

  .md\:m-36 {
    margin: 9rem;
  }

  .md\:m-40 {
    margin: 10rem;
  }

  .md\:m-44 {
    margin: 11rem;
  }

  .md\:m-48 {
    margin: 12rem;
  }

  .md\:m-56 {
    margin: 14rem;
  }

  .md\:m-60 {
    margin: 15rem;
  }

  .md\:m-64 {
    margin: 16rem;
  }

  .md\:m-80 {
    margin: 20rem;
  }

  .md\:m-96 {
    margin: 24rem;
  }

  .md\:m-120 {
    margin: 30rem;
  }

  .md\:m-160 {
    margin: 40rem;
  }

  .md\:m-auto {
    margin: auto;
  }

  .md\:m-px {
    margin: 1px;
  }

  .md\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .md\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .md\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .md\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .md\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .md\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .md\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .md\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .md\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .md\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .md\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .md\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .md\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .md\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .md\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .md\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .md\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .md\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .md\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .md\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .md\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .md\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .md\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .md\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .md\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .md\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .md\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .md\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .md\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .md\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .md\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .md\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .md\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .md\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .md\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .md\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .md\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .md\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .md\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .md\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .md\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .md\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .md\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .md\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .md\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .md\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .md\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .md\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .md\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .md\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .md\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .md\:my-120 {
    margin-top: 30rem;
    margin-bottom: 30rem;
  }

  .md\:mx-120 {
    margin-left: 30rem;
    margin-right: 30rem;
  }

  .md\:my-160 {
    margin-top: 40rem;
    margin-bottom: 40rem;
  }

  .md\:mx-160 {
    margin-left: 40rem;
    margin-right: 40rem;
  }

  .md\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .md\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:mr-0 {
    margin-right: 0;
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }

  .md\:ml-0 {
    margin-left: 0;
  }

  .md\:mt-1 {
    margin-top: .25rem;
  }

  .md\:mr-1 {
    margin-right: .25rem;
  }

  .md\:mb-1 {
    margin-bottom: .25rem;
  }

  .md\:ml-1 {
    margin-left: .25rem;
  }

  .md\:mt-2 {
    margin-top: .5rem;
  }

  .md\:mr-2 {
    margin-right: .5rem;
  }

  .md\:mb-2 {
    margin-bottom: .5rem;
  }

  .md\:ml-2 {
    margin-left: .5rem;
  }

  .md\:mt-3 {
    margin-top: .75rem;
  }

  .md\:mr-3 {
    margin-right: .75rem;
  }

  .md\:mb-3 {
    margin-bottom: .75rem;
  }

  .md\:ml-3 {
    margin-left: .75rem;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mr-4 {
    margin-right: 1rem;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:mt-5 {
    margin-top: 1.25rem;
  }

  .md\:mr-5 {
    margin-right: 1.25rem;
  }

  .md\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .md\:ml-5 {
    margin-left: 1.25rem;
  }

  .md\:mt-6 {
    margin-top: 1.5rem;
  }

  .md\:mr-6 {
    margin-right: 1.5rem;
  }

  .md\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .md\:ml-6 {
    margin-left: 1.5rem;
  }

  .md\:mt-7 {
    margin-top: 1.75rem;
  }

  .md\:mr-7 {
    margin-right: 1.75rem;
  }

  .md\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .md\:ml-7 {
    margin-left: 1.75rem;
  }

  .md\:mt-8 {
    margin-top: 2rem;
  }

  .md\:mr-8 {
    margin-right: 2rem;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:ml-8 {
    margin-left: 2rem;
  }

  .md\:mt-9 {
    margin-top: 2.25rem;
  }

  .md\:mr-9 {
    margin-right: 2.25rem;
  }

  .md\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .md\:ml-9 {
    margin-left: 2.25rem;
  }

  .md\:mt-10 {
    margin-top: 2.5rem;
  }

  .md\:mr-10 {
    margin-right: 2.5rem;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:ml-10 {
    margin-left: 2.5rem;
  }

  .md\:mt-12 {
    margin-top: 3rem;
  }

  .md\:mr-12 {
    margin-right: 3rem;
  }

  .md\:mb-12 {
    margin-bottom: 3rem;
  }

  .md\:ml-12 {
    margin-left: 3rem;
  }

  .md\:mt-16 {
    margin-top: 4rem;
  }

  .md\:mr-16 {
    margin-right: 4rem;
  }

  .md\:mb-16 {
    margin-bottom: 4rem;
  }

  .md\:ml-16 {
    margin-left: 4rem;
  }

  .md\:mt-20 {
    margin-top: 5rem;
  }

  .md\:mr-20 {
    margin-right: 5rem;
  }

  .md\:mb-20 {
    margin-bottom: 5rem;
  }

  .md\:ml-20 {
    margin-left: 5rem;
  }

  .md\:mt-24 {
    margin-top: 6rem;
  }

  .md\:mr-24 {
    margin-right: 6rem;
  }

  .md\:mb-24 {
    margin-bottom: 6rem;
  }

  .md\:ml-24 {
    margin-left: 6rem;
  }

  .md\:mt-28 {
    margin-top: 7rem;
  }

  .md\:mr-28 {
    margin-right: 7rem;
  }

  .md\:mb-28 {
    margin-bottom: 7rem;
  }

  .md\:ml-28 {
    margin-left: 7rem;
  }

  .md\:mt-32 {
    margin-top: 8rem;
  }

  .md\:mr-32 {
    margin-right: 8rem;
  }

  .md\:mb-32 {
    margin-bottom: 8rem;
  }

  .md\:ml-32 {
    margin-left: 8rem;
  }

  .md\:mt-36 {
    margin-top: 9rem;
  }

  .md\:mr-36 {
    margin-right: 9rem;
  }

  .md\:mb-36 {
    margin-bottom: 9rem;
  }

  .md\:ml-36 {
    margin-left: 9rem;
  }

  .md\:mt-40 {
    margin-top: 10rem;
  }

  .md\:mr-40 {
    margin-right: 10rem;
  }

  .md\:mb-40 {
    margin-bottom: 10rem;
  }

  .md\:ml-40 {
    margin-left: 10rem;
  }

  .md\:mt-44 {
    margin-top: 11rem;
  }

  .md\:mr-44 {
    margin-right: 11rem;
  }

  .md\:mb-44 {
    margin-bottom: 11rem;
  }

  .md\:ml-44 {
    margin-left: 11rem;
  }

  .md\:mt-48 {
    margin-top: 12rem;
  }

  .md\:mr-48 {
    margin-right: 12rem;
  }

  .md\:mb-48 {
    margin-bottom: 12rem;
  }

  .md\:ml-48 {
    margin-left: 12rem;
  }

  .md\:mt-56 {
    margin-top: 14rem;
  }

  .md\:mr-56 {
    margin-right: 14rem;
  }

  .md\:mb-56 {
    margin-bottom: 14rem;
  }

  .md\:ml-56 {
    margin-left: 14rem;
  }

  .md\:mt-60 {
    margin-top: 15rem;
  }

  .md\:mr-60 {
    margin-right: 15rem;
  }

  .md\:mb-60 {
    margin-bottom: 15rem;
  }

  .md\:ml-60 {
    margin-left: 15rem;
  }

  .md\:mt-64 {
    margin-top: 16rem;
  }

  .md\:mr-64 {
    margin-right: 16rem;
  }

  .md\:mb-64 {
    margin-bottom: 16rem;
  }

  .md\:ml-64 {
    margin-left: 16rem;
  }

  .md\:mt-80 {
    margin-top: 20rem;
  }

  .md\:mr-80 {
    margin-right: 20rem;
  }

  .md\:mb-80 {
    margin-bottom: 20rem;
  }

  .md\:ml-80 {
    margin-left: 20rem;
  }

  .md\:mt-96 {
    margin-top: 24rem;
  }

  .md\:mr-96 {
    margin-right: 24rem;
  }

  .md\:mb-96 {
    margin-bottom: 24rem;
  }

  .md\:ml-96 {
    margin-left: 24rem;
  }

  .md\:mt-120 {
    margin-top: 30rem;
  }

  .md\:mr-120 {
    margin-right: 30rem;
  }

  .md\:mb-120 {
    margin-bottom: 30rem;
  }

  .md\:ml-120 {
    margin-left: 30rem;
  }

  .md\:mt-160 {
    margin-top: 40rem;
  }

  .md\:mr-160 {
    margin-right: 40rem;
  }

  .md\:mb-160 {
    margin-bottom: 40rem;
  }

  .md\:ml-160 {
    margin-left: 40rem;
  }

  .md\:mt-auto {
    margin-top: auto;
  }

  .md\:mr-auto {
    margin-right: auto;
  }

  .md\:mb-auto {
    margin-bottom: auto;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:mt-px {
    margin-top: 1px;
  }

  .md\:mr-px {
    margin-right: 1px;
  }

  .md\:mb-px {
    margin-bottom: 1px;
  }

  .md\:ml-px {
    margin-left: 1px;
  }

  .md\:max-h-0 {
    max-height: 0;
  }

  .md\:max-h-1 {
    max-height: .25rem;
  }

  .md\:max-h-2 {
    max-height: .5rem;
  }

  .md\:max-h-3 {
    max-height: .75rem;
  }

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

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

  .md\:max-h-6 {
    max-height: 1.5rem;
  }

  .md\:max-h-7 {
    max-height: 1.75rem;
  }

  .md\:max-h-8 {
    max-height: 2rem;
  }

  .md\:max-h-9 {
    max-height: 2.25rem;
  }

  .md\:max-h-10 {
    max-height: 2.5rem;
  }

  .md\:max-h-12 {
    max-height: 3rem;
  }

  .md\:max-h-14 {
    max-height: 3.5rem;
  }

  .md\:max-h-16 {
    max-height: 4rem;
  }

  .md\:max-h-24 {
    max-height: 6rem;
  }

  .md\:max-h-32 {
    max-height: 8rem;
  }

  .md\:max-h-40 {
    max-height: 10rem;
  }

  .md\:max-h-48 {
    max-height: 12rem;
  }

  .md\:max-h-64 {
    max-height: 16rem;
  }

  .md\:max-h-70 {
    max-height: 18rem;
  }

  .md\:max-h-80 {
    max-height: 20rem;
  }

  .md\:max-h-96 {
    max-height: 24rem;
  }

  .md\:max-h-112 {
    max-height: 28rem;
  }

  .md\:max-h-128 {
    max-height: 32rem;
  }

  .md\:max-h-600 {
    max-height: 600px;
  }

  .md\:max-h-700 {
    max-height: 700px;
  }

  .md\:max-h-unset {
    max-height: unset;
  }

  .md\:max-h-none {
    max-height: none;
  }

  .md\:max-h-px {
    max-height: 1px;
  }

  .md\:max-h-2px {
    max-height: 2px;
  }

  .md\:max-h-100px {
    max-height: 100px;
  }

  .md\:max-h-125px {
    max-height: 125px;
  }

  .md\:max-h-150px {
    max-height: 150px;
  }

  .md\:max-h-175px {
    max-height: 175px;
  }

  .md\:max-h-200px {
    max-height: 200px;
  }

  .md\:max-h-225px {
    max-height: 225px;
  }

  .md\:max-h-250px {
    max-height: 250px;
  }

  .md\:max-h-275px {
    max-height: 275px;
  }

  .md\:max-h-300px {
    max-height: 300px;
  }

  .md\:max-h-325px {
    max-height: 325px;
  }

  .md\:max-h-350px {
    max-height: 350px;
  }

  .md\:max-h-375px {
    max-height: 375px;
  }

  .md\:max-h-400px {
    max-height: 400px;
  }

  .md\:max-h-450px {
    max-height: 450px;
  }

  .md\:max-h-475px {
    max-height: 475px;
  }

  .md\:max-h-500px {
    max-height: 500px;
  }

  .md\:max-h-768px {
    max-height: 768px;
  }

  .md\:max-h-800px {
    max-height: 800px;
  }

  .md\:max-h-900px {
    max-height: 900px;
  }

  .md\:max-h-992px {
    max-height: 992px;
  }

  .md\:max-h-1000px {
    max-height: 1000px;
  }

  .md\:max-h-1140px {
    max-height: 1140px;
  }

  .md\:max-h-1200px {
    max-height: 1200px;
  }

  .md\:max-h-1460px {
    max-height: 1460px;
  }

  .md\:max-h-1600px {
    max-height: 1600px;
  }

  .md\:max-h-screen {
    max-height: 100vw;
  }

  .md\:max-h-half {
    max-height: 50%;
  }

  .md\:max-h-quarter {
    max-height: 75%;
  }

  .md\:max-h-85\% {
    max-height: 85%;
  }

  .md\:max-h-full {
    max-height: 100%;
  }

  .md\:max-w-0 {
    max-width: 0;
  }

  .md\:max-w-1 {
    max-width: .25rem;
  }

  .md\:max-w-2 {
    max-width: .5rem;
  }

  .md\:max-w-3 {
    max-width: .75rem;
  }

  .md\:max-w-4 {
    max-width: 1rem;
  }

  .md\:max-w-5 {
    max-width: 1.25rem;
  }

  .md\:max-w-6 {
    max-width: 1.5rem;
  }

  .md\:max-w-7 {
    max-width: 1.75rem;
  }

  .md\:max-w-8 {
    max-width: 2rem;
  }

  .md\:max-w-9 {
    max-width: 2.25rem;
  }

  .md\:max-w-10 {
    max-width: 2.5rem;
  }

  .md\:max-w-12 {
    max-width: 3rem;
  }

  .md\:max-w-14 {
    max-width: 3.5rem;
  }

  .md\:max-w-16 {
    max-width: 4rem;
  }

  .md\:max-w-24 {
    max-width: 6rem;
  }

  .md\:max-w-32 {
    max-width: 8rem;
  }

  .md\:max-w-40 {
    max-width: 10rem;
  }

  .md\:max-w-48 {
    max-width: 12rem;
  }

  .md\:max-w-64 {
    max-width: 16rem;
  }

  .md\:max-w-70 {
    max-width: 18rem;
  }

  .md\:max-w-80 {
    max-width: 20rem;
  }

  .md\:max-w-96 {
    max-width: 24rem;
  }

  .md\:max-w-112 {
    max-width: 28rem;
  }

  .md\:max-w-128 {
    max-width: 32rem;
  }

  .md\:max-w-600 {
    max-width: 600px;
  }

  .md\:max-w-700 {
    max-width: 700px;
  }

  .md\:max-w-none {
    max-width: none;
  }

  .md\:max-w-px {
    max-width: 1px;
  }

  .md\:max-w-2px {
    max-width: 2px;
  }

  .md\:max-w-100px {
    max-width: 100px;
  }

  .md\:max-w-125px {
    max-width: 125px;
  }

  .md\:max-w-150px {
    max-width: 150px;
  }

  .md\:max-w-175px {
    max-width: 175px;
  }

  .md\:max-w-200px {
    max-width: 200px;
  }

  .md\:max-w-225px {
    max-width: 225px;
  }

  .md\:max-w-250px {
    max-width: 250px;
  }

  .md\:max-w-275px {
    max-width: 275px;
  }

  .md\:max-w-300px {
    max-width: 300px;
  }

  .md\:max-w-325px {
    max-width: 325px;
  }

  .md\:max-w-350px {
    max-width: 350px;
  }

  .md\:max-w-375px {
    max-width: 375px;
  }

  .md\:max-w-400px {
    max-width: 400px;
  }

  .md\:max-w-450px {
    max-width: 450px;
  }

  .md\:max-w-475px {
    max-width: 475px;
  }

  .md\:max-w-500px {
    max-width: 500px;
  }

  .md\:max-w-768px {
    max-width: 768px;
  }

  .md\:max-w-800px {
    max-width: 800px;
  }

  .md\:max-w-900px {
    max-width: 900px;
  }

  .md\:max-w-992px {
    max-width: 992px;
  }

  .md\:max-w-1000px {
    max-width: 1000px;
  }

  .md\:max-w-1140px {
    max-width: 1140px;
  }

  .md\:max-w-1200px {
    max-width: 1200px;
  }

  .md\:max-w-1460px {
    max-width: 1460px;
  }

  .md\:max-w-1600px {
    max-width: 1600px;
  }

  .md\:max-w-screen {
    max-width: 100vw;
  }

  .md\:max-w-half {
    max-width: 50%;
  }

  .md\:max-w-quarter {
    max-width: 75%;
  }

  .md\:max-w-85\% {
    max-width: 85%;
  }

  .md\:max-w-full {
    max-width: 100%;
  }

  .md\:min-h-0 {
    min-height: 0;
  }

  .md\:min-h-1 {
    min-height: .25rem;
  }

  .md\:min-h-2 {
    min-height: .5rem;
  }

  .md\:min-h-3 {
    min-height: .75rem;
  }

  .md\:min-h-4 {
    min-height: 1rem;
  }

  .md\:min-h-5 {
    min-height: 1.25rem;
  }

  .md\:min-h-6 {
    min-height: 1.5rem;
  }

  .md\:min-h-7 {
    min-height: 1.75rem;
  }

  .md\:min-h-8 {
    min-height: 2rem;
  }

  .md\:min-h-9 {
    min-height: 2.25rem;
  }

  .md\:min-h-10 {
    min-height: 2.5rem;
  }

  .md\:min-h-12 {
    min-height: 3rem;
  }

  .md\:min-h-14 {
    min-height: 3.5rem;
  }

  .md\:min-h-16 {
    min-height: 4rem;
  }

  .md\:min-h-24 {
    min-height: 6rem;
  }

  .md\:min-h-32 {
    min-height: 8rem;
  }

  .md\:min-h-40 {
    min-height: 10rem;
  }

  .md\:min-h-48 {
    min-height: 12rem;
  }

  .md\:min-h-64 {
    min-height: 16rem;
  }

  .md\:min-h-70 {
    min-height: 18rem;
  }

  .md\:min-h-80 {
    min-height: 20rem;
  }

  .md\:min-h-96 {
    min-height: 24rem;
  }

  .md\:min-h-112 {
    min-height: 28rem;
  }

  .md\:min-h-128 {
    min-height: 32rem;
  }

  .md\:min-h-600 {
    min-height: 600px;
  }

  .md\:min-h-700 {
    min-height: 700px;
  }

  .md\:min-h-px {
    min-height: 1px;
  }

  .md\:min-h-2px {
    min-height: 2px;
  }

  .md\:min-h-100px {
    min-height: 100px;
  }

  .md\:min-h-125px {
    min-height: 125px;
  }

  .md\:min-h-150px {
    min-height: 150px;
  }

  .md\:min-h-175px {
    min-height: 175px;
  }

  .md\:min-h-200px {
    min-height: 200px;
  }

  .md\:min-h-225px {
    min-height: 225px;
  }

  .md\:min-h-250px {
    min-height: 250px;
  }

  .md\:min-h-275px {
    min-height: 275px;
  }

  .md\:min-h-300px {
    min-height: 300px;
  }

  .md\:min-h-325px {
    min-height: 325px;
  }

  .md\:min-h-350px {
    min-height: 350px;
  }

  .md\:min-h-375px {
    min-height: 375px;
  }

  .md\:min-h-400px {
    min-height: 400px;
  }

  .md\:min-h-450px {
    min-height: 450px;
  }

  .md\:min-h-475px {
    min-height: 475px;
  }

  .md\:min-h-500px {
    min-height: 500px;
  }

  .md\:min-h-768px {
    min-height: 768px;
  }

  .md\:min-h-800px {
    min-height: 800px;
  }

  .md\:min-h-900px {
    min-height: 900px;
  }

  .md\:min-h-992px {
    min-height: 992px;
  }

  .md\:min-h-1000px {
    min-height: 1000px;
  }

  .md\:min-h-1140px {
    min-height: 1140px;
  }

  .md\:min-h-1200px {
    min-height: 1200px;
  }

  .md\:min-h-1460px {
    min-height: 1460px;
  }

  .md\:min-h-1600px {
    min-height: 1600px;
  }

  .md\:min-h-screen {
    min-height: 100vw;
  }

  .md\:min-h-half {
    min-height: 50%;
  }

  .md\:min-h-quarter {
    min-height: 75%;
  }

  .md\:min-h-85\% {
    min-height: 85%;
  }

  .md\:min-h-full {
    min-height: 100%;
  }

  .md\:min-w-0 {
    min-width: 0;
  }

  .md\:min-w-1 {
    min-width: .25rem;
  }

  .md\:min-w-2 {
    min-width: .5rem;
  }

  .md\:min-w-3 {
    min-width: .75rem;
  }

  .md\:min-w-4 {
    min-width: 1rem;
  }

  .md\:min-w-5 {
    min-width: 1.25rem;
  }

  .md\:min-w-6 {
    min-width: 1.5rem;
  }

  .md\:min-w-7 {
    min-width: 1.75rem;
  }

  .md\:min-w-8 {
    min-width: 2rem;
  }

  .md\:min-w-9 {
    min-width: 2.25rem;
  }

  .md\:min-w-10 {
    min-width: 2.5rem;
  }

  .md\:min-w-12 {
    min-width: 3rem;
  }

  .md\:min-w-16 {
    min-width: 4rem;
  }

  .md\:min-w-24 {
    min-width: 6rem;
  }

  .md\:min-w-32 {
    min-width: 8rem;
  }

  .md\:min-w-40 {
    min-width: 10rem;
  }

  .md\:min-w-48 {
    min-width: 12rem;
  }

  .md\:min-w-64 {
    min-width: 16rem;
  }

  .md\:min-w-70 {
    min-width: 18rem;
  }

  .md\:min-w-80 {
    min-width: 20rem;
  }

  .md\:min-w-96 {
    min-width: 24rem;
  }

  .md\:min-w-112 {
    min-width: 28rem;
  }

  .md\:min-w-128 {
    min-width: 32rem;
  }

  .md\:min-w-auto {
    min-width: auto;
  }

  .md\:min-w-px {
    min-width: 1px;
  }

  .md\:min-w-2px {
    min-width: 2px;
  }

  .md\:min-w-100px {
    min-width: 100px;
  }

  .md\:min-w-125px {
    min-width: 125px;
  }

  .md\:min-w-150px {
    min-width: 150px;
  }

  .md\:min-w-175px {
    min-width: 175px;
  }

  .md\:min-w-200px {
    min-width: 200px;
  }

  .md\:min-w-225px {
    min-width: 225px;
  }

  .md\:min-w-250px {
    min-width: 250px;
  }

  .md\:min-w-275px {
    min-width: 275px;
  }

  .md\:min-w-300px {
    min-width: 300px;
  }

  .md\:min-w-325px {
    min-width: 325px;
  }

  .md\:min-w-350px {
    min-width: 350px;
  }

  .md\:min-w-375px {
    min-width: 375px;
  }

  .md\:min-w-400px {
    min-width: 400px;
  }

  .md\:min-w-450px {
    min-width: 450px;
  }

  .md\:min-w-475px {
    min-width: 475px;
  }

  .md\:min-w-500px {
    min-width: 500px;
  }

  .md\:min-w-576px {
    min-width: 576px;
  }

  .md\:min-w-600px {
    min-width: 600px;
  }

  .md\:min-w-700px {
    min-width: 700px;
  }

  .md\:min-w-768px {
    min-width: 768px;
  }

  .md\:min-w-800px {
    min-width: 800px;
  }

  .md\:min-w-900px {
    min-width: 900px;
  }

  .md\:min-w-992px {
    min-width: 992px;
  }

  .md\:min-w-1000px {
    min-width: 1000px;
  }

  .md\:min-w-1140px {
    min-width: 1140px;
  }

  .md\:min-w-1200px {
    min-width: 1200px;
  }

  .md\:min-w-1460px {
    min-width: 1460px;
  }

  .md\:min-w-1600px {
    min-width: 1600px;
  }

  .md\:min-w-screen {
    min-width: 100vw;
  }

  .md\:min-w-half {
    min-width: 50%;
  }

  .md\:min-w-quarter {
    min-width: 75%;
  }

  .md\:min-w-85\% {
    min-width: 85%;
  }

  .md\:min-w-full {
    min-width: 100%;
  }

  .md\:-m-0 {
    margin: 0;
  }

  .md\:-m-1 {
    margin: -0.25rem;
  }

  .md\:-m-2 {
    margin: -0.5rem;
  }

  .md\:-m-3 {
    margin: -0.75rem;
  }

  .md\:-m-4 {
    margin: -1rem;
  }

  .md\:-m-5 {
    margin: -1.25rem;
  }

  .md\:-m-6 {
    margin: -1.5rem;
  }

  .md\:-m-7 {
    margin: -1.75rem;
  }

  .md\:-m-8 {
    margin: -2rem;
  }

  .md\:-m-9 {
    margin: -2.25rem;
  }

  .md\:-m-10 {
    margin: -2.5rem;
  }

  .md\:-m-12 {
    margin: -3rem;
  }

  .md\:-m-16 {
    margin: -4rem;
  }

  .md\:-m-20 {
    margin: -5rem;
  }

  .md\:-m-24 {
    margin: -6rem;
  }

  .md\:-m-28 {
    margin: -7rem;
  }

  .md\:-m-32 {
    margin: -8rem;
  }

  .md\:-m-36 {
    margin: -9rem;
  }

  .md\:-m-40 {
    margin: -10rem;
  }

  .md\:-m-44 {
    margin: -11rem;
  }

  .md\:-m-48 {
    margin: -12rem;
  }

  .md\:-m-56 {
    margin: -14rem;
  }

  .md\:-m-60 {
    margin: -15rem;
  }

  .md\:-m-64 {
    margin: -16rem;
  }

  .md\:-m-80 {
    margin: -20rem;
  }

  .md\:-m-96 {
    margin: -24rem;
  }

  .md\:-m-120 {
    margin: -30rem;
  }

  .md\:-m-160 {
    margin: -40rem;
  }

  .md\:-m-auto {
    margin: -auto;
  }

  .md\:-m-px {
    margin: -1px;
  }

  .md\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .md\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .md\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .md\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .md\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .md\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .md\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .md\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .md\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .md\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .md\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .md\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .md\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .md\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .md\:-my-7 {
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .md\:-mx-7 {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .md\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .md\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .md\:-my-9 {
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .md\:-mx-9 {
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .md\:-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .md\:-mx-10 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .md\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .md\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .md\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .md\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .md\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .md\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .md\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .md\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .md\:-my-28 {
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .md\:-mx-28 {
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .md\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .md\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .md\:-my-36 {
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .md\:-mx-36 {
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .md\:-my-40 {
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .md\:-mx-40 {
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .md\:-my-44 {
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .md\:-mx-44 {
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .md\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .md\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .md\:-my-56 {
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .md\:-mx-56 {
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .md\:-my-60 {
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .md\:-mx-60 {
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .md\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .md\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .md\:-my-80 {
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .md\:-mx-80 {
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .md\:-my-96 {
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .md\:-mx-96 {
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .md\:-my-120 {
    margin-top: -30rem;
    margin-bottom: -30rem;
  }

  .md\:-mx-120 {
    margin-left: -30rem;
    margin-right: -30rem;
  }

  .md\:-my-160 {
    margin-top: -40rem;
    margin-bottom: -40rem;
  }

  .md\:-mx-160 {
    margin-left: -40rem;
    margin-right: -40rem;
  }

  .md\:-my-auto {
    margin-top: -auto;
    margin-bottom: -auto;
  }

  .md\:-mx-auto {
    margin-left: -auto;
    margin-right: -auto;
  }

  .md\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .md\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .md\:-mt-0 {
    margin-top: 0;
  }

  .md\:-mr-0 {
    margin-right: 0;
  }

  .md\:-mb-0 {
    margin-bottom: 0;
  }

  .md\:-ml-0 {
    margin-left: 0;
  }

  .md\:-mt-1 {
    margin-top: -0.25rem;
  }

  .md\:-mr-1 {
    margin-right: -0.25rem;
  }

  .md\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .md\:-ml-1 {
    margin-left: -0.25rem;
  }

  .md\:-mt-2 {
    margin-top: -0.5rem;
  }

  .md\:-mr-2 {
    margin-right: -0.5rem;
  }

  .md\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .md\:-ml-2 {
    margin-left: -0.5rem;
  }

  .md\:-mt-3 {
    margin-top: -0.75rem;
  }

  .md\:-mr-3 {
    margin-right: -0.75rem;
  }

  .md\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .md\:-ml-3 {
    margin-left: -0.75rem;
  }

  .md\:-mt-4 {
    margin-top: -1rem;
  }

  .md\:-mr-4 {
    margin-right: -1rem;
  }

  .md\:-mb-4 {
    margin-bottom: -1rem;
  }

  .md\:-ml-4 {
    margin-left: -1rem;
  }

  .md\:-mt-5 {
    margin-top: -1.25rem;
  }

  .md\:-mr-5 {
    margin-right: -1.25rem;
  }

  .md\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .md\:-ml-5 {
    margin-left: -1.25rem;
  }

  .md\:-mt-6 {
    margin-top: -1.5rem;
  }

  .md\:-mr-6 {
    margin-right: -1.5rem;
  }

  .md\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .md\:-ml-6 {
    margin-left: -1.5rem;
  }

  .md\:-mt-7 {
    margin-top: -1.75rem;
  }

  .md\:-mr-7 {
    margin-right: -1.75rem;
  }

  .md\:-mb-7 {
    margin-bottom: -1.75rem;
  }

  .md\:-ml-7 {
    margin-left: -1.75rem;
  }

  .md\:-mt-8 {
    margin-top: -2rem;
  }

  .md\:-mr-8 {
    margin-right: -2rem;
  }

  .md\:-mb-8 {
    margin-bottom: -2rem;
  }

  .md\:-ml-8 {
    margin-left: -2rem;
  }

  .md\:-mt-9 {
    margin-top: -2.25rem;
  }

  .md\:-mr-9 {
    margin-right: -2.25rem;
  }

  .md\:-mb-9 {
    margin-bottom: -2.25rem;
  }

  .md\:-ml-9 {
    margin-left: -2.25rem;
  }

  .md\:-mt-10 {
    margin-top: -2.5rem;
  }

  .md\:-mr-10 {
    margin-right: -2.5rem;
  }

  .md\:-mb-10 {
    margin-bottom: -2.5rem;
  }

  .md\:-ml-10 {
    margin-left: -2.5rem;
  }

  .md\:-mt-12 {
    margin-top: -3rem;
  }

  .md\:-mr-12 {
    margin-right: -3rem;
  }

  .md\:-mb-12 {
    margin-bottom: -3rem;
  }

  .md\:-ml-12 {
    margin-left: -3rem;
  }

  .md\:-mt-16 {
    margin-top: -4rem;
  }

  .md\:-mr-16 {
    margin-right: -4rem;
  }

  .md\:-mb-16 {
    margin-bottom: -4rem;
  }

  .md\:-ml-16 {
    margin-left: -4rem;
  }

  .md\:-mt-20 {
    margin-top: -5rem;
  }

  .md\:-mr-20 {
    margin-right: -5rem;
  }

  .md\:-mb-20 {
    margin-bottom: -5rem;
  }

  .md\:-ml-20 {
    margin-left: -5rem;
  }

  .md\:-mt-24 {
    margin-top: -6rem;
  }

  .md\:-mr-24 {
    margin-right: -6rem;
  }

  .md\:-mb-24 {
    margin-bottom: -6rem;
  }

  .md\:-ml-24 {
    margin-left: -6rem;
  }

  .md\:-mt-28 {
    margin-top: -7rem;
  }

  .md\:-mr-28 {
    margin-right: -7rem;
  }

  .md\:-mb-28 {
    margin-bottom: -7rem;
  }

  .md\:-ml-28 {
    margin-left: -7rem;
  }

  .md\:-mt-32 {
    margin-top: -8rem;
  }

  .md\:-mr-32 {
    margin-right: -8rem;
  }

  .md\:-mb-32 {
    margin-bottom: -8rem;
  }

  .md\:-ml-32 {
    margin-left: -8rem;
  }

  .md\:-mt-36 {
    margin-top: -9rem;
  }

  .md\:-mr-36 {
    margin-right: -9rem;
  }

  .md\:-mb-36 {
    margin-bottom: -9rem;
  }

  .md\:-ml-36 {
    margin-left: -9rem;
  }

  .md\:-mt-40 {
    margin-top: -10rem;
  }

  .md\:-mr-40 {
    margin-right: -10rem;
  }

  .md\:-mb-40 {
    margin-bottom: -10rem;
  }

  .md\:-ml-40 {
    margin-left: -10rem;
  }

  .md\:-mt-44 {
    margin-top: -11rem;
  }

  .md\:-mr-44 {
    margin-right: -11rem;
  }

  .md\:-mb-44 {
    margin-bottom: -11rem;
  }

  .md\:-ml-44 {
    margin-left: -11rem;
  }

  .md\:-mt-48 {
    margin-top: -12rem;
  }

  .md\:-mr-48 {
    margin-right: -12rem;
  }

  .md\:-mb-48 {
    margin-bottom: -12rem;
  }

  .md\:-ml-48 {
    margin-left: -12rem;
  }

  .md\:-mt-56 {
    margin-top: -14rem;
  }

  .md\:-mr-56 {
    margin-right: -14rem;
  }

  .md\:-mb-56 {
    margin-bottom: -14rem;
  }

  .md\:-ml-56 {
    margin-left: -14rem;
  }

  .md\:-mt-60 {
    margin-top: -15rem;
  }

  .md\:-mr-60 {
    margin-right: -15rem;
  }

  .md\:-mb-60 {
    margin-bottom: -15rem;
  }

  .md\:-ml-60 {
    margin-left: -15rem;
  }

  .md\:-mt-64 {
    margin-top: -16rem;
  }

  .md\:-mr-64 {
    margin-right: -16rem;
  }

  .md\:-mb-64 {
    margin-bottom: -16rem;
  }

  .md\:-ml-64 {
    margin-left: -16rem;
  }

  .md\:-mt-80 {
    margin-top: -20rem;
  }

  .md\:-mr-80 {
    margin-right: -20rem;
  }

  .md\:-mb-80 {
    margin-bottom: -20rem;
  }

  .md\:-ml-80 {
    margin-left: -20rem;
  }

  .md\:-mt-96 {
    margin-top: -24rem;
  }

  .md\:-mr-96 {
    margin-right: -24rem;
  }

  .md\:-mb-96 {
    margin-bottom: -24rem;
  }

  .md\:-ml-96 {
    margin-left: -24rem;
  }

  .md\:-mt-120 {
    margin-top: -30rem;
  }

  .md\:-mr-120 {
    margin-right: -30rem;
  }

  .md\:-mb-120 {
    margin-bottom: -30rem;
  }

  .md\:-ml-120 {
    margin-left: -30rem;
  }

  .md\:-mt-160 {
    margin-top: -40rem;
  }

  .md\:-mr-160 {
    margin-right: -40rem;
  }

  .md\:-mb-160 {
    margin-bottom: -40rem;
  }

  .md\:-ml-160 {
    margin-left: -40rem;
  }

  .md\:-mt-auto {
    margin-top: -auto;
  }

  .md\:-mr-auto {
    margin-right: -auto;
  }

  .md\:-mb-auto {
    margin-bottom: -auto;
  }

  .md\:-ml-auto {
    margin-left: -auto;
  }

  .md\:-mt-px {
    margin-top: -1px;
  }

  .md\:-mr-px {
    margin-right: -1px;
  }

  .md\:-mb-px {
    margin-bottom: -1px;
  }

  .md\:-ml-px {
    margin-left: -1px;
  }

  .md\:opacity-0 {
    opacity: 0;
  }

  .md\:opacity-25 {
    opacity: .25;
  }

  .md\:opacity-50 {
    opacity: .5;
  }

  .md\:opacity-75 {
    opacity: .75;
  }

  .md\:opacity-100 {
    opacity: 1;
  }

  .md\:overflow-auto {
    overflow: auto;
  }

  .md\:overflow-hidden {
    overflow: hidden;
  }

  .md\:overflow-visible {
    overflow: visible;
  }

  .md\:overflow-scroll {
    overflow: scroll;
  }

  .md\:overflow-x-auto {
    overflow-x: auto;
  }

  .md\:overflow-y-auto {
    overflow-y: auto;
  }

  .md\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .md\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .md\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .md\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .md\:p-0 {
    padding: 0;
  }

  .md\:p-1 {
    padding: .25rem;
  }

  .md\:p-2 {
    padding: .5rem;
  }

  .md\:p-3 {
    padding: .75rem;
  }

  .md\:p-4 {
    padding: 1rem;
  }

  .md\:p-5 {
    padding: 1.25rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-7 {
    padding: 1.75rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:p-9 {
    padding: 2.25rem;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:p-16 {
    padding: 4rem;
  }

  .md\:p-20 {
    padding: 5rem;
  }

  .md\:p-24 {
    padding: 6rem;
  }

  .md\:p-28 {
    padding: 7rem;
  }

  .md\:p-32 {
    padding: 8rem;
  }

  .md\:p-36 {
    padding: 9rem;
  }

  .md\:p-40 {
    padding: 10rem;
  }

  .md\:p-44 {
    padding: 11rem;
  }

  .md\:p-48 {
    padding: 12rem;
  }

  .md\:p-56 {
    padding: 14rem;
  }

  .md\:p-60 {
    padding: 15rem;
  }

  .md\:p-64 {
    padding: 16rem;
  }

  .md\:p-80 {
    padding: 20rem;
  }

  .md\:p-96 {
    padding: 24rem;
  }

  .md\:p-120 {
    padding: 30rem;
  }

  .md\:p-160 {
    padding: 40rem;
  }

  .md\:p-px {
    padding: 1px;
  }

  .md\:p-10\% {
    padding: 10%;
  }

  .md\:p-20\% {
    padding: 20%;
  }

  .md\:p-30\% {
    padding: 30%;
  }

  .md\:p-40\% {
    padding: 40%;
  }

  .md\:p-50\% {
    padding: 50%;
  }

  .md\:p-60\% {
    padding: 60%;
  }

  .md\:p-70\% {
    padding: 70%;
  }

  .md\:p-80\% {
    padding: 80%;
  }

  .md\:p-90\% {
    padding: 90%;
  }

  .md\:p-1vw {
    padding: 1vw;
  }

  .md\:p-2vw {
    padding: 2vw;
  }

  .md\:p-3vw {
    padding: 3vw;
  }

  .md\:p-4vw {
    padding: 4vw;
  }

  .md\:p-5vw {
    padding: 5vw;
  }

  .md\:p-6vw {
    padding: 6vw;
  }

  .md\:p-7vw {
    padding: 7vw;
  }

  .md\:p-8vw {
    padding: 8vw;
  }

  .md\:p-9vw {
    padding: 9vw;
  }

  .md\:p-10vw {
    padding: 10vw;
  }

  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .md\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .md\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .md\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .md\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .md\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .md\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .md\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .md\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .md\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .md\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .md\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .md\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .md\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .md\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .md\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .md\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .md\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .md\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .md\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .md\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .md\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .md\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .md\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .md\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .md\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .md\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .md\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .md\:py-120 {
    padding-top: 30rem;
    padding-bottom: 30rem;
  }

  .md\:px-120 {
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .md\:py-160 {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }

  .md\:px-160 {
    padding-left: 40rem;
    padding-right: 40rem;
  }

  .md\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .md\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .md\:py-10\% {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .md\:px-10\% {
    padding-left: 10%;
    padding-right: 10%;
  }

  .md\:py-20\% {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .md\:px-20\% {
    padding-left: 20%;
    padding-right: 20%;
  }

  .md\:py-30\% {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  .md\:px-30\% {
    padding-left: 30%;
    padding-right: 30%;
  }

  .md\:py-40\% {
    padding-top: 40%;
    padding-bottom: 40%;
  }

  .md\:px-40\% {
    padding-left: 40%;
    padding-right: 40%;
  }

  .md\:py-50\% {
    padding-top: 50%;
    padding-bottom: 50%;
  }

  .md\:px-50\% {
    padding-left: 50%;
    padding-right: 50%;
  }

  .md\:py-60\% {
    padding-top: 60%;
    padding-bottom: 60%;
  }

  .md\:px-60\% {
    padding-left: 60%;
    padding-right: 60%;
  }

  .md\:py-70\% {
    padding-top: 70%;
    padding-bottom: 70%;
  }

  .md\:px-70\% {
    padding-left: 70%;
    padding-right: 70%;
  }

  .md\:py-80\% {
    padding-top: 80%;
    padding-bottom: 80%;
  }

  .md\:px-80\% {
    padding-left: 80%;
    padding-right: 80%;
  }

  .md\:py-90\% {
    padding-top: 90%;
    padding-bottom: 90%;
  }

  .md\:px-90\% {
    padding-left: 90%;
    padding-right: 90%;
  }

  .md\:py-1vw {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .md\:px-1vw {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .md\:py-2vw {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .md\:px-2vw {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .md\:py-3vw {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .md\:px-3vw {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .md\:py-4vw {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .md\:px-4vw {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .md\:py-5vw {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .md\:px-5vw {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .md\:py-6vw {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .md\:px-6vw {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .md\:py-7vw {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .md\:px-7vw {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .md\:py-8vw {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .md\:px-8vw {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .md\:py-9vw {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .md\:px-9vw {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .md\:py-10vw {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .md\:px-10vw {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .md\:pt-0 {
    padding-top: 0;
  }

  .md\:pr-0 {
    padding-right: 0;
  }

  .md\:pb-0 {
    padding-bottom: 0;
  }

  .md\:pl-0 {
    padding-left: 0;
  }

  .md\:pt-1 {
    padding-top: .25rem;
  }

  .md\:pr-1 {
    padding-right: .25rem;
  }

  .md\:pb-1 {
    padding-bottom: .25rem;
  }

  .md\:pl-1 {
    padding-left: .25rem;
  }

  .md\:pt-2 {
    padding-top: .5rem;
  }

  .md\:pr-2 {
    padding-right: .5rem;
  }

  .md\:pb-2 {
    padding-bottom: .5rem;
  }

  .md\:pl-2 {
    padding-left: .5rem;
  }

  .md\:pt-3 {
    padding-top: .75rem;
  }

  .md\:pr-3 {
    padding-right: .75rem;
  }

  .md\:pb-3 {
    padding-bottom: .75rem;
  }

  .md\:pl-3 {
    padding-left: .75rem;
  }

  .md\:pt-4 {
    padding-top: 1rem;
  }

  .md\:pr-4 {
    padding-right: 1rem;
  }

  .md\:pb-4 {
    padding-bottom: 1rem;
  }

  .md\:pl-4 {
    padding-left: 1rem;
  }

  .md\:pt-5 {
    padding-top: 1.25rem;
  }

  .md\:pr-5 {
    padding-right: 1.25rem;
  }

  .md\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .md\:pl-5 {
    padding-left: 1.25rem;
  }

  .md\:pt-6 {
    padding-top: 1.5rem;
  }

  .md\:pr-6 {
    padding-right: 1.5rem;
  }

  .md\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .md\:pl-6 {
    padding-left: 1.5rem;
  }

  .md\:pt-7 {
    padding-top: 1.75rem;
  }

  .md\:pr-7 {
    padding-right: 1.75rem;
  }

  .md\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .md\:pl-7 {
    padding-left: 1.75rem;
  }

  .md\:pt-8 {
    padding-top: 2rem;
  }

  .md\:pr-8 {
    padding-right: 2rem;
  }

  .md\:pb-8 {
    padding-bottom: 2rem;
  }

  .md\:pl-8 {
    padding-left: 2rem;
  }

  .md\:pt-9 {
    padding-top: 2.25rem;
  }

  .md\:pr-9 {
    padding-right: 2.25rem;
  }

  .md\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .md\:pl-9 {
    padding-left: 2.25rem;
  }

  .md\:pt-10 {
    padding-top: 2.5rem;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }

  .md\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .md\:pl-10 {
    padding-left: 2.5rem;
  }

  .md\:pt-12 {
    padding-top: 3rem;
  }

  .md\:pr-12 {
    padding-right: 3rem;
  }

  .md\:pb-12 {
    padding-bottom: 3rem;
  }

  .md\:pl-12 {
    padding-left: 3rem;
  }

  .md\:pt-16 {
    padding-top: 4rem;
  }

  .md\:pr-16 {
    padding-right: 4rem;
  }

  .md\:pb-16 {
    padding-bottom: 4rem;
  }

  .md\:pl-16 {
    padding-left: 4rem;
  }

  .md\:pt-20 {
    padding-top: 5rem;
  }

  .md\:pr-20 {
    padding-right: 5rem;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:pl-20 {
    padding-left: 5rem;
  }

  .md\:pt-24 {
    padding-top: 6rem;
  }

  .md\:pr-24 {
    padding-right: 6rem;
  }

  .md\:pb-24 {
    padding-bottom: 6rem;
  }

  .md\:pl-24 {
    padding-left: 6rem;
  }

  .md\:pt-28 {
    padding-top: 7rem;
  }

  .md\:pr-28 {
    padding-right: 7rem;
  }

  .md\:pb-28 {
    padding-bottom: 7rem;
  }

  .md\:pl-28 {
    padding-left: 7rem;
  }

  .md\:pt-32 {
    padding-top: 8rem;
  }

  .md\:pr-32 {
    padding-right: 8rem;
  }

  .md\:pb-32 {
    padding-bottom: 8rem;
  }

  .md\:pl-32 {
    padding-left: 8rem;
  }

  .md\:pt-36 {
    padding-top: 9rem;
  }

  .md\:pr-36 {
    padding-right: 9rem;
  }

  .md\:pb-36 {
    padding-bottom: 9rem;
  }

  .md\:pl-36 {
    padding-left: 9rem;
  }

  .md\:pt-40 {
    padding-top: 10rem;
  }

  .md\:pr-40 {
    padding-right: 10rem;
  }

  .md\:pb-40 {
    padding-bottom: 10rem;
  }

  .md\:pl-40 {
    padding-left: 10rem;
  }

  .md\:pt-44 {
    padding-top: 11rem;
  }

  .md\:pr-44 {
    padding-right: 11rem;
  }

  .md\:pb-44 {
    padding-bottom: 11rem;
  }

  .md\:pl-44 {
    padding-left: 11rem;
  }

  .md\:pt-48 {
    padding-top: 12rem;
  }

  .md\:pr-48 {
    padding-right: 12rem;
  }

  .md\:pb-48 {
    padding-bottom: 12rem;
  }

  .md\:pl-48 {
    padding-left: 12rem;
  }

  .md\:pt-56 {
    padding-top: 14rem;
  }

  .md\:pr-56 {
    padding-right: 14rem;
  }

  .md\:pb-56 {
    padding-bottom: 14rem;
  }

  .md\:pl-56 {
    padding-left: 14rem;
  }

  .md\:pt-60 {
    padding-top: 15rem;
  }

  .md\:pr-60 {
    padding-right: 15rem;
  }

  .md\:pb-60 {
    padding-bottom: 15rem;
  }

  .md\:pl-60 {
    padding-left: 15rem;
  }

  .md\:pt-64 {
    padding-top: 16rem;
  }

  .md\:pr-64 {
    padding-right: 16rem;
  }

  .md\:pb-64 {
    padding-bottom: 16rem;
  }

  .md\:pl-64 {
    padding-left: 16rem;
  }

  .md\:pt-80 {
    padding-top: 20rem;
  }

  .md\:pr-80 {
    padding-right: 20rem;
  }

  .md\:pb-80 {
    padding-bottom: 20rem;
  }

  .md\:pl-80 {
    padding-left: 20rem;
  }

  .md\:pt-96 {
    padding-top: 24rem;
  }

  .md\:pr-96 {
    padding-right: 24rem;
  }

  .md\:pb-96 {
    padding-bottom: 24rem;
  }

  .md\:pl-96 {
    padding-left: 24rem;
  }

  .md\:pt-120 {
    padding-top: 30rem;
  }

  .md\:pr-120 {
    padding-right: 30rem;
  }

  .md\:pb-120 {
    padding-bottom: 30rem;
  }

  .md\:pl-120 {
    padding-left: 30rem;
  }

  .md\:pt-160 {
    padding-top: 40rem;
  }

  .md\:pr-160 {
    padding-right: 40rem;
  }

  .md\:pb-160 {
    padding-bottom: 40rem;
  }

  .md\:pl-160 {
    padding-left: 40rem;
  }

  .md\:pt-px {
    padding-top: 1px;
  }

  .md\:pr-px {
    padding-right: 1px;
  }

  .md\:pb-px {
    padding-bottom: 1px;
  }

  .md\:pl-px {
    padding-left: 1px;
  }

  .md\:pt-10\% {
    padding-top: 10%;
  }

  .md\:pr-10\% {
    padding-right: 10%;
  }

  .md\:pb-10\% {
    padding-bottom: 10%;
  }

  .md\:pl-10\% {
    padding-left: 10%;
  }

  .md\:pt-20\% {
    padding-top: 20%;
  }

  .md\:pr-20\% {
    padding-right: 20%;
  }

  .md\:pb-20\% {
    padding-bottom: 20%;
  }

  .md\:pl-20\% {
    padding-left: 20%;
  }

  .md\:pt-30\% {
    padding-top: 30%;
  }

  .md\:pr-30\% {
    padding-right: 30%;
  }

  .md\:pb-30\% {
    padding-bottom: 30%;
  }

  .md\:pl-30\% {
    padding-left: 30%;
  }

  .md\:pt-40\% {
    padding-top: 40%;
  }

  .md\:pr-40\% {
    padding-right: 40%;
  }

  .md\:pb-40\% {
    padding-bottom: 40%;
  }

  .md\:pl-40\% {
    padding-left: 40%;
  }

  .md\:pt-50\% {
    padding-top: 50%;
  }

  .md\:pr-50\% {
    padding-right: 50%;
  }

  .md\:pb-50\% {
    padding-bottom: 50%;
  }

  .md\:pl-50\% {
    padding-left: 50%;
  }

  .md\:pt-60\% {
    padding-top: 60%;
  }

  .md\:pr-60\% {
    padding-right: 60%;
  }

  .md\:pb-60\% {
    padding-bottom: 60%;
  }

  .md\:pl-60\% {
    padding-left: 60%;
  }

  .md\:pt-70\% {
    padding-top: 70%;
  }

  .md\:pr-70\% {
    padding-right: 70%;
  }

  .md\:pb-70\% {
    padding-bottom: 70%;
  }

  .md\:pl-70\% {
    padding-left: 70%;
  }

  .md\:pt-80\% {
    padding-top: 80%;
  }

  .md\:pr-80\% {
    padding-right: 80%;
  }

  .md\:pb-80\% {
    padding-bottom: 80%;
  }

  .md\:pl-80\% {
    padding-left: 80%;
  }

  .md\:pt-90\% {
    padding-top: 90%;
  }

  .md\:pr-90\% {
    padding-right: 90%;
  }

  .md\:pb-90\% {
    padding-bottom: 90%;
  }

  .md\:pl-90\% {
    padding-left: 90%;
  }

  .md\:pt-1vw {
    padding-top: 1vw;
  }

  .md\:pr-1vw {
    padding-right: 1vw;
  }

  .md\:pb-1vw {
    padding-bottom: 1vw;
  }

  .md\:pl-1vw {
    padding-left: 1vw;
  }

  .md\:pt-2vw {
    padding-top: 2vw;
  }

  .md\:pr-2vw {
    padding-right: 2vw;
  }

  .md\:pb-2vw {
    padding-bottom: 2vw;
  }

  .md\:pl-2vw {
    padding-left: 2vw;
  }

  .md\:pt-3vw {
    padding-top: 3vw;
  }

  .md\:pr-3vw {
    padding-right: 3vw;
  }

  .md\:pb-3vw {
    padding-bottom: 3vw;
  }

  .md\:pl-3vw {
    padding-left: 3vw;
  }

  .md\:pt-4vw {
    padding-top: 4vw;
  }

  .md\:pr-4vw {
    padding-right: 4vw;
  }

  .md\:pb-4vw {
    padding-bottom: 4vw;
  }

  .md\:pl-4vw {
    padding-left: 4vw;
  }

  .md\:pt-5vw {
    padding-top: 5vw;
  }

  .md\:pr-5vw {
    padding-right: 5vw;
  }

  .md\:pb-5vw {
    padding-bottom: 5vw;
  }

  .md\:pl-5vw {
    padding-left: 5vw;
  }

  .md\:pt-6vw {
    padding-top: 6vw;
  }

  .md\:pr-6vw {
    padding-right: 6vw;
  }

  .md\:pb-6vw {
    padding-bottom: 6vw;
  }

  .md\:pl-6vw {
    padding-left: 6vw;
  }

  .md\:pt-7vw {
    padding-top: 7vw;
  }

  .md\:pr-7vw {
    padding-right: 7vw;
  }

  .md\:pb-7vw {
    padding-bottom: 7vw;
  }

  .md\:pl-7vw {
    padding-left: 7vw;
  }

  .md\:pt-8vw {
    padding-top: 8vw;
  }

  .md\:pr-8vw {
    padding-right: 8vw;
  }

  .md\:pb-8vw {
    padding-bottom: 8vw;
  }

  .md\:pl-8vw {
    padding-left: 8vw;
  }

  .md\:pt-9vw {
    padding-top: 9vw;
  }

  .md\:pr-9vw {
    padding-right: 9vw;
  }

  .md\:pb-9vw {
    padding-bottom: 9vw;
  }

  .md\:pl-9vw {
    padding-left: 9vw;
  }

  .md\:pt-10vw {
    padding-top: 10vw;
  }

  .md\:pr-10vw {
    padding-right: 10vw;
  }

  .md\:pb-10vw {
    padding-bottom: 10vw;
  }

  .md\:pl-10vw {
    padding-left: 10vw;
  }

  .md\:hover\:p-0:hover {
    padding: 0;
  }

  .md\:hover\:p-1:hover {
    padding: .25rem;
  }

  .md\:hover\:p-2:hover {
    padding: .5rem;
  }

  .md\:hover\:p-3:hover {
    padding: .75rem;
  }

  .md\:hover\:p-4:hover {
    padding: 1rem;
  }

  .md\:hover\:p-5:hover {
    padding: 1.25rem;
  }

  .md\:hover\:p-6:hover {
    padding: 1.5rem;
  }

  .md\:hover\:p-7:hover {
    padding: 1.75rem;
  }

  .md\:hover\:p-8:hover {
    padding: 2rem;
  }

  .md\:hover\:p-9:hover {
    padding: 2.25rem;
  }

  .md\:hover\:p-10:hover {
    padding: 2.5rem;
  }

  .md\:hover\:p-12:hover {
    padding: 3rem;
  }

  .md\:hover\:p-16:hover {
    padding: 4rem;
  }

  .md\:hover\:p-20:hover {
    padding: 5rem;
  }

  .md\:hover\:p-24:hover {
    padding: 6rem;
  }

  .md\:hover\:p-28:hover {
    padding: 7rem;
  }

  .md\:hover\:p-32:hover {
    padding: 8rem;
  }

  .md\:hover\:p-36:hover {
    padding: 9rem;
  }

  .md\:hover\:p-40:hover {
    padding: 10rem;
  }

  .md\:hover\:p-44:hover {
    padding: 11rem;
  }

  .md\:hover\:p-48:hover {
    padding: 12rem;
  }

  .md\:hover\:p-56:hover {
    padding: 14rem;
  }

  .md\:hover\:p-60:hover {
    padding: 15rem;
  }

  .md\:hover\:p-64:hover {
    padding: 16rem;
  }

  .md\:hover\:p-80:hover {
    padding: 20rem;
  }

  .md\:hover\:p-96:hover {
    padding: 24rem;
  }

  .md\:hover\:p-120:hover {
    padding: 30rem;
  }

  .md\:hover\:p-160:hover {
    padding: 40rem;
  }

  .md\:hover\:p-px:hover {
    padding: 1px;
  }

  .md\:hover\:p-10\%:hover {
    padding: 10%;
  }

  .md\:hover\:p-20\%:hover {
    padding: 20%;
  }

  .md\:hover\:p-30\%:hover {
    padding: 30%;
  }

  .md\:hover\:p-40\%:hover {
    padding: 40%;
  }

  .md\:hover\:p-50\%:hover {
    padding: 50%;
  }

  .md\:hover\:p-60\%:hover {
    padding: 60%;
  }

  .md\:hover\:p-70\%:hover {
    padding: 70%;
  }

  .md\:hover\:p-80\%:hover {
    padding: 80%;
  }

  .md\:hover\:p-90\%:hover {
    padding: 90%;
  }

  .md\:hover\:p-1vw:hover {
    padding: 1vw;
  }

  .md\:hover\:p-2vw:hover {
    padding: 2vw;
  }

  .md\:hover\:p-3vw:hover {
    padding: 3vw;
  }

  .md\:hover\:p-4vw:hover {
    padding: 4vw;
  }

  .md\:hover\:p-5vw:hover {
    padding: 5vw;
  }

  .md\:hover\:p-6vw:hover {
    padding: 6vw;
  }

  .md\:hover\:p-7vw:hover {
    padding: 7vw;
  }

  .md\:hover\:p-8vw:hover {
    padding: 8vw;
  }

  .md\:hover\:p-9vw:hover {
    padding: 9vw;
  }

  .md\:hover\:p-10vw:hover {
    padding: 10vw;
  }

  .md\:hover\:py-0:hover {
    padding-top: 0;
    padding-bottom: 0;
  }

  .md\:hover\:px-0:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .md\:hover\:py-1:hover {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .md\:hover\:px-1:hover {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .md\:hover\:py-2:hover {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .md\:hover\:px-2:hover {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .md\:hover\:py-3:hover {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .md\:hover\:px-3:hover {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .md\:hover\:py-4:hover {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:hover\:px-4:hover {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:hover\:py-5:hover {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .md\:hover\:px-5:hover {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:hover\:py-6:hover {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .md\:hover\:px-6:hover {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:hover\:py-7:hover {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .md\:hover\:px-7:hover {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .md\:hover\:py-8:hover {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:hover\:px-8:hover {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:hover\:py-9:hover {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .md\:hover\:px-9:hover {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .md\:hover\:py-10:hover {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:hover\:px-10:hover {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:hover\:py-12:hover {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:hover\:px-12:hover {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:hover\:py-16:hover {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:hover\:px-16:hover {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:hover\:py-20:hover {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:hover\:px-20:hover {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .md\:hover\:py-24:hover {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:hover\:px-24:hover {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .md\:hover\:py-28:hover {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .md\:hover\:px-28:hover {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .md\:hover\:py-32:hover {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:hover\:px-32:hover {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .md\:hover\:py-36:hover {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .md\:hover\:px-36:hover {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .md\:hover\:py-40:hover {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .md\:hover\:px-40:hover {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .md\:hover\:py-44:hover {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .md\:hover\:px-44:hover {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .md\:hover\:py-48:hover {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .md\:hover\:px-48:hover {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .md\:hover\:py-56:hover {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .md\:hover\:px-56:hover {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .md\:hover\:py-60:hover {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .md\:hover\:px-60:hover {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .md\:hover\:py-64:hover {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .md\:hover\:px-64:hover {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .md\:hover\:py-80:hover {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .md\:hover\:px-80:hover {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .md\:hover\:py-96:hover {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .md\:hover\:px-96:hover {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .md\:hover\:py-120:hover {
    padding-top: 30rem;
    padding-bottom: 30rem;
  }

  .md\:hover\:px-120:hover {
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .md\:hover\:py-160:hover {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }

  .md\:hover\:px-160:hover {
    padding-left: 40rem;
    padding-right: 40rem;
  }

  .md\:hover\:py-px:hover {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .md\:hover\:px-px:hover {
    padding-left: 1px;
    padding-right: 1px;
  }

  .md\:hover\:py-10\%:hover {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .md\:hover\:px-10\%:hover {
    padding-left: 10%;
    padding-right: 10%;
  }

  .md\:hover\:py-20\%:hover {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .md\:hover\:px-20\%:hover {
    padding-left: 20%;
    padding-right: 20%;
  }

  .md\:hover\:py-30\%:hover {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  .md\:hover\:px-30\%:hover {
    padding-left: 30%;
    padding-right: 30%;
  }

  .md\:hover\:py-40\%:hover {
    padding-top: 40%;
    padding-bottom: 40%;
  }

  .md\:hover\:px-40\%:hover {
    padding-left: 40%;
    padding-right: 40%;
  }

  .md\:hover\:py-50\%:hover {
    padding-top: 50%;
    padding-bottom: 50%;
  }

  .md\:hover\:px-50\%:hover {
    padding-left: 50%;
    padding-right: 50%;
  }

  .md\:hover\:py-60\%:hover {
    padding-top: 60%;
    padding-bottom: 60%;
  }

  .md\:hover\:px-60\%:hover {
    padding-left: 60%;
    padding-right: 60%;
  }

  .md\:hover\:py-70\%:hover {
    padding-top: 70%;
    padding-bottom: 70%;
  }

  .md\:hover\:px-70\%:hover {
    padding-left: 70%;
    padding-right: 70%;
  }

  .md\:hover\:py-80\%:hover {
    padding-top: 80%;
    padding-bottom: 80%;
  }

  .md\:hover\:px-80\%:hover {
    padding-left: 80%;
    padding-right: 80%;
  }

  .md\:hover\:py-90\%:hover {
    padding-top: 90%;
    padding-bottom: 90%;
  }

  .md\:hover\:px-90\%:hover {
    padding-left: 90%;
    padding-right: 90%;
  }

  .md\:hover\:py-1vw:hover {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .md\:hover\:px-1vw:hover {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .md\:hover\:py-2vw:hover {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .md\:hover\:px-2vw:hover {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .md\:hover\:py-3vw:hover {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .md\:hover\:px-3vw:hover {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .md\:hover\:py-4vw:hover {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .md\:hover\:px-4vw:hover {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .md\:hover\:py-5vw:hover {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .md\:hover\:px-5vw:hover {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .md\:hover\:py-6vw:hover {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .md\:hover\:px-6vw:hover {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .md\:hover\:py-7vw:hover {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .md\:hover\:px-7vw:hover {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .md\:hover\:py-8vw:hover {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .md\:hover\:px-8vw:hover {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .md\:hover\:py-9vw:hover {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .md\:hover\:px-9vw:hover {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .md\:hover\:py-10vw:hover {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .md\:hover\:px-10vw:hover {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .md\:hover\:pt-0:hover {
    padding-top: 0;
  }

  .md\:hover\:pr-0:hover {
    padding-right: 0;
  }

  .md\:hover\:pb-0:hover {
    padding-bottom: 0;
  }

  .md\:hover\:pl-0:hover {
    padding-left: 0;
  }

  .md\:hover\:pt-1:hover {
    padding-top: .25rem;
  }

  .md\:hover\:pr-1:hover {
    padding-right: .25rem;
  }

  .md\:hover\:pb-1:hover {
    padding-bottom: .25rem;
  }

  .md\:hover\:pl-1:hover {
    padding-left: .25rem;
  }

  .md\:hover\:pt-2:hover {
    padding-top: .5rem;
  }

  .md\:hover\:pr-2:hover {
    padding-right: .5rem;
  }

  .md\:hover\:pb-2:hover {
    padding-bottom: .5rem;
  }

  .md\:hover\:pl-2:hover {
    padding-left: .5rem;
  }

  .md\:hover\:pt-3:hover {
    padding-top: .75rem;
  }

  .md\:hover\:pr-3:hover {
    padding-right: .75rem;
  }

  .md\:hover\:pb-3:hover {
    padding-bottom: .75rem;
  }

  .md\:hover\:pl-3:hover {
    padding-left: .75rem;
  }

  .md\:hover\:pt-4:hover {
    padding-top: 1rem;
  }

  .md\:hover\:pr-4:hover {
    padding-right: 1rem;
  }

  .md\:hover\:pb-4:hover {
    padding-bottom: 1rem;
  }

  .md\:hover\:pl-4:hover {
    padding-left: 1rem;
  }

  .md\:hover\:pt-5:hover {
    padding-top: 1.25rem;
  }

  .md\:hover\:pr-5:hover {
    padding-right: 1.25rem;
  }

  .md\:hover\:pb-5:hover {
    padding-bottom: 1.25rem;
  }

  .md\:hover\:pl-5:hover {
    padding-left: 1.25rem;
  }

  .md\:hover\:pt-6:hover {
    padding-top: 1.5rem;
  }

  .md\:hover\:pr-6:hover {
    padding-right: 1.5rem;
  }

  .md\:hover\:pb-6:hover {
    padding-bottom: 1.5rem;
  }

  .md\:hover\:pl-6:hover {
    padding-left: 1.5rem;
  }

  .md\:hover\:pt-7:hover {
    padding-top: 1.75rem;
  }

  .md\:hover\:pr-7:hover {
    padding-right: 1.75rem;
  }

  .md\:hover\:pb-7:hover {
    padding-bottom: 1.75rem;
  }

  .md\:hover\:pl-7:hover {
    padding-left: 1.75rem;
  }

  .md\:hover\:pt-8:hover {
    padding-top: 2rem;
  }

  .md\:hover\:pr-8:hover {
    padding-right: 2rem;
  }

  .md\:hover\:pb-8:hover {
    padding-bottom: 2rem;
  }

  .md\:hover\:pl-8:hover {
    padding-left: 2rem;
  }

  .md\:hover\:pt-9:hover {
    padding-top: 2.25rem;
  }

  .md\:hover\:pr-9:hover {
    padding-right: 2.25rem;
  }

  .md\:hover\:pb-9:hover {
    padding-bottom: 2.25rem;
  }

  .md\:hover\:pl-9:hover {
    padding-left: 2.25rem;
  }

  .md\:hover\:pt-10:hover {
    padding-top: 2.5rem;
  }

  .md\:hover\:pr-10:hover {
    padding-right: 2.5rem;
  }

  .md\:hover\:pb-10:hover {
    padding-bottom: 2.5rem;
  }

  .md\:hover\:pl-10:hover {
    padding-left: 2.5rem;
  }

  .md\:hover\:pt-12:hover {
    padding-top: 3rem;
  }

  .md\:hover\:pr-12:hover {
    padding-right: 3rem;
  }

  .md\:hover\:pb-12:hover {
    padding-bottom: 3rem;
  }

  .md\:hover\:pl-12:hover {
    padding-left: 3rem;
  }

  .md\:hover\:pt-16:hover {
    padding-top: 4rem;
  }

  .md\:hover\:pr-16:hover {
    padding-right: 4rem;
  }

  .md\:hover\:pb-16:hover {
    padding-bottom: 4rem;
  }

  .md\:hover\:pl-16:hover {
    padding-left: 4rem;
  }

  .md\:hover\:pt-20:hover {
    padding-top: 5rem;
  }

  .md\:hover\:pr-20:hover {
    padding-right: 5rem;
  }

  .md\:hover\:pb-20:hover {
    padding-bottom: 5rem;
  }

  .md\:hover\:pl-20:hover {
    padding-left: 5rem;
  }

  .md\:hover\:pt-24:hover {
    padding-top: 6rem;
  }

  .md\:hover\:pr-24:hover {
    padding-right: 6rem;
  }

  .md\:hover\:pb-24:hover {
    padding-bottom: 6rem;
  }

  .md\:hover\:pl-24:hover {
    padding-left: 6rem;
  }

  .md\:hover\:pt-28:hover {
    padding-top: 7rem;
  }

  .md\:hover\:pr-28:hover {
    padding-right: 7rem;
  }

  .md\:hover\:pb-28:hover {
    padding-bottom: 7rem;
  }

  .md\:hover\:pl-28:hover {
    padding-left: 7rem;
  }

  .md\:hover\:pt-32:hover {
    padding-top: 8rem;
  }

  .md\:hover\:pr-32:hover {
    padding-right: 8rem;
  }

  .md\:hover\:pb-32:hover {
    padding-bottom: 8rem;
  }

  .md\:hover\:pl-32:hover {
    padding-left: 8rem;
  }

  .md\:hover\:pt-36:hover {
    padding-top: 9rem;
  }

  .md\:hover\:pr-36:hover {
    padding-right: 9rem;
  }

  .md\:hover\:pb-36:hover {
    padding-bottom: 9rem;
  }

  .md\:hover\:pl-36:hover {
    padding-left: 9rem;
  }

  .md\:hover\:pt-40:hover {
    padding-top: 10rem;
  }

  .md\:hover\:pr-40:hover {
    padding-right: 10rem;
  }

  .md\:hover\:pb-40:hover {
    padding-bottom: 10rem;
  }

  .md\:hover\:pl-40:hover {
    padding-left: 10rem;
  }

  .md\:hover\:pt-44:hover {
    padding-top: 11rem;
  }

  .md\:hover\:pr-44:hover {
    padding-right: 11rem;
  }

  .md\:hover\:pb-44:hover {
    padding-bottom: 11rem;
  }

  .md\:hover\:pl-44:hover {
    padding-left: 11rem;
  }

  .md\:hover\:pt-48:hover {
    padding-top: 12rem;
  }

  .md\:hover\:pr-48:hover {
    padding-right: 12rem;
  }

  .md\:hover\:pb-48:hover {
    padding-bottom: 12rem;
  }

  .md\:hover\:pl-48:hover {
    padding-left: 12rem;
  }

  .md\:hover\:pt-56:hover {
    padding-top: 14rem;
  }

  .md\:hover\:pr-56:hover {
    padding-right: 14rem;
  }

  .md\:hover\:pb-56:hover {
    padding-bottom: 14rem;
  }

  .md\:hover\:pl-56:hover {
    padding-left: 14rem;
  }

  .md\:hover\:pt-60:hover {
    padding-top: 15rem;
  }

  .md\:hover\:pr-60:hover {
    padding-right: 15rem;
  }

  .md\:hover\:pb-60:hover {
    padding-bottom: 15rem;
  }

  .md\:hover\:pl-60:hover {
    padding-left: 15rem;
  }

  .md\:hover\:pt-64:hover {
    padding-top: 16rem;
  }

  .md\:hover\:pr-64:hover {
    padding-right: 16rem;
  }

  .md\:hover\:pb-64:hover {
    padding-bottom: 16rem;
  }

  .md\:hover\:pl-64:hover {
    padding-left: 16rem;
  }

  .md\:hover\:pt-80:hover {
    padding-top: 20rem;
  }

  .md\:hover\:pr-80:hover {
    padding-right: 20rem;
  }

  .md\:hover\:pb-80:hover {
    padding-bottom: 20rem;
  }

  .md\:hover\:pl-80:hover {
    padding-left: 20rem;
  }

  .md\:hover\:pt-96:hover {
    padding-top: 24rem;
  }

  .md\:hover\:pr-96:hover {
    padding-right: 24rem;
  }

  .md\:hover\:pb-96:hover {
    padding-bottom: 24rem;
  }

  .md\:hover\:pl-96:hover {
    padding-left: 24rem;
  }

  .md\:hover\:pt-120:hover {
    padding-top: 30rem;
  }

  .md\:hover\:pr-120:hover {
    padding-right: 30rem;
  }

  .md\:hover\:pb-120:hover {
    padding-bottom: 30rem;
  }

  .md\:hover\:pl-120:hover {
    padding-left: 30rem;
  }

  .md\:hover\:pt-160:hover {
    padding-top: 40rem;
  }

  .md\:hover\:pr-160:hover {
    padding-right: 40rem;
  }

  .md\:hover\:pb-160:hover {
    padding-bottom: 40rem;
  }

  .md\:hover\:pl-160:hover {
    padding-left: 40rem;
  }

  .md\:hover\:pt-px:hover {
    padding-top: 1px;
  }

  .md\:hover\:pr-px:hover {
    padding-right: 1px;
  }

  .md\:hover\:pb-px:hover {
    padding-bottom: 1px;
  }

  .md\:hover\:pl-px:hover {
    padding-left: 1px;
  }

  .md\:hover\:pt-10\%:hover {
    padding-top: 10%;
  }

  .md\:hover\:pr-10\%:hover {
    padding-right: 10%;
  }

  .md\:hover\:pb-10\%:hover {
    padding-bottom: 10%;
  }

  .md\:hover\:pl-10\%:hover {
    padding-left: 10%;
  }

  .md\:hover\:pt-20\%:hover {
    padding-top: 20%;
  }

  .md\:hover\:pr-20\%:hover {
    padding-right: 20%;
  }

  .md\:hover\:pb-20\%:hover {
    padding-bottom: 20%;
  }

  .md\:hover\:pl-20\%:hover {
    padding-left: 20%;
  }

  .md\:hover\:pt-30\%:hover {
    padding-top: 30%;
  }

  .md\:hover\:pr-30\%:hover {
    padding-right: 30%;
  }

  .md\:hover\:pb-30\%:hover {
    padding-bottom: 30%;
  }

  .md\:hover\:pl-30\%:hover {
    padding-left: 30%;
  }

  .md\:hover\:pt-40\%:hover {
    padding-top: 40%;
  }

  .md\:hover\:pr-40\%:hover {
    padding-right: 40%;
  }

  .md\:hover\:pb-40\%:hover {
    padding-bottom: 40%;
  }

  .md\:hover\:pl-40\%:hover {
    padding-left: 40%;
  }

  .md\:hover\:pt-50\%:hover {
    padding-top: 50%;
  }

  .md\:hover\:pr-50\%:hover {
    padding-right: 50%;
  }

  .md\:hover\:pb-50\%:hover {
    padding-bottom: 50%;
  }

  .md\:hover\:pl-50\%:hover {
    padding-left: 50%;
  }

  .md\:hover\:pt-60\%:hover {
    padding-top: 60%;
  }

  .md\:hover\:pr-60\%:hover {
    padding-right: 60%;
  }

  .md\:hover\:pb-60\%:hover {
    padding-bottom: 60%;
  }

  .md\:hover\:pl-60\%:hover {
    padding-left: 60%;
  }

  .md\:hover\:pt-70\%:hover {
    padding-top: 70%;
  }

  .md\:hover\:pr-70\%:hover {
    padding-right: 70%;
  }

  .md\:hover\:pb-70\%:hover {
    padding-bottom: 70%;
  }

  .md\:hover\:pl-70\%:hover {
    padding-left: 70%;
  }

  .md\:hover\:pt-80\%:hover {
    padding-top: 80%;
  }

  .md\:hover\:pr-80\%:hover {
    padding-right: 80%;
  }

  .md\:hover\:pb-80\%:hover {
    padding-bottom: 80%;
  }

  .md\:hover\:pl-80\%:hover {
    padding-left: 80%;
  }

  .md\:hover\:pt-90\%:hover {
    padding-top: 90%;
  }

  .md\:hover\:pr-90\%:hover {
    padding-right: 90%;
  }

  .md\:hover\:pb-90\%:hover {
    padding-bottom: 90%;
  }

  .md\:hover\:pl-90\%:hover {
    padding-left: 90%;
  }

  .md\:hover\:pt-1vw:hover {
    padding-top: 1vw;
  }

  .md\:hover\:pr-1vw:hover {
    padding-right: 1vw;
  }

  .md\:hover\:pb-1vw:hover {
    padding-bottom: 1vw;
  }

  .md\:hover\:pl-1vw:hover {
    padding-left: 1vw;
  }

  .md\:hover\:pt-2vw:hover {
    padding-top: 2vw;
  }

  .md\:hover\:pr-2vw:hover {
    padding-right: 2vw;
  }

  .md\:hover\:pb-2vw:hover {
    padding-bottom: 2vw;
  }

  .md\:hover\:pl-2vw:hover {
    padding-left: 2vw;
  }

  .md\:hover\:pt-3vw:hover {
    padding-top: 3vw;
  }

  .md\:hover\:pr-3vw:hover {
    padding-right: 3vw;
  }

  .md\:hover\:pb-3vw:hover {
    padding-bottom: 3vw;
  }

  .md\:hover\:pl-3vw:hover {
    padding-left: 3vw;
  }

  .md\:hover\:pt-4vw:hover {
    padding-top: 4vw;
  }

  .md\:hover\:pr-4vw:hover {
    padding-right: 4vw;
  }

  .md\:hover\:pb-4vw:hover {
    padding-bottom: 4vw;
  }

  .md\:hover\:pl-4vw:hover {
    padding-left: 4vw;
  }

  .md\:hover\:pt-5vw:hover {
    padding-top: 5vw;
  }

  .md\:hover\:pr-5vw:hover {
    padding-right: 5vw;
  }

  .md\:hover\:pb-5vw:hover {
    padding-bottom: 5vw;
  }

  .md\:hover\:pl-5vw:hover {
    padding-left: 5vw;
  }

  .md\:hover\:pt-6vw:hover {
    padding-top: 6vw;
  }

  .md\:hover\:pr-6vw:hover {
    padding-right: 6vw;
  }

  .md\:hover\:pb-6vw:hover {
    padding-bottom: 6vw;
  }

  .md\:hover\:pl-6vw:hover {
    padding-left: 6vw;
  }

  .md\:hover\:pt-7vw:hover {
    padding-top: 7vw;
  }

  .md\:hover\:pr-7vw:hover {
    padding-right: 7vw;
  }

  .md\:hover\:pb-7vw:hover {
    padding-bottom: 7vw;
  }

  .md\:hover\:pl-7vw:hover {
    padding-left: 7vw;
  }

  .md\:hover\:pt-8vw:hover {
    padding-top: 8vw;
  }

  .md\:hover\:pr-8vw:hover {
    padding-right: 8vw;
  }

  .md\:hover\:pb-8vw:hover {
    padding-bottom: 8vw;
  }

  .md\:hover\:pl-8vw:hover {
    padding-left: 8vw;
  }

  .md\:hover\:pt-9vw:hover {
    padding-top: 9vw;
  }

  .md\:hover\:pr-9vw:hover {
    padding-right: 9vw;
  }

  .md\:hover\:pb-9vw:hover {
    padding-bottom: 9vw;
  }

  .md\:hover\:pl-9vw:hover {
    padding-left: 9vw;
  }

  .md\:hover\:pt-10vw:hover {
    padding-top: 10vw;
  }

  .md\:hover\:pr-10vw:hover {
    padding-right: 10vw;
  }

  .md\:hover\:pb-10vw:hover {
    padding-bottom: 10vw;
  }

  .md\:hover\:pl-10vw:hover {
    padding-left: 10vw;
  }

  .md\:pointer-events-none {
    pointer-events: none;
  }

  .md\:pointer-events-auto {
    pointer-events: auto;
  }

  .md\:static {
    position: static;
  }

  .md\:fixed {
    position: fixed;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:relative {
    position: relative;
  }

  .md\:sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .md\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .md\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .md\:pin-y {
    top: 0;
    bottom: 0;
  }

  .md\:pin-x {
    right: 0;
    left: 0;
  }

  .md\:pin-t {
    top: 0;
  }

  .md\:pin-r {
    right: 0;
  }

  .md\:pin-b {
    bottom: 0;
  }

  .md\:pin-l {
    left: 0;
  }

  .md\:hover\:static:hover {
    position: static;
  }

  .md\:hover\:fixed:hover {
    position: fixed;
  }

  .md\:hover\:absolute:hover {
    position: absolute;
  }

  .md\:hover\:relative:hover {
    position: relative;
  }

  .md\:hover\:sticky:hover {
    position: -webkit-sticky;
    position: sticky;
  }

  .md\:hover\:pin-none:hover {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .md\:hover\:pin:hover {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .md\:hover\:pin-y:hover {
    top: 0;
    bottom: 0;
  }

  .md\:hover\:pin-x:hover {
    right: 0;
    left: 0;
  }

  .md\:hover\:pin-t:hover {
    top: 0;
  }

  .md\:hover\:pin-r:hover {
    right: 0;
  }

  .md\:hover\:pin-b:hover {
    bottom: 0;
  }

  .md\:hover\:pin-l:hover {
    left: 0;
  }

  .md\:resize-none {
    resize: none;
  }

  .md\:resize-y {
    resize: vertical;
  }

  .md\:resize-x {
    resize: horizontal;
  }

  .md\:resize {
    resize: both;
  }

  .md\:shadow {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  }

  .md\:shadow-md {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  }

  .md\:shadow-lg {
    box-shadow: 0 0 100px rgba(0, 0, 0, .15);
  }

  .md\:shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
  }

  .md\:shadow-none {
    box-shadow: none;
  }

  .md\:hover\:shadow:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  }

  .md\:hover\:shadow-md:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  }

  .md\:hover\:shadow-lg:hover {
    box-shadow: 0 0 100px rgba(0, 0, 0, .15);
  }

  .md\:hover\:shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
  }

  .md\:hover\:shadow-none:hover {
    box-shadow: none;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-center {
    text-align: center;
  }

  .md\:text-right {
    text-align: right;
  }

  .md\:text-justify {
    text-align: justify;
  }

  .md\:text-transparent {
    color: transparent;
  }

  .md\:text-currentColor {
    color: currentColor;
  }

  .md\:text-black {
    color: #222;
  }

  .md\:text-black-10 {
    color: rgba(0, 0, 0, .1);
  }

  .md\:text-black-20 {
    color: rgba(0, 0, 0, .2);
  }

  .md\:text-black-30 {
    color: rgba(0, 0, 0, .3);
  }

  .md\:text-black-40 {
    color: rgba(0, 0, 0, .4);
  }

  .md\:text-black-50 {
    color: rgba(0, 0, 0, .5);
  }

  .md\:text-black-60 {
    color: rgba(0, 0, 0, .6);
  }

  .md\:text-black-70 {
    color: rgba(0, 0, 0, .7);
  }

  .md\:text-black-80 {
    color: rgba(0, 0, 0, .8);
  }

  .md\:text-black-90 {
    color: rgba(0, 0, 0, .9);
  }

  .md\:text-black-1 {
    color: #313131;
  }

  .md\:text-white {
    color: #fff;
  }

  .md\:text-blue {
    color: #0277bd;
  }

  .md\:text-dark-blue {
    color: #0277bd;
  }

  .md\:text-blue-1 {
    color: #17214a;
  }

  .md\:text-light-blue {
    color: #0277bd;
  }

  .md\:text-red {
    color: #cb001c;
  }

  .md\:text-green {
    color: #00bea0;
  }

  .md\:text-purple {
    color: #5a80d1;
  }

  .md\:text-orange {
    color: #ff9a0a;
  }

  .md\:text-grey {
    color: #929a9d;
  }

  .md\:text-grey-light {
    color: #e2e2e2;
  }

  .md\:text-grey-1 {
    color: #f2f3f3;
  }

  .md\:text-grey-2 {
    color: #c2c6c8;
  }

  .md\:text-grey-3 {
    color: #6b7375;
  }

  .md\:text-grey-4 {
    color: #465052;
  }

  .md\:text-grey-5 {
    color: #828688;
  }

  .md\:text-sd-red {
    color: #ed1c24;
  }

  .md\:text-light-blue-1 {
    color: #21b8de;
  }

  .md\:text-dark-blue-1 {
    color: #0277bd;
  }

  .md\:text-dark-orange {
    color: #df8403;
  }

  .md\:text-g-blue {
    color: #17214a;
  }

  .md\:text-g-blue-1 {
    color: #556d88;
  }

  .md\:text-g-blue-2 {
    color: #3c4c65;
  }

  .md\:text-g-blue-3 {
    color: #222e4d;
  }

  .md\:hover\:text-transparent:hover {
    color: transparent;
  }

  .md\:hover\:text-currentColor:hover {
    color: currentColor;
  }

  .md\:hover\:text-black:hover {
    color: #222;
  }

  .md\:hover\:text-black-10:hover {
    color: rgba(0, 0, 0, .1);
  }

  .md\:hover\:text-black-20:hover {
    color: rgba(0, 0, 0, .2);
  }

  .md\:hover\:text-black-30:hover {
    color: rgba(0, 0, 0, .3);
  }

  .md\:hover\:text-black-40:hover {
    color: rgba(0, 0, 0, .4);
  }

  .md\:hover\:text-black-50:hover {
    color: rgba(0, 0, 0, .5);
  }

  .md\:hover\:text-black-60:hover {
    color: rgba(0, 0, 0, .6);
  }

  .md\:hover\:text-black-70:hover {
    color: rgba(0, 0, 0, .7);
  }

  .md\:hover\:text-black-80:hover {
    color: rgba(0, 0, 0, .8);
  }

  .md\:hover\:text-black-90:hover {
    color: rgba(0, 0, 0, .9);
  }

  .md\:hover\:text-black-1:hover {
    color: #313131;
  }

  .md\:hover\:text-white:hover {
    color: #fff;
  }

  .md\:hover\:text-blue:hover {
    color: #0277bd;
  }

  .md\:hover\:text-dark-blue:hover {
    color: #0277bd;
  }

  .md\:hover\:text-blue-1:hover {
    color: #17214a;
  }

  .md\:hover\:text-light-blue:hover {
    color: #0277bd;
  }

  .md\:hover\:text-red:hover {
    color: #cb001c;
  }

  .md\:hover\:text-green:hover {
    color: #00bea0;
  }

  .md\:hover\:text-purple:hover {
    color: #5a80d1;
  }

  .md\:hover\:text-orange:hover {
    color: #ff9a0a;
  }

  .md\:hover\:text-grey:hover {
    color: #929a9d;
  }

  .md\:hover\:text-grey-light:hover {
    color: #e2e2e2;
  }

  .md\:hover\:text-grey-1:hover {
    color: #f2f3f3;
  }

  .md\:hover\:text-grey-2:hover {
    color: #c2c6c8;
  }

  .md\:hover\:text-grey-3:hover {
    color: #6b7375;
  }

  .md\:hover\:text-grey-4:hover {
    color: #465052;
  }

  .md\:hover\:text-grey-5:hover {
    color: #828688;
  }

  .md\:hover\:text-sd-red:hover {
    color: #ed1c24;
  }

  .md\:hover\:text-light-blue-1:hover {
    color: #21b8de;
  }

  .md\:hover\:text-dark-blue-1:hover {
    color: #0277bd;
  }

  .md\:hover\:text-dark-orange:hover {
    color: #df8403;
  }

  .md\:hover\:text-g-blue:hover {
    color: #17214a;
  }

  .md\:hover\:text-g-blue-1:hover {
    color: #556d88;
  }

  .md\:hover\:text-g-blue-2:hover {
    color: #3c4c65;
  }

  .md\:hover\:text-g-blue-3:hover {
    color: #222e4d;
  }

  .md\:text-xxxs {
    font-size: .625rem;;
  }

  .md\:text-xxs {
    font-size: .75rem;
  }

  .md\:text-xs {
    font-size: .875rem;
  }

  .md\:text-sm {
    font-size: 1rem;
  }

  .md\:text-base {
    font-size: 1.125rem;
  }

  .md\:text-lg {
    font-size: 1.25rem;
  }

  .md\:text-2lg {
    font-size: 1.25rem;
  }

  .md\:text-xl {
    font-size: 1.5rem;
  }

  .md\:text-1-5xl {
    font-size: 1.625rem;
  }

  .md\:text-2xl {
    font-size: 1.75rem;
  }

  .md\:text-2-5xl {
    font-size: 1.875rem;
  }

  .md\:text-3xl {
    font-size: 2rem;
  }

  .md\:text-4xl {
    font-size: 2.125rem;
  }

  .md\:text-5xl {
    font-size: 2.25rem;
  }

  .md\:text-6xl {
    font-size: 3.375rem;
  }

  .md\:text-7xl {
    font-size: 4.125rem;
  }

  .md\:italic {
    font-style: italic;
  }

  .md\:roman {
    font-style: normal;
  }

  .md\:uppercase {
    text-transform: uppercase;
  }

  .md\:lowercase {
    text-transform: lowercase;
  }

  .md\:capitalize {
    text-transform: capitalize;
  }

  .md\:normal-case {
    text-transform: none;
  }

  .md\:underline {
    text-decoration: underline;
  }

  .md\:line-through {
    text-decoration: line-through;
  }

  .md\:no-underline {
    text-decoration: none;
  }

  .md\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .md\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .md\:hover\:italic:hover {
    font-style: italic;
  }

  .md\:hover\:roman:hover {
    font-style: normal;
  }

  .md\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .md\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .md\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .md\:hover\:normal-case:hover {
    text-transform: none;
  }

  .md\:hover\:underline:hover {
    text-decoration: underline;
  }

  .md\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .md\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .md\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .md\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .md\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .md\:tracking-normal {
    letter-spacing: 0;
  }

  .md\:tracking-wide {
    letter-spacing: .05em;
  }

  .md\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .md\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .md\:align-baseline {
    vertical-align: baseline;
  }

  .md\:align-top {
    vertical-align: top;
  }

  .md\:align-middle {
    vertical-align: middle;
  }

  .md\:align-bottom {
    vertical-align: bottom;
  }

  .md\:align-text-top {
    vertical-align: text-top;
  }

  .md\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .md\:visible {
    visibility: visible;
  }

  .md\:invisible {
    visibility: hidden;
  }

  .md\:whitespace-normal {
    white-space: normal;
  }

  .md\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .md\:whitespace-pre {
    white-space: pre;
  }

  .md\:whitespace-pre-line {
    white-space: pre-line;
  }

  .md\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .md\:break-words {
    word-wrap: break-word;
  }

  .md\:break-normal {
    word-wrap: normal;
  }

  .md\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .md\:w-0 {
    width: 0;
  }

  .md\:w-1 {
    width: .25rem;
  }

  .md\:w-2 {
    width: .5rem;
  }

  .md\:w-3 {
    width: .75rem;
  }

  .md\:w-4 {
    width: 1rem;
  }

  .md\:w-5 {
    width: 1.25rem;
  }

  .md\:w-6 {
    width: 1.5rem;
  }

  .md\:w-7 {
    width: 1.75rem;
  }

  .md\:w-8 {
    width: 2rem;
  }

  .md\:w-9 {
    width: 2.25rem;
  }

  .md\:w-10 {
    width: 2.5rem;
  }

  .md\:w-12 {
    width: 3rem;
  }

  .md\:w-14 {
    width: 3.5rem;
  }

  .md\:w-16 {
    width: 4rem;
  }

  .md\:w-24 {
    width: 6rem;
  }

  .md\:w-32 {
    width: 8rem;
  }

  .md\:w-40 {
    width: 10rem;
  }

  .md\:w-48 {
    width: 12rem;
  }

  .md\:w-64 {
    width: 16rem;
  }

  .md\:w-70 {
    width: 18rem;
  }

  .md\:w-80 {
    width: 20rem;
  }

  .md\:w-96 {
    width: 24rem;
  }

  .md\:w-112 {
    width: 28rem;
  }

  .md\:w-128 {
    width: 32rem;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-px {
    width: 1px;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:w-half {
    width: 50%;
  }

  .md\:w-100px {
    width: 100px;
  }

  .md\:w-200px {
    width: 200px;
  }

  .md\:w-300px {
    width: 300px;
  }

  .md\:w-400px {
    width: 400px;
  }

  .md\:w-500px {
    width: 500px;
  }

  .md\:w-576px {
    width: 576px;
  }

  .md\:w-600px {
    width: 600px;
  }

  .md\:w-700px {
    width: 700px;
  }

  .md\:w-768px {
    width: 768px;
  }

  .md\:w-800px {
    width: 800px;
  }

  .md\:w-900px {
    width: 900px;
  }

  .md\:w-992px {
    width: 992px;
  }

  .md\:w-1000px {
    width: 1000px;
  }

  .md\:w-1140px {
    width: 1140px;
  }

  .md\:w-1200px {
    width: 1200px;
  }

  .md\:w-1460px {
    width: 1460px;
  }

  .md\:w-1600px {
    width: 1600px;
  }

  .md\:w-screen {
    width: 100vw;
  }

  .md\:z-0 {
    z-index: 0;
  }

  .md\:z-1 {
    z-index: 1;
  }

  .md\:z-4 {
    z-index: 4;
  }

  .md\:z-10 {
    z-index: 10;
  }

  .md\:z-20 {
    z-index: 20;
  }

  .md\:z-30 {
    z-index: 30;
  }

  .md\:z-40 {
    z-index: 40;
  }

  .md\:z-50 {
    z-index: 50;
  }

  .md\:z-60 {
    z-index: 60;
  }

  .md\:z-70 {
    z-index: 70;
  }

  .md\:z-80 {
    z-index: 80;
  }

  .md\:z-90 {
    z-index: 90;
  }

  .md\:z-100 {
    z-index: 100;
  }

  .md\:z-auto {
    z-index: auto;
  }

  .md\:hover\:z-0:hover {
    z-index: 0;
  }

  .md\:hover\:z-1:hover {
    z-index: 1;
  }

  .md\:hover\:z-4:hover {
    z-index: 4;
  }

  .md\:hover\:z-10:hover {
    z-index: 10;
  }

  .md\:hover\:z-20:hover {
    z-index: 20;
  }

  .md\:hover\:z-30:hover {
    z-index: 30;
  }

  .md\:hover\:z-40:hover {
    z-index: 40;
  }

  .md\:hover\:z-50:hover {
    z-index: 50;
  }

  .md\:hover\:z-60:hover {
    z-index: 60;
  }

  .md\:hover\:z-70:hover {
    z-index: 70;
  }

  .md\:hover\:z-80:hover {
    z-index: 80;
  }

  .md\:hover\:z-90:hover {
    z-index: 90;
  }

  .md\:hover\:z-100:hover {
    z-index: 100;
  }

  .md\:hover\:z-auto:hover {
    z-index: auto;
  }

  .md\:pin-t-0 {
    top: 0;
  }

  .md\:pin-r-0 {
    right: 0;
  }

  .md\:pin-b-0 {
    bottom: 0;
  }

  .md\:pin-l-0 {
    left: 0;
  }

  .md\:pin-t-1 {
    top: 1px;
  }

  .md\:pin-r-1 {
    right: 1px;
  }

  .md\:pin-b-1 {
    bottom: 1px;
  }

  .md\:pin-l-1 {
    left: 1px;
  }

  .md\:pin-t-3 {
    top: 3px;
  }

  .md\:pin-r-3 {
    right: 3px;
  }

  .md\:pin-b-3 {
    bottom: 3px;
  }

  .md\:pin-l-3 {
    left: 3px;
  }

  .md\:pin-t-5 {
    top: 5px;
  }

  .md\:pin-r-5 {
    right: 5px;
  }

  .md\:pin-b-5 {
    bottom: 5px;
  }

  .md\:pin-l-5 {
    left: 5px;
  }

  .md\:pin-t-6 {
    top: 6px;
  }

  .md\:pin-r-6 {
    right: 6px;
  }

  .md\:pin-b-6 {
    bottom: 6px;
  }

  .md\:pin-l-6 {
    left: 6px;
  }

  .md\:pin-t-10 {
    top: 10px;
  }

  .md\:pin-r-10 {
    right: 10px;
  }

  .md\:pin-b-10 {
    bottom: 10px;
  }

  .md\:pin-l-10 {
    left: 10px;
  }

  .md\:pin-t-11 {
    top: 11px;
  }

  .md\:pin-r-11 {
    right: 11px;
  }

  .md\:pin-b-11 {
    bottom: 11px;
  }

  .md\:pin-l-11 {
    left: 11px;
  }

  .md\:pin-t-12 {
    top: 3rem;
  }

  .md\:pin-r-12 {
    right: 3rem;
  }

  .md\:pin-b-12 {
    bottom: 3rem;
  }

  .md\:pin-l-12 {
    left: 3rem;
  }

  .md\:pin-t-15 {
    top: 15px;
  }

  .md\:pin-r-15 {
    right: 15px;
  }

  .md\:pin-b-15 {
    bottom: 15px;
  }

  .md\:pin-l-15 {
    left: 15px;
  }

  .md\:pin-t-16 {
    top: 4rem;
  }

  .md\:pin-r-16 {
    right: 4rem;
  }

  .md\:pin-b-16 {
    bottom: 4rem;
  }

  .md\:pin-l-16 {
    left: 4rem;
  }

  .md\:pin-t-20 {
    top: 20px;
  }

  .md\:pin-r-20 {
    right: 20px;
  }

  .md\:pin-b-20 {
    bottom: 20px;
  }

  .md\:pin-l-20 {
    left: 20px;
  }

  .md\:pin-t-25 {
    top: 25px;
  }

  .md\:pin-r-25 {
    right: 25px;
  }

  .md\:pin-b-25 {
    bottom: 25px;
  }

  .md\:pin-l-25 {
    left: 25px;
  }

  .md\:pin-t-50 {
    top: 50px;
  }

  .md\:pin-r-50 {
    right: 50px;
  }

  .md\:pin-b-50 {
    bottom: 50px;
  }

  .md\:pin-l-50 {
    left: 50px;
  }

  .md\:pin-t-64 {
    top: 64px;
  }

  .md\:pin-r-64 {
    right: 64px;
  }

  .md\:pin-b-64 {
    bottom: 64px;
  }

  .md\:pin-l-64 {
    left: 64px;
  }

  .md\:pin-t-75 {
    top: 75px;
  }

  .md\:pin-r-75 {
    right: 75px;
  }

  .md\:pin-b-75 {
    bottom: 75px;
  }

  .md\:pin-l-75 {
    left: 75px;
  }

  .md\:pin-t-80 {
    top: 80px;
  }

  .md\:pin-r-80 {
    right: 80px;
  }

  .md\:pin-b-80 {
    bottom: 80px;
  }

  .md\:pin-l-80 {
    left: 80px;
  }

  .md\:pin-t-100 {
    top: 100px;
  }

  .md\:pin-r-100 {
    right: 100px;
  }

  .md\:pin-b-100 {
    bottom: 100px;
  }

  .md\:pin-l-100 {
    left: 100px;
  }

  .md\:pin-t-150 {
    top: 150px;
  }

  .md\:pin-r-150 {
    right: 150px;
  }

  .md\:pin-b-150 {
    bottom: 150px;
  }

  .md\:pin-l-150 {
    left: 150px;
  }

  .md\:pin-t-200 {
    top: 150px;
  }

  .md\:pin-r-200 {
    right: 150px;
  }

  .md\:pin-b-200 {
    bottom: 150px;
  }

  .md\:pin-l-200 {
    left: 150px;
  }

  .md\:pin-t-250 {
    top: 250px;
  }

  .md\:pin-r-250 {
    right: 250px;
  }

  .md\:pin-b-250 {
    bottom: 250px;
  }

  .md\:pin-l-250 {
    left: 250px;
  }

  .md\:pin-t-300 {
    top: 300px;
  }

  .md\:pin-r-300 {
    right: 300px;
  }

  .md\:pin-b-300 {
    bottom: 300px;
  }

  .md\:pin-l-300 {
    left: 300px;
  }

  .md\:pin-t-400 {
    top: 400px;
  }

  .md\:pin-r-400 {
    right: 400px;
  }

  .md\:pin-b-400 {
    bottom: 400px;
  }

  .md\:pin-l-400 {
    left: 400px;
  }

  .md\:pin-t-500 {
    top: 500px;
  }

  .md\:pin-r-500 {
    right: 500px;
  }

  .md\:pin-b-500 {
    bottom: 500px;
  }

  .md\:pin-l-500 {
    left: 500px;
  }

  .md\:-pin-t-5 {
    top: -5px;
  }

  .md\:-pin-r-5 {
    right: -5px;
  }

  .md\:-pin-b-5 {
    bottom: -5px;
  }

  .md\:-pin-l-5 {
    left: -5px;
  }

  .md\:-pin-t-6 {
    top: -6px;
  }

  .md\:-pin-r-6 {
    right: -6px;
  }

  .md\:-pin-b-6 {
    bottom: -6px;
  }

  .md\:-pin-l-6 {
    left: -6px;
  }

  .md\:-pin-t-10 {
    top: -10px;
  }

  .md\:-pin-r-10 {
    right: -10px;
  }

  .md\:-pin-b-10 {
    bottom: -10px;
  }

  .md\:-pin-l-10 {
    left: -10px;
  }

  .md\:-pin-t-15 {
    top: -15px;
  }

  .md\:-pin-r-15 {
    right: -15px;
  }

  .md\:-pin-b-15 {
    bottom: -15px;
  }

  .md\:-pin-l-15 {
    left: -15px;
  }

  .md\:-pin-t-20 {
    top: -20px;
  }

  .md\:-pin-r-20 {
    right: -20px;
  }

  .md\:-pin-b-20 {
    bottom: -20px;
  }

  .md\:-pin-l-20 {
    left: -20px;
  }

  .md\:-pin-t-12 {
    top: -3rem;
  }

  .md\:-pin-r-12 {
    right: -3rem;
  }

  .md\:-pin-b-12 {
    bottom: -3rem;
  }

  .md\:-pin-l-12 {
    left: -3rem;
  }

  .md\:-pin-t-16 {
    top: -4rem;
  }

  .md\:-pin-r-16 {
    right: -4rem;
  }

  .md\:-pin-b-16 {
    bottom: -4rem;
  }

  .md\:-pin-l-16 {
    left: -4rem;
  }

  .md\:-pin-t-25 {
    top: -25px;
  }

  .md\:-pin-r-25 {
    right: -25px;
  }

  .md\:-pin-b-25 {
    bottom: -25px;
  }

  .md\:-pin-l-25 {
    left: -25px;
  }

  .md\:-pin-t-50 {
    top: -50px;
  }

  .md\:-pin-r-50 {
    right: -50px;
  }

  .md\:-pin-b-50 {
    bottom: -50px;
  }

  .md\:-pin-l-50 {
    left: -50px;
  }

  .md\:-pin-t-75 {
    top: 75px;
  }

  .md\:-pin-r-75 {
    right: 75px;
  }

  .md\:-pin-b-75 {
    bottom: 75px;
  }

  .md\:-pin-l-75 {
    left: 75px;
  }

  .md\:-pin-t-80 {
    top: -80px;
  }

  .md\:-pin-r-80 {
    right: -80px;
  }

  .md\:-pin-b-80 {
    bottom: -80px;
  }

  .md\:-pin-l-80 {
    left: -80px;
  }

  .md\:-pin-t-100 {
    top: -100px;
  }

  .md\:-pin-r-100 {
    right: -100px;
  }

  .md\:-pin-b-100 {
    bottom: -100px;
  }

  .md\:-pin-l-100 {
    left: -100px;
  }

  .md\:-pin-t-150 {
    top: -150px;
  }

  .md\:-pin-r-150 {
    right: -150px;
  }

  .md\:-pin-b-150 {
    bottom: -150px;
  }

  .md\:-pin-l-150 {
    left: -150px;
  }

  .md\:-pin-t-200 {
    top: -200px;
  }

  .md\:-pin-r-200 {
    right: -200px;
  }

  .md\:-pin-b-200 {
    bottom: -200px;
  }

  .md\:-pin-l-200 {
    left: -200px;
  }

  .md\:-pin-t-250 {
    top: -250px;
  }

  .md\:-pin-r-250 {
    right: -250px;
  }

  .md\:-pin-b-250 {
    bottom: -250px;
  }

  .md\:-pin-l-250 {
    left: -250px;
  }

  .md\:-pin-t-300 {
    top: -300px;
  }

  .md\:-pin-r-300 {
    right: -300px;
  }

  .md\:-pin-b-300 {
    bottom: -300px;
  }

  .md\:-pin-l-300 {
    left: -300px;
  }

  .md\:-pin-t-400 {
    top: -400px;
  }

  .md\:-pin-r-400 {
    right: -400px;
  }

  .md\:-pin-b-400 {
    bottom: -400px;
  }

  .md\:-pin-l-400 {
    left: -400px;
  }

  .md\:-pin-t-500 {
    top: -500px;
  }

  .md\:-pin-r-500 {
    right: -500px;
  }

  .md\:-pin-b-500 {
    bottom: -500px;
  }

  .md\:-pin-l-500 {
    left: -500px;
  }

  .md\:pin-t-half {
    top: 50%;
  }

  .md\:pin-r-half {
    right: 50%;
  }

  .md\:pin-b-half {
    bottom: 50%;
  }

  .md\:pin-l-half {
    left: 50%;
  }

  .md\:-pin-t-half {
    top: -50%;
  }

  .md\:-pin-r-half {
    right: -50%;
  }

  .md\:-pin-b-half {
    bottom: -50%;
  }

  .md\:-pin-l-half {
    left: -50%;
  }

  .md\:rotate-45 {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .md\:rotate-90 {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .md\:rotate-180 {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .md\:-rotate-45 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .md\:-rotate-90 {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .md\:-rotate-180 {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .md\:-translateX-50 {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .md\:-translateY-50 {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .md\:hover\:rotate-45:hover {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .md\:hover\:rotate-90:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .md\:hover\:rotate-180:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .md\:hover\:-rotate-45:hover {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .md\:hover\:-rotate-90:hover {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .md\:hover\:-rotate-180:hover {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .md\:hover\:-translateX-50:hover {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .md\:hover\:-translateY-50:hover {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (min-width: 1140px) {
  .lg\:list-reset {
    list-style: none;
    padding: 0;
  }

  .lg\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .lg\:bg-fixed {
    background-attachment: fixed;
  }

  .lg\:bg-local {
    background-attachment: local;
  }

  .lg\:bg-scroll {
    background-attachment: scroll;
  }

  .lg\:bg-transparent {
    background-color: transparent;
  }

  .lg\:bg-currentColor {
    background-color: currentColor;
  }

  .lg\:bg-black {
    background-color: #222;
  }

  .lg\:bg-black-10 {
    background-color: rgba(0, 0, 0, .1);
  }

  .lg\:bg-black-20 {
    background-color: rgba(0, 0, 0, .2);
  }

  .lg\:bg-black-30 {
    background-color: rgba(0, 0, 0, .3);
  }

  .lg\:bg-black-40 {
    background-color: rgba(0, 0, 0, .4);
  }

  .lg\:bg-black-50 {
    background-color: rgba(0, 0, 0, .5);
  }

  .lg\:bg-black-60 {
    background-color: rgba(0, 0, 0, .6);
  }

  .lg\:bg-black-70 {
    background-color: rgba(0, 0, 0, .7);
  }

  .lg\:bg-black-80 {
    background-color: rgba(0, 0, 0, .8);
  }

  .lg\:bg-black-90 {
    background-color: rgba(0, 0, 0, .9);
  }

  .lg\:bg-black-1 {
    background-color: #313131;
  }

  .lg\:bg-white {
    background-color: #fff;
  }

  .lg\:bg-blue {
    background-color: #0277bd;
  }

  .lg\:bg-dark-blue {
    background-color: #0277bd;
  }

  .lg\:bg-blue-1 {
    background-color: #17214a;
  }

  .lg\:bg-light-blue {
    background-color: #0277bd;
  }

  .lg\:bg-red {
    background-color: #cb001c;
  }

  .lg\:bg-green {
    background-color: #00bea0;
  }

  .lg\:bg-purple {
    background-color: #5a80d1;
  }

  .lg\:bg-orange {
    background-color: #ff9a0a;
  }

  .lg\:bg-grey {
    background-color: #929a9d;
  }

  .lg\:bg-grey-light {
    background-color: #e2e2e2;
  }

  .lg\:bg-grey-1 {
    background-color: #f2f3f3;
  }

  .lg\:bg-grey-2 {
    background-color: #c2c6c8;
  }

  .lg\:bg-grey-3 {
    background-color: #6b7375;
  }

  .lg\:bg-grey-4 {
    background-color: #465052;
  }

  .lg\:bg-grey-5 {
    background-color: #828688;
  }

  .lg\:bg-sd-red {
    background-color: #ed1c24;
  }

  .lg\:bg-light-blue-1 {
    background-color: #21b8de;
  }

  .lg\:bg-dark-blue-1 {
    background-color: #0277bd;
  }

  .lg\:bg-dark-orange {
    background-color: #df8403;
  }

  .lg\:bg-g-blue {
    background-color: #17214a;
  }

  .lg\:bg-g-blue-1 {
    background-color: #556d88;
  }

  .lg\:bg-g-blue-2 {
    background-color: #3c4c65;
  }

  .lg\:bg-g-blue-3 {
    background-color: #222e4d;
  }

  .lg\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .lg\:hover\:bg-currentColor:hover {
    background-color: currentColor;
  }

  .lg\:hover\:bg-black:hover {
    background-color: #222;
  }

  .lg\:hover\:bg-black-10:hover {
    background-color: rgba(0, 0, 0, .1);
  }

  .lg\:hover\:bg-black-20:hover {
    background-color: rgba(0, 0, 0, .2);
  }

  .lg\:hover\:bg-black-30:hover {
    background-color: rgba(0, 0, 0, .3);
  }

  .lg\:hover\:bg-black-40:hover {
    background-color: rgba(0, 0, 0, .4);
  }

  .lg\:hover\:bg-black-50:hover {
    background-color: rgba(0, 0, 0, .5);
  }

  .lg\:hover\:bg-black-60:hover {
    background-color: rgba(0, 0, 0, .6);
  }

  .lg\:hover\:bg-black-70:hover {
    background-color: rgba(0, 0, 0, .7);
  }

  .lg\:hover\:bg-black-80:hover {
    background-color: rgba(0, 0, 0, .8);
  }

  .lg\:hover\:bg-black-90:hover {
    background-color: rgba(0, 0, 0, .9);
  }

  .lg\:hover\:bg-black-1:hover {
    background-color: #313131;
  }

  .lg\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .lg\:hover\:bg-blue:hover {
    background-color: #0277bd;
  }

  .lg\:hover\:bg-dark-blue:hover {
    background-color: #0277bd;
  }

  .lg\:hover\:bg-blue-1:hover {
    background-color: #17214a;
  }

  .lg\:hover\:bg-light-blue:hover {
    background-color: #0277bd;
  }

  .lg\:hover\:bg-red:hover {
    background-color: #cb001c;
  }

  .lg\:hover\:bg-green:hover {
    background-color: #00bea0;
  }

  .lg\:hover\:bg-purple:hover {
    background-color: #5a80d1;
  }

  .lg\:hover\:bg-orange:hover {
    background-color: #ff9a0a;
  }

  .lg\:hover\:bg-grey:hover {
    background-color: #929a9d;
  }

  .lg\:hover\:bg-grey-light:hover {
    background-color: #e2e2e2;
  }

  .lg\:hover\:bg-grey-1:hover {
    background-color: #f2f3f3;
  }

  .lg\:hover\:bg-grey-2:hover {
    background-color: #c2c6c8;
  }

  .lg\:hover\:bg-grey-3:hover {
    background-color: #6b7375;
  }

  .lg\:hover\:bg-grey-4:hover {
    background-color: #465052;
  }

  .lg\:hover\:bg-grey-5:hover {
    background-color: #828688;
  }

  .lg\:hover\:bg-sd-red:hover {
    background-color: #ed1c24;
  }

  .lg\:hover\:bg-light-blue-1:hover {
    background-color: #21b8de;
  }

  .lg\:hover\:bg-dark-blue-1:hover {
    background-color: #0277bd;
  }

  .lg\:hover\:bg-dark-orange:hover {
    background-color: #df8403;
  }

  .lg\:hover\:bg-g-blue:hover {
    background-color: #17214a;
  }

  .lg\:hover\:bg-g-blue-1:hover {
    background-color: #556d88;
  }

  .lg\:hover\:bg-g-blue-2:hover {
    background-color: #3c4c65;
  }

  .lg\:hover\:bg-g-blue-3:hover {
    background-color: #222e4d;
  }

  .lg\:bg-bottom {
    background-position: bottom;
  }

  .lg\:bg-center {
    background-position: center;
  }

  .lg\:bg-left {
    background-position: left;
  }

  .lg\:bg-left-bottom {
    background-position: left bottom;
  }

  .lg\:bg-left-top {
    background-position: left top;
  }

  .lg\:bg-right {
    background-position: right;
  }

  .lg\:bg-right-bottom {
    background-position: right bottom;
  }

  .lg\:bg-right-top {
    background-position: right top;
  }

  .lg\:bg-top {
    background-position: top;
  }

  .lg\:bg-repeat {
    background-repeat: repeat;
  }

  .lg\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .lg\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .lg\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .lg\:bg-auto {
    background-size: auto;
  }

  .lg\:bg-cover {
    background-size: cover;
  }

  .lg\:bg-contain {
    background-size: contain;
  }

  .lg\:border-transparent {
    border-color: transparent;
  }

  .lg\:border-currentColor {
    border-color: currentColor;
  }

  .lg\:border-black {
    border-color: #222;
  }

  .lg\:border-black-10 {
    border-color: rgba(0, 0, 0, .1);
  }

  .lg\:border-black-20 {
    border-color: rgba(0, 0, 0, .2);
  }

  .lg\:border-black-30 {
    border-color: rgba(0, 0, 0, .3);
  }

  .lg\:border-black-40 {
    border-color: rgba(0, 0, 0, .4);
  }

  .lg\:border-black-50 {
    border-color: rgba(0, 0, 0, .5);
  }

  .lg\:border-black-60 {
    border-color: rgba(0, 0, 0, .6);
  }

  .lg\:border-black-70 {
    border-color: rgba(0, 0, 0, .7);
  }

  .lg\:border-black-80 {
    border-color: rgba(0, 0, 0, .8);
  }

  .lg\:border-black-90 {
    border-color: rgba(0, 0, 0, .9);
  }

  .lg\:border-black-1 {
    border-color: #313131;
  }

  .lg\:border-white {
    border-color: #fff;
  }

  .lg\:border-blue {
    border-color: #0277bd;
  }

  .lg\:border-dark-blue {
    border-color: #0277bd;
  }

  .lg\:border-blue-1 {
    border-color: #17214a;
  }

  .lg\:border-light-blue {
    border-color: #0277bd;
  }

  .lg\:border-red {
    border-color: #cb001c;
  }

  .lg\:border-green {
    border-color: #00bea0;
  }

  .lg\:border-purple {
    border-color: #5a80d1;
  }

  .lg\:border-orange {
    border-color: #ff9a0a;
  }

  .lg\:border-grey {
    border-color: #929a9d;
  }

  .lg\:border-grey-light {
    border-color: #e2e2e2;
  }

  .lg\:border-grey-1 {
    border-color: #f2f3f3;
  }

  .lg\:border-grey-2 {
    border-color: #c2c6c8;
  }

  .lg\:border-grey-3 {
    border-color: #6b7375;
  }

  .lg\:border-grey-4 {
    border-color: #465052;
  }

  .lg\:border-grey-5 {
    border-color: #828688;
  }

  .lg\:border-sd-red {
    border-color: #ed1c24;
  }

  .lg\:border-light-blue-1 {
    border-color: #21b8de;
  }

  .lg\:border-dark-blue-1 {
    border-color: #0277bd;
  }

  .lg\:border-dark-orange {
    border-color: #df8403;
  }

  .lg\:border-g-blue {
    border-color: #17214a;
  }

  .lg\:border-g-blue-1 {
    border-color: #556d88;
  }

  .lg\:border-g-blue-2 {
    border-color: #3c4c65;
  }

  .lg\:border-g-blue-3 {
    border-color: #222e4d;
  }

  .lg\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .lg\:hover\:border-currentColor:hover {
    border-color: currentColor;
  }

  .lg\:hover\:border-black:hover {
    border-color: #222;
  }

  .lg\:hover\:border-black-10:hover {
    border-color: rgba(0, 0, 0, .1);
  }

  .lg\:hover\:border-black-20:hover {
    border-color: rgba(0, 0, 0, .2);
  }

  .lg\:hover\:border-black-30:hover {
    border-color: rgba(0, 0, 0, .3);
  }

  .lg\:hover\:border-black-40:hover {
    border-color: rgba(0, 0, 0, .4);
  }

  .lg\:hover\:border-black-50:hover {
    border-color: rgba(0, 0, 0, .5);
  }

  .lg\:hover\:border-black-60:hover {
    border-color: rgba(0, 0, 0, .6);
  }

  .lg\:hover\:border-black-70:hover {
    border-color: rgba(0, 0, 0, .7);
  }

  .lg\:hover\:border-black-80:hover {
    border-color: rgba(0, 0, 0, .8);
  }

  .lg\:hover\:border-black-90:hover {
    border-color: rgba(0, 0, 0, .9);
  }

  .lg\:hover\:border-black-1:hover {
    border-color: #313131;
  }

  .lg\:hover\:border-white:hover {
    border-color: #fff;
  }

  .lg\:hover\:border-blue:hover {
    border-color: #0277bd;
  }

  .lg\:hover\:border-dark-blue:hover {
    border-color: #0277bd;
  }

  .lg\:hover\:border-blue-1:hover {
    border-color: #17214a;
  }

  .lg\:hover\:border-light-blue:hover {
    border-color: #0277bd;
  }

  .lg\:hover\:border-red:hover {
    border-color: #cb001c;
  }

  .lg\:hover\:border-green:hover {
    border-color: #00bea0;
  }

  .lg\:hover\:border-purple:hover {
    border-color: #5a80d1;
  }

  .lg\:hover\:border-orange:hover {
    border-color: #ff9a0a;
  }

  .lg\:hover\:border-grey:hover {
    border-color: #929a9d;
  }

  .lg\:hover\:border-grey-light:hover {
    border-color: #e2e2e2;
  }

  .lg\:hover\:border-grey-1:hover {
    border-color: #f2f3f3;
  }

  .lg\:hover\:border-grey-2:hover {
    border-color: #c2c6c8;
  }

  .lg\:hover\:border-grey-3:hover {
    border-color: #6b7375;
  }

  .lg\:hover\:border-grey-4:hover {
    border-color: #465052;
  }

  .lg\:hover\:border-grey-5:hover {
    border-color: #828688;
  }

  .lg\:hover\:border-sd-red:hover {
    border-color: #ed1c24;
  }

  .lg\:hover\:border-light-blue-1:hover {
    border-color: #21b8de;
  }

  .lg\:hover\:border-dark-blue-1:hover {
    border-color: #0277bd;
  }

  .lg\:hover\:border-dark-orange:hover {
    border-color: #df8403;
  }

  .lg\:hover\:border-g-blue:hover {
    border-color: #17214a;
  }

  .lg\:hover\:border-g-blue-1:hover {
    border-color: #556d88;
  }

  .lg\:hover\:border-g-blue-2:hover {
    border-color: #3c4c65;
  }

  .lg\:hover\:border-g-blue-3:hover {
    border-color: #222e4d;
  }

  .lg\:rounded-none {
    border-radius: 0;
  }

  .lg\:rounded-sm {
    border-radius: .125rem;
  }

  .lg\:rounded {
    border-radius: .25rem;
  }

  .lg\:rounded-lg {
    border-radius: .5rem;
  }

  .lg\:rounded-full {
    border-radius: 9999px;
  }

  .lg\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .lg\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .lg\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-t-sm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .lg\:rounded-r-sm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .lg\:rounded-b-sm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .lg\:rounded-l-sm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .lg\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .lg\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .lg\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .lg\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .lg\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .lg\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .lg\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .lg\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .lg\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .lg\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .lg\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .lg\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .lg\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .lg\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .lg\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .lg\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .lg\:rounded-tl-sm {
    border-top-left-radius: .125rem;
  }

  .lg\:rounded-tr-sm {
    border-top-right-radius: .125rem;
  }

  .lg\:rounded-br-sm {
    border-bottom-right-radius: .125rem;
  }

  .lg\:rounded-bl-sm {
    border-bottom-left-radius: .125rem;
  }

  .lg\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .lg\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .lg\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .lg\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .lg\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .lg\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .lg\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .lg\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .lg\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .lg\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .lg\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .lg\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .lg\:border-solid {
    border-style: solid;
  }

  .lg\:border-dashed {
    border-style: dashed;
  }

  .lg\:border-dotted {
    border-style: dotted;
  }

  .lg\:border-none {
    border-style: none;
  }

  .lg\:border-0 {
    border-width: 0;
  }

  .lg\:border-2 {
    border-width: 2px;
  }

  .lg\:border-3 {
    border-width: 3px;
  }

  .lg\:border-4 {
    border-width: 4px;
  }

  .lg\:border-5 {
    border-width: 5px;
  }

  .lg\:border-6 {
    border-width: 6px;
  }

  .lg\:border-7 {
    border-width: 7px;
  }

  .lg\:border-8 {
    border-width: 8px;
  }

  .lg\:border-9 {
    border-width: 9px;
  }

  .lg\:border-10 {
    border-width: 10px;
  }

  .lg\:border {
    border-width: 1px;
  }

  .lg\:border-t-0 {
    border-top-width: 0;
  }

  .lg\:border-r-0 {
    border-right-width: 0;
  }

  .lg\:border-b-0 {
    border-bottom-width: 0;
  }

  .lg\:border-l-0 {
    border-left-width: 0;
  }

  .lg\:border-t-2 {
    border-top-width: 2px;
  }

  .lg\:border-r-2 {
    border-right-width: 2px;
  }

  .lg\:border-b-2 {
    border-bottom-width: 2px;
  }

  .lg\:border-l-2 {
    border-left-width: 2px;
  }

  .lg\:border-t-3 {
    border-top-width: 3px;
  }

  .lg\:border-r-3 {
    border-right-width: 3px;
  }

  .lg\:border-b-3 {
    border-bottom-width: 3px;
  }

  .lg\:border-l-3 {
    border-left-width: 3px;
  }

  .lg\:border-t-4 {
    border-top-width: 4px;
  }

  .lg\:border-r-4 {
    border-right-width: 4px;
  }

  .lg\:border-b-4 {
    border-bottom-width: 4px;
  }

  .lg\:border-l-4 {
    border-left-width: 4px;
  }

  .lg\:border-t-5 {
    border-top-width: 5px;
  }

  .lg\:border-r-5 {
    border-right-width: 5px;
  }

  .lg\:border-b-5 {
    border-bottom-width: 5px;
  }

  .lg\:border-l-5 {
    border-left-width: 5px;
  }

  .lg\:border-t-6 {
    border-top-width: 6px;
  }

  .lg\:border-r-6 {
    border-right-width: 6px;
  }

  .lg\:border-b-6 {
    border-bottom-width: 6px;
  }

  .lg\:border-l-6 {
    border-left-width: 6px;
  }

  .lg\:border-t-7 {
    border-top-width: 7px;
  }

  .lg\:border-r-7 {
    border-right-width: 7px;
  }

  .lg\:border-b-7 {
    border-bottom-width: 7px;
  }

  .lg\:border-l-7 {
    border-left-width: 7px;
  }

  .lg\:border-t-8 {
    border-top-width: 8px;
  }

  .lg\:border-r-8 {
    border-right-width: 8px;
  }

  .lg\:border-b-8 {
    border-bottom-width: 8px;
  }

  .lg\:border-l-8 {
    border-left-width: 8px;
  }

  .lg\:border-t-9 {
    border-top-width: 9px;
  }

  .lg\:border-r-9 {
    border-right-width: 9px;
  }

  .lg\:border-b-9 {
    border-bottom-width: 9px;
  }

  .lg\:border-l-9 {
    border-left-width: 9px;
  }

  .lg\:border-t-10 {
    border-top-width: 10px;
  }

  .lg\:border-r-10 {
    border-right-width: 10px;
  }

  .lg\:border-b-10 {
    border-bottom-width: 10px;
  }

  .lg\:border-l-10 {
    border-left-width: 10px;
  }

  .lg\:border-t {
    border-top-width: 1px;
  }

  .lg\:border-r {
    border-right-width: 1px;
  }

  .lg\:border-b {
    border-bottom-width: 1px;
  }

  .lg\:border-l {
    border-left-width: 1px;
  }

  .lg\:cursor-auto {
    cursor: auto;
  }

  .lg\:cursor-default {
    cursor: default;
  }

  .lg\:cursor-pointer {
    cursor: pointer;
  }

  .lg\:cursor-wait {
    cursor: wait;
  }

  .lg\:cursor-move {
    cursor: move;
  }

  .lg\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .lg\:block {
    display: block;
  }

  .lg\:inline-block {
    display: inline-block;
  }

  .lg\:inline {
    display: inline;
  }

  .lg\:table {
    display: table;
  }

  .lg\:table-row {
    display: table-row;
  }

  .lg\:table-cell {
    display: table-cell;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:flex {
    display: -webkit-box;
    display: flex;
  }

  .lg\:inline-flex {
    display: -webkit-inline-box;
    display: inline-flex;
  }

  .lg\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .lg\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }

  .lg\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .lg\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .lg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .lg\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .lg\:items-start {
    -webkit-box-align: start;
            align-items: flex-start;
  }

  .lg\:items-end {
    -webkit-box-align: end;
            align-items: flex-end;
  }

  .lg\:items-center {
    -webkit-box-align: center;
            align-items: center;
  }

  .lg\:items-baseline {
    -webkit-box-align: baseline;
            align-items: baseline;
  }

  .lg\:items-stretch {
    -webkit-box-align: stretch;
            align-items: stretch;
  }

  .lg\:self-auto {
    align-self: auto;
  }

  .lg\:self-start {
    align-self: flex-start;
  }

  .lg\:self-end {
    align-self: flex-end;
  }

  .lg\:self-center {
    align-self: center;
  }

  .lg\:self-stretch {
    align-self: stretch;
  }

  .lg\:justify-start {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }

  .lg\:justify-end {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }

  .lg\:justify-center {
    -webkit-box-pack: center;
            justify-content: center;
  }

  .lg\:justify-between {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }

  .lg\:justify-around {
    justify-content: space-around;
  }

  .lg\:content-center {
    align-content: center;
  }

  .lg\:content-start {
    align-content: flex-start;
  }

  .lg\:content-end {
    align-content: flex-end;
  }

  .lg\:content-between {
    align-content: space-between;
  }

  .lg\:content-around {
    align-content: space-around;
  }

  .lg\:flex-1 {
    -webkit-box-flex: 1;
            flex: 1;
  }

  .lg\:flex-auto {
    -webkit-box-flex: 1;
            flex: auto;
  }

  .lg\:flex-initial {
    -webkit-box-flex: initial;
            flex: initial;
  }

  .lg\:flex-none {
    -webkit-box-flex: 0;
            flex: none;
  }

  .lg\:flex-grow {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }

  .lg\:flex-shrink {
    flex-shrink: 1;
  }

  .lg\:flex-no-grow {
    -webkit-box-flex: 0;
            flex-grow: 0;
  }

  .lg\:flex-no-shrink {
    flex-shrink: 0;
  }

  .lg\:float-right {
    float: right;
  }

  .lg\:float-left {
    float: left;
  }

  .lg\:float-none {
    float: none;
  }

  .lg\:clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  .lg\:font-Roboto {
    font-family: Roboto;
  }

  .lg\:font-light {
    font-weight: 300;
  }

  .lg\:font-normal {
    font-weight: 400;
  }

  .lg\:font-medium {
    font-weight: 500;
  }

  .lg\:font-semibold {
    font-weight: 600;
  }

  .lg\:font-bold {
    font-weight: 700;
  }

  .lg\:font-extrabold {
    font-weight: 800;
  }

  .lg\:font-xxbold {
    font-weight: 900;
  }

  .lg\:hover\:font-light:hover {
    font-weight: 300;
  }

  .lg\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .lg\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .lg\:hover\:font-semibold:hover {
    font-weight: 600;
  }

  .lg\:hover\:font-bold:hover {
    font-weight: 700;
  }

  .lg\:hover\:font-extrabold:hover {
    font-weight: 800;
  }

  .lg\:hover\:font-xxbold:hover {
    font-weight: 900;
  }

  .lg\:h-0 {
    height: 0;
  }

  .lg\:h-1 {
    height: .25rem;
  }

  .lg\:h-2 {
    height: .5rem;
  }

  .lg\:h-3 {
    height: .75rem;
  }

  .lg\:h-4 {
    height: 1rem;
  }

  .lg\:h-5 {
    height: 1.25rem;
  }

  .lg\:h-6 {
    height: 1.5rem;
  }

  .lg\:h-7 {
    height: 1.75rem;
  }

  .lg\:h-8 {
    height: 2rem;
  }

  .lg\:h-9 {
    height: 2.25rem;
  }

  .lg\:h-10 {
    height: 2.5rem;
  }

  .lg\:h-12 {
    height: 3rem;
  }

  .lg\:h-14 {
    height: 3.5rem;
  }

  .lg\:h-16 {
    height: 4rem;
  }

  .lg\:h-18 {
    height: 4.5rem;
  }

  .lg\:h-24 {
    height: 6rem;
  }

  .lg\:h-32 {
    height: 8rem;
  }

  .lg\:h-48 {
    height: 12rem;
  }

  .lg\:h-64 {
    height: 16rem;
  }

  .lg\:h-auto {
    height: auto;
  }

  .lg\:h-px {
    height: 1px;
  }

  .lg\:h-2px {
    height: 2px;
  }

  .lg\:h-42px {
    height: 2.625rem;
  }

  .lg\:h-50px {
    height: 50px;
  }

  .lg\:h-100px {
    height: 100px;
  }

  .lg\:h-125px {
    height: 125px;
  }

  .lg\:h-150px {
    height: 150px;
  }

  .lg\:h-175px {
    height: 175px;
  }

  .lg\:h-200px {
    height: 200px;
  }

  .lg\:h-225px {
    height: 225px;
  }

  .lg\:h-250px {
    height: 250px;
  }

  .lg\:h-275px {
    height: 275px;
  }

  .lg\:h-300px {
    height: 300px;
  }

  .lg\:h-325px {
    height: 325px;
  }

  .lg\:h-350px {
    height: 350px;
  }

  .lg\:h-375px {
    height: 375px;
  }

  .lg\:h-400px {
    height: 400px;
  }

  .lg\:h-500px {
    height: 500px;
  }

  .lg\:h-576px {
    height: 576px;
  }

  .lg\:h-600px {
    height: 600px;
  }

  .lg\:h-700px {
    height: 700px;
  }

  .lg\:h-768px {
    height: 768px;
  }

  .lg\:h-800px {
    height: 800px;
  }

  .lg\:h-900px {
    height: 900px;
  }

  .lg\:h-992px {
    height: 992px;
  }

  .lg\:h-1000px {
    height: 1000px;
  }

  .lg\:h-1140px {
    height: 1140px;
  }

  .lg\:h-1200px {
    height: 1200px;
  }

  .lg\:h-1460px {
    height: 1460px;
  }

  .lg\:h-1600px {
    height: 1600px;
  }

  .lg\:h-screen {
    height: 100vh;
  }

  .lg\:h-half {
    height: 50%;
  }

  .lg\:h-quarter {
    height: 75%;
  }

  .lg\:h-85\% {
    height: 85%;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:hover\:h-0:hover {
    height: 0;
  }

  .lg\:hover\:h-1:hover {
    height: .25rem;
  }

  .lg\:hover\:h-2:hover {
    height: .5rem;
  }

  .lg\:hover\:h-3:hover {
    height: .75rem;
  }

  .lg\:hover\:h-4:hover {
    height: 1rem;
  }

  .lg\:hover\:h-5:hover {
    height: 1.25rem;
  }

  .lg\:hover\:h-6:hover {
    height: 1.5rem;
  }

  .lg\:hover\:h-7:hover {
    height: 1.75rem;
  }

  .lg\:hover\:h-8:hover {
    height: 2rem;
  }

  .lg\:hover\:h-9:hover {
    height: 2.25rem;
  }

  .lg\:hover\:h-10:hover {
    height: 2.5rem;
  }

  .lg\:hover\:h-12:hover {
    height: 3rem;
  }

  .lg\:hover\:h-14:hover {
    height: 3.5rem;
  }

  .lg\:hover\:h-16:hover {
    height: 4rem;
  }

  .lg\:hover\:h-18:hover {
    height: 4.5rem;
  }

  .lg\:hover\:h-24:hover {
    height: 6rem;
  }

  .lg\:hover\:h-32:hover {
    height: 8rem;
  }

  .lg\:hover\:h-48:hover {
    height: 12rem;
  }

  .lg\:hover\:h-64:hover {
    height: 16rem;
  }

  .lg\:hover\:h-auto:hover {
    height: auto;
  }

  .lg\:hover\:h-px:hover {
    height: 1px;
  }

  .lg\:hover\:h-2px:hover {
    height: 2px;
  }

  .lg\:hover\:h-42px:hover {
    height: 2.625rem;
  }

  .lg\:hover\:h-50px:hover {
    height: 50px;
  }

  .lg\:hover\:h-100px:hover {
    height: 100px;
  }

  .lg\:hover\:h-125px:hover {
    height: 125px;
  }

  .lg\:hover\:h-150px:hover {
    height: 150px;
  }

  .lg\:hover\:h-175px:hover {
    height: 175px;
  }

  .lg\:hover\:h-200px:hover {
    height: 200px;
  }

  .lg\:hover\:h-225px:hover {
    height: 225px;
  }

  .lg\:hover\:h-250px:hover {
    height: 250px;
  }

  .lg\:hover\:h-275px:hover {
    height: 275px;
  }

  .lg\:hover\:h-300px:hover {
    height: 300px;
  }

  .lg\:hover\:h-325px:hover {
    height: 325px;
  }

  .lg\:hover\:h-350px:hover {
    height: 350px;
  }

  .lg\:hover\:h-375px:hover {
    height: 375px;
  }

  .lg\:hover\:h-400px:hover {
    height: 400px;
  }

  .lg\:hover\:h-500px:hover {
    height: 500px;
  }

  .lg\:hover\:h-576px:hover {
    height: 576px;
  }

  .lg\:hover\:h-600px:hover {
    height: 600px;
  }

  .lg\:hover\:h-700px:hover {
    height: 700px;
  }

  .lg\:hover\:h-768px:hover {
    height: 768px;
  }

  .lg\:hover\:h-800px:hover {
    height: 800px;
  }

  .lg\:hover\:h-900px:hover {
    height: 900px;
  }

  .lg\:hover\:h-992px:hover {
    height: 992px;
  }

  .lg\:hover\:h-1000px:hover {
    height: 1000px;
  }

  .lg\:hover\:h-1140px:hover {
    height: 1140px;
  }

  .lg\:hover\:h-1200px:hover {
    height: 1200px;
  }

  .lg\:hover\:h-1460px:hover {
    height: 1460px;
  }

  .lg\:hover\:h-1600px:hover {
    height: 1600px;
  }

  .lg\:hover\:h-screen:hover {
    height: 100vh;
  }

  .lg\:hover\:h-half:hover {
    height: 50%;
  }

  .lg\:hover\:h-quarter:hover {
    height: 75%;
  }

  .lg\:hover\:h-85\%:hover {
    height: 85%;
  }

  .lg\:hover\:h-full:hover {
    height: 100%;
  }

  .lg\:leading-none {
    line-height: 1;
  }

  .lg\:leading-heading {
    line-height: 1.1;
  }

  .lg\:leading-tight {
    line-height: 1.2;
  }

  .lg\:leading-normal {
    line-height: 1.5;
  }

  .lg\:leading-loose {
    line-height: 2;
  }

  .lg\:m-0 {
    margin: 0;
  }

  .lg\:m-1 {
    margin: .25rem;
  }

  .lg\:m-2 {
    margin: .5rem;
  }

  .lg\:m-3 {
    margin: .75rem;
  }

  .lg\:m-4 {
    margin: 1rem;
  }

  .lg\:m-5 {
    margin: 1.25rem;
  }

  .lg\:m-6 {
    margin: 1.5rem;
  }

  .lg\:m-7 {
    margin: 1.75rem;
  }

  .lg\:m-8 {
    margin: 2rem;
  }

  .lg\:m-9 {
    margin: 2.25rem;
  }

  .lg\:m-10 {
    margin: 2.5rem;
  }

  .lg\:m-12 {
    margin: 3rem;
  }

  .lg\:m-16 {
    margin: 4rem;
  }

  .lg\:m-20 {
    margin: 5rem;
  }

  .lg\:m-24 {
    margin: 6rem;
  }

  .lg\:m-28 {
    margin: 7rem;
  }

  .lg\:m-32 {
    margin: 8rem;
  }

  .lg\:m-36 {
    margin: 9rem;
  }

  .lg\:m-40 {
    margin: 10rem;
  }

  .lg\:m-44 {
    margin: 11rem;
  }

  .lg\:m-48 {
    margin: 12rem;
  }

  .lg\:m-56 {
    margin: 14rem;
  }

  .lg\:m-60 {
    margin: 15rem;
  }

  .lg\:m-64 {
    margin: 16rem;
  }

  .lg\:m-80 {
    margin: 20rem;
  }

  .lg\:m-96 {
    margin: 24rem;
  }

  .lg\:m-120 {
    margin: 30rem;
  }

  .lg\:m-160 {
    margin: 40rem;
  }

  .lg\:m-auto {
    margin: auto;
  }

  .lg\:m-px {
    margin: 1px;
  }

  .lg\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .lg\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .lg\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .lg\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .lg\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .lg\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .lg\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .lg\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .lg\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .lg\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .lg\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .lg\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .lg\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .lg\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .lg\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .lg\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .lg\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .lg\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .lg\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .lg\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .lg\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .lg\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .lg\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .lg\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .lg\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .lg\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .lg\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .lg\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .lg\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .lg\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .lg\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .lg\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .lg\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .lg\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .lg\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .lg\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .lg\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .lg\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .lg\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .lg\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .lg\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .lg\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .lg\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .lg\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .lg\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .lg\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .lg\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .lg\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .lg\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .lg\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .lg\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .lg\:my-120 {
    margin-top: 30rem;
    margin-bottom: 30rem;
  }

  .lg\:mx-120 {
    margin-left: 30rem;
    margin-right: 30rem;
  }

  .lg\:my-160 {
    margin-top: 40rem;
    margin-bottom: 40rem;
  }

  .lg\:mx-160 {
    margin-left: 40rem;
    margin-right: 40rem;
  }

  .lg\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .lg\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .lg\:mt-0 {
    margin-top: 0;
  }

  .lg\:mr-0 {
    margin-right: 0;
  }

  .lg\:mb-0 {
    margin-bottom: 0;
  }

  .lg\:ml-0 {
    margin-left: 0;
  }

  .lg\:mt-1 {
    margin-top: .25rem;
  }

  .lg\:mr-1 {
    margin-right: .25rem;
  }

  .lg\:mb-1 {
    margin-bottom: .25rem;
  }

  .lg\:ml-1 {
    margin-left: .25rem;
  }

  .lg\:mt-2 {
    margin-top: .5rem;
  }

  .lg\:mr-2 {
    margin-right: .5rem;
  }

  .lg\:mb-2 {
    margin-bottom: .5rem;
  }

  .lg\:ml-2 {
    margin-left: .5rem;
  }

  .lg\:mt-3 {
    margin-top: .75rem;
  }

  .lg\:mr-3 {
    margin-right: .75rem;
  }

  .lg\:mb-3 {
    margin-bottom: .75rem;
  }

  .lg\:ml-3 {
    margin-left: .75rem;
  }

  .lg\:mt-4 {
    margin-top: 1rem;
  }

  .lg\:mr-4 {
    margin-right: 1rem;
  }

  .lg\:mb-4 {
    margin-bottom: 1rem;
  }

  .lg\:ml-4 {
    margin-left: 1rem;
  }

  .lg\:mt-5 {
    margin-top: 1.25rem;
  }

  .lg\:mr-5 {
    margin-right: 1.25rem;
  }

  .lg\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .lg\:ml-5 {
    margin-left: 1.25rem;
  }

  .lg\:mt-6 {
    margin-top: 1.5rem;
  }

  .lg\:mr-6 {
    margin-right: 1.5rem;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .lg\:ml-6 {
    margin-left: 1.5rem;
  }

  .lg\:mt-7 {
    margin-top: 1.75rem;
  }

  .lg\:mr-7 {
    margin-right: 1.75rem;
  }

  .lg\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .lg\:ml-7 {
    margin-left: 1.75rem;
  }

  .lg\:mt-8 {
    margin-top: 2rem;
  }

  .lg\:mr-8 {
    margin-right: 2rem;
  }

  .lg\:mb-8 {
    margin-bottom: 2rem;
  }

  .lg\:ml-8 {
    margin-left: 2rem;
  }

  .lg\:mt-9 {
    margin-top: 2.25rem;
  }

  .lg\:mr-9 {
    margin-right: 2.25rem;
  }

  .lg\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .lg\:ml-9 {
    margin-left: 2.25rem;
  }

  .lg\:mt-10 {
    margin-top: 2.5rem;
  }

  .lg\:mr-10 {
    margin-right: 2.5rem;
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .lg\:ml-10 {
    margin-left: 2.5rem;
  }

  .lg\:mt-12 {
    margin-top: 3rem;
  }

  .lg\:mr-12 {
    margin-right: 3rem;
  }

  .lg\:mb-12 {
    margin-bottom: 3rem;
  }

  .lg\:ml-12 {
    margin-left: 3rem;
  }

  .lg\:mt-16 {
    margin-top: 4rem;
  }

  .lg\:mr-16 {
    margin-right: 4rem;
  }

  .lg\:mb-16 {
    margin-bottom: 4rem;
  }

  .lg\:ml-16 {
    margin-left: 4rem;
  }

  .lg\:mt-20 {
    margin-top: 5rem;
  }

  .lg\:mr-20 {
    margin-right: 5rem;
  }

  .lg\:mb-20 {
    margin-bottom: 5rem;
  }

  .lg\:ml-20 {
    margin-left: 5rem;
  }

  .lg\:mt-24 {
    margin-top: 6rem;
  }

  .lg\:mr-24 {
    margin-right: 6rem;
  }

  .lg\:mb-24 {
    margin-bottom: 6rem;
  }

  .lg\:ml-24 {
    margin-left: 6rem;
  }

  .lg\:mt-28 {
    margin-top: 7rem;
  }

  .lg\:mr-28 {
    margin-right: 7rem;
  }

  .lg\:mb-28 {
    margin-bottom: 7rem;
  }

  .lg\:ml-28 {
    margin-left: 7rem;
  }

  .lg\:mt-32 {
    margin-top: 8rem;
  }

  .lg\:mr-32 {
    margin-right: 8rem;
  }

  .lg\:mb-32 {
    margin-bottom: 8rem;
  }

  .lg\:ml-32 {
    margin-left: 8rem;
  }

  .lg\:mt-36 {
    margin-top: 9rem;
  }

  .lg\:mr-36 {
    margin-right: 9rem;
  }

  .lg\:mb-36 {
    margin-bottom: 9rem;
  }

  .lg\:ml-36 {
    margin-left: 9rem;
  }

  .lg\:mt-40 {
    margin-top: 10rem;
  }

  .lg\:mr-40 {
    margin-right: 10rem;
  }

  .lg\:mb-40 {
    margin-bottom: 10rem;
  }

  .lg\:ml-40 {
    margin-left: 10rem;
  }

  .lg\:mt-44 {
    margin-top: 11rem;
  }

  .lg\:mr-44 {
    margin-right: 11rem;
  }

  .lg\:mb-44 {
    margin-bottom: 11rem;
  }

  .lg\:ml-44 {
    margin-left: 11rem;
  }

  .lg\:mt-48 {
    margin-top: 12rem;
  }

  .lg\:mr-48 {
    margin-right: 12rem;
  }

  .lg\:mb-48 {
    margin-bottom: 12rem;
  }

  .lg\:ml-48 {
    margin-left: 12rem;
  }

  .lg\:mt-56 {
    margin-top: 14rem;
  }

  .lg\:mr-56 {
    margin-right: 14rem;
  }

  .lg\:mb-56 {
    margin-bottom: 14rem;
  }

  .lg\:ml-56 {
    margin-left: 14rem;
  }

  .lg\:mt-60 {
    margin-top: 15rem;
  }

  .lg\:mr-60 {
    margin-right: 15rem;
  }

  .lg\:mb-60 {
    margin-bottom: 15rem;
  }

  .lg\:ml-60 {
    margin-left: 15rem;
  }

  .lg\:mt-64 {
    margin-top: 16rem;
  }

  .lg\:mr-64 {
    margin-right: 16rem;
  }

  .lg\:mb-64 {
    margin-bottom: 16rem;
  }

  .lg\:ml-64 {
    margin-left: 16rem;
  }

  .lg\:mt-80 {
    margin-top: 20rem;
  }

  .lg\:mr-80 {
    margin-right: 20rem;
  }

  .lg\:mb-80 {
    margin-bottom: 20rem;
  }

  .lg\:ml-80 {
    margin-left: 20rem;
  }

  .lg\:mt-96 {
    margin-top: 24rem;
  }

  .lg\:mr-96 {
    margin-right: 24rem;
  }

  .lg\:mb-96 {
    margin-bottom: 24rem;
  }

  .lg\:ml-96 {
    margin-left: 24rem;
  }

  .lg\:mt-120 {
    margin-top: 30rem;
  }

  .lg\:mr-120 {
    margin-right: 30rem;
  }

  .lg\:mb-120 {
    margin-bottom: 30rem;
  }

  .lg\:ml-120 {
    margin-left: 30rem;
  }

  .lg\:mt-160 {
    margin-top: 40rem;
  }

  .lg\:mr-160 {
    margin-right: 40rem;
  }

  .lg\:mb-160 {
    margin-bottom: 40rem;
  }

  .lg\:ml-160 {
    margin-left: 40rem;
  }

  .lg\:mt-auto {
    margin-top: auto;
  }

  .lg\:mr-auto {
    margin-right: auto;
  }

  .lg\:mb-auto {
    margin-bottom: auto;
  }

  .lg\:ml-auto {
    margin-left: auto;
  }

  .lg\:mt-px {
    margin-top: 1px;
  }

  .lg\:mr-px {
    margin-right: 1px;
  }

  .lg\:mb-px {
    margin-bottom: 1px;
  }

  .lg\:ml-px {
    margin-left: 1px;
  }

  .lg\:max-h-0 {
    max-height: 0;
  }

  .lg\:max-h-1 {
    max-height: .25rem;
  }

  .lg\:max-h-2 {
    max-height: .5rem;
  }

  .lg\:max-h-3 {
    max-height: .75rem;
  }

  .lg\:max-h-4 {
    max-height: 1rem;
  }

  .lg\:max-h-5 {
    max-height: 1.25rem;
  }

  .lg\:max-h-6 {
    max-height: 1.5rem;
  }

  .lg\:max-h-7 {
    max-height: 1.75rem;
  }

  .lg\:max-h-8 {
    max-height: 2rem;
  }

  .lg\:max-h-9 {
    max-height: 2.25rem;
  }

  .lg\:max-h-10 {
    max-height: 2.5rem;
  }

  .lg\:max-h-12 {
    max-height: 3rem;
  }

  .lg\:max-h-14 {
    max-height: 3.5rem;
  }

  .lg\:max-h-16 {
    max-height: 4rem;
  }

  .lg\:max-h-24 {
    max-height: 6rem;
  }

  .lg\:max-h-32 {
    max-height: 8rem;
  }

  .lg\:max-h-40 {
    max-height: 10rem;
  }

  .lg\:max-h-48 {
    max-height: 12rem;
  }

  .lg\:max-h-64 {
    max-height: 16rem;
  }

  .lg\:max-h-70 {
    max-height: 18rem;
  }

  .lg\:max-h-80 {
    max-height: 20rem;
  }

  .lg\:max-h-96 {
    max-height: 24rem;
  }

  .lg\:max-h-112 {
    max-height: 28rem;
  }

  .lg\:max-h-128 {
    max-height: 32rem;
  }

  .lg\:max-h-600 {
    max-height: 600px;
  }

  .lg\:max-h-700 {
    max-height: 700px;
  }

  .lg\:max-h-unset {
    max-height: unset;
  }

  .lg\:max-h-none {
    max-height: none;
  }

  .lg\:max-h-px {
    max-height: 1px;
  }

  .lg\:max-h-2px {
    max-height: 2px;
  }

  .lg\:max-h-100px {
    max-height: 100px;
  }

  .lg\:max-h-125px {
    max-height: 125px;
  }

  .lg\:max-h-150px {
    max-height: 150px;
  }

  .lg\:max-h-175px {
    max-height: 175px;
  }

  .lg\:max-h-200px {
    max-height: 200px;
  }

  .lg\:max-h-225px {
    max-height: 225px;
  }

  .lg\:max-h-250px {
    max-height: 250px;
  }

  .lg\:max-h-275px {
    max-height: 275px;
  }

  .lg\:max-h-300px {
    max-height: 300px;
  }

  .lg\:max-h-325px {
    max-height: 325px;
  }

  .lg\:max-h-350px {
    max-height: 350px;
  }

  .lg\:max-h-375px {
    max-height: 375px;
  }

  .lg\:max-h-400px {
    max-height: 400px;
  }

  .lg\:max-h-450px {
    max-height: 450px;
  }

  .lg\:max-h-475px {
    max-height: 475px;
  }

  .lg\:max-h-500px {
    max-height: 500px;
  }

  .lg\:max-h-768px {
    max-height: 768px;
  }

  .lg\:max-h-800px {
    max-height: 800px;
  }

  .lg\:max-h-900px {
    max-height: 900px;
  }

  .lg\:max-h-992px {
    max-height: 992px;
  }

  .lg\:max-h-1000px {
    max-height: 1000px;
  }

  .lg\:max-h-1140px {
    max-height: 1140px;
  }

  .lg\:max-h-1200px {
    max-height: 1200px;
  }

  .lg\:max-h-1460px {
    max-height: 1460px;
  }

  .lg\:max-h-1600px {
    max-height: 1600px;
  }

  .lg\:max-h-screen {
    max-height: 100vw;
  }

  .lg\:max-h-half {
    max-height: 50%;
  }

  .lg\:max-h-quarter {
    max-height: 75%;
  }

  .lg\:max-h-85\% {
    max-height: 85%;
  }

  .lg\:max-h-full {
    max-height: 100%;
  }

  .lg\:max-w-0 {
    max-width: 0;
  }

  .lg\:max-w-1 {
    max-width: .25rem;
  }

  .lg\:max-w-2 {
    max-width: .5rem;
  }

  .lg\:max-w-3 {
    max-width: .75rem;
  }

  .lg\:max-w-4 {
    max-width: 1rem;
  }

  .lg\:max-w-5 {
    max-width: 1.25rem;
  }

  .lg\:max-w-6 {
    max-width: 1.5rem;
  }

  .lg\:max-w-7 {
    max-width: 1.75rem;
  }

  .lg\:max-w-8 {
    max-width: 2rem;
  }

  .lg\:max-w-9 {
    max-width: 2.25rem;
  }

  .lg\:max-w-10 {
    max-width: 2.5rem;
  }

  .lg\:max-w-12 {
    max-width: 3rem;
  }

  .lg\:max-w-14 {
    max-width: 3.5rem;
  }

  .lg\:max-w-16 {
    max-width: 4rem;
  }

  .lg\:max-w-24 {
    max-width: 6rem;
  }

  .lg\:max-w-32 {
    max-width: 8rem;
  }

  .lg\:max-w-40 {
    max-width: 10rem;
  }

  .lg\:max-w-48 {
    max-width: 12rem;
  }

  .lg\:max-w-64 {
    max-width: 16rem;
  }

  .lg\:max-w-70 {
    max-width: 18rem;
  }

  .lg\:max-w-80 {
    max-width: 20rem;
  }

  .lg\:max-w-96 {
    max-width: 24rem;
  }

  .lg\:max-w-112 {
    max-width: 28rem;
  }

  .lg\:max-w-128 {
    max-width: 32rem;
  }

  .lg\:max-w-600 {
    max-width: 600px;
  }

  .lg\:max-w-700 {
    max-width: 700px;
  }

  .lg\:max-w-none {
    max-width: none;
  }

  .lg\:max-w-px {
    max-width: 1px;
  }

  .lg\:max-w-2px {
    max-width: 2px;
  }

  .lg\:max-w-100px {
    max-width: 100px;
  }

  .lg\:max-w-125px {
    max-width: 125px;
  }

  .lg\:max-w-150px {
    max-width: 150px;
  }

  .lg\:max-w-175px {
    max-width: 175px;
  }

  .lg\:max-w-200px {
    max-width: 200px;
  }

  .lg\:max-w-225px {
    max-width: 225px;
  }

  .lg\:max-w-250px {
    max-width: 250px;
  }

  .lg\:max-w-275px {
    max-width: 275px;
  }

  .lg\:max-w-300px {
    max-width: 300px;
  }

  .lg\:max-w-325px {
    max-width: 325px;
  }

  .lg\:max-w-350px {
    max-width: 350px;
  }

  .lg\:max-w-375px {
    max-width: 375px;
  }

  .lg\:max-w-400px {
    max-width: 400px;
  }

  .lg\:max-w-450px {
    max-width: 450px;
  }

  .lg\:max-w-475px {
    max-width: 475px;
  }

  .lg\:max-w-500px {
    max-width: 500px;
  }

  .lg\:max-w-768px {
    max-width: 768px;
  }

  .lg\:max-w-800px {
    max-width: 800px;
  }

  .lg\:max-w-900px {
    max-width: 900px;
  }

  .lg\:max-w-992px {
    max-width: 992px;
  }

  .lg\:max-w-1000px {
    max-width: 1000px;
  }

  .lg\:max-w-1140px {
    max-width: 1140px;
  }

  .lg\:max-w-1200px {
    max-width: 1200px;
  }

  .lg\:max-w-1460px {
    max-width: 1460px;
  }

  .lg\:max-w-1600px {
    max-width: 1600px;
  }

  .lg\:max-w-screen {
    max-width: 100vw;
  }

  .lg\:max-w-half {
    max-width: 50%;
  }

  .lg\:max-w-quarter {
    max-width: 75%;
  }

  .lg\:max-w-85\% {
    max-width: 85%;
  }

  .lg\:max-w-full {
    max-width: 100%;
  }

  .lg\:min-h-0 {
    min-height: 0;
  }

  .lg\:min-h-1 {
    min-height: .25rem;
  }

  .lg\:min-h-2 {
    min-height: .5rem;
  }

  .lg\:min-h-3 {
    min-height: .75rem;
  }

  .lg\:min-h-4 {
    min-height: 1rem;
  }

  .lg\:min-h-5 {
    min-height: 1.25rem;
  }

  .lg\:min-h-6 {
    min-height: 1.5rem;
  }

  .lg\:min-h-7 {
    min-height: 1.75rem;
  }

  .lg\:min-h-8 {
    min-height: 2rem;
  }

  .lg\:min-h-9 {
    min-height: 2.25rem;
  }

  .lg\:min-h-10 {
    min-height: 2.5rem;
  }

  .lg\:min-h-12 {
    min-height: 3rem;
  }

  .lg\:min-h-14 {
    min-height: 3.5rem;
  }

  .lg\:min-h-16 {
    min-height: 4rem;
  }

  .lg\:min-h-24 {
    min-height: 6rem;
  }

  .lg\:min-h-32 {
    min-height: 8rem;
  }

  .lg\:min-h-40 {
    min-height: 10rem;
  }

  .lg\:min-h-48 {
    min-height: 12rem;
  }

  .lg\:min-h-64 {
    min-height: 16rem;
  }

  .lg\:min-h-70 {
    min-height: 18rem;
  }

  .lg\:min-h-80 {
    min-height: 20rem;
  }

  .lg\:min-h-96 {
    min-height: 24rem;
  }

  .lg\:min-h-112 {
    min-height: 28rem;
  }

  .lg\:min-h-128 {
    min-height: 32rem;
  }

  .lg\:min-h-600 {
    min-height: 600px;
  }

  .lg\:min-h-700 {
    min-height: 700px;
  }

  .lg\:min-h-px {
    min-height: 1px;
  }

  .lg\:min-h-2px {
    min-height: 2px;
  }

  .lg\:min-h-100px {
    min-height: 100px;
  }

  .lg\:min-h-125px {
    min-height: 125px;
  }

  .lg\:min-h-150px {
    min-height: 150px;
  }

  .lg\:min-h-175px {
    min-height: 175px;
  }

  .lg\:min-h-200px {
    min-height: 200px;
  }

  .lg\:min-h-225px {
    min-height: 225px;
  }

  .lg\:min-h-250px {
    min-height: 250px;
  }

  .lg\:min-h-275px {
    min-height: 275px;
  }

  .lg\:min-h-300px {
    min-height: 300px;
  }

  .lg\:min-h-325px {
    min-height: 325px;
  }

  .lg\:min-h-350px {
    min-height: 350px;
  }

  .lg\:min-h-375px {
    min-height: 375px;
  }

  .lg\:min-h-400px {
    min-height: 400px;
  }

  .lg\:min-h-450px {
    min-height: 450px;
  }

  .lg\:min-h-475px {
    min-height: 475px;
  }

  .lg\:min-h-500px {
    min-height: 500px;
  }

  .lg\:min-h-768px {
    min-height: 768px;
  }

  .lg\:min-h-800px {
    min-height: 800px;
  }

  .lg\:min-h-900px {
    min-height: 900px;
  }

  .lg\:min-h-992px {
    min-height: 992px;
  }

  .lg\:min-h-1000px {
    min-height: 1000px;
  }

  .lg\:min-h-1140px {
    min-height: 1140px;
  }

  .lg\:min-h-1200px {
    min-height: 1200px;
  }

  .lg\:min-h-1460px {
    min-height: 1460px;
  }

  .lg\:min-h-1600px {
    min-height: 1600px;
  }

  .lg\:min-h-screen {
    min-height: 100vw;
  }

  .lg\:min-h-half {
    min-height: 50%;
  }

  .lg\:min-h-quarter {
    min-height: 75%;
  }

  .lg\:min-h-85\% {
    min-height: 85%;
  }

  .lg\:min-h-full {
    min-height: 100%;
  }

  .lg\:min-w-0 {
    min-width: 0;
  }

  .lg\:min-w-1 {
    min-width: .25rem;
  }

  .lg\:min-w-2 {
    min-width: .5rem;
  }

  .lg\:min-w-3 {
    min-width: .75rem;
  }

  .lg\:min-w-4 {
    min-width: 1rem;
  }

  .lg\:min-w-5 {
    min-width: 1.25rem;
  }

  .lg\:min-w-6 {
    min-width: 1.5rem;
  }

  .lg\:min-w-7 {
    min-width: 1.75rem;
  }

  .lg\:min-w-8 {
    min-width: 2rem;
  }

  .lg\:min-w-9 {
    min-width: 2.25rem;
  }

  .lg\:min-w-10 {
    min-width: 2.5rem;
  }

  .lg\:min-w-12 {
    min-width: 3rem;
  }

  .lg\:min-w-16 {
    min-width: 4rem;
  }

  .lg\:min-w-24 {
    min-width: 6rem;
  }

  .lg\:min-w-32 {
    min-width: 8rem;
  }

  .lg\:min-w-40 {
    min-width: 10rem;
  }

  .lg\:min-w-48 {
    min-width: 12rem;
  }

  .lg\:min-w-64 {
    min-width: 16rem;
  }

  .lg\:min-w-70 {
    min-width: 18rem;
  }

  .lg\:min-w-80 {
    min-width: 20rem;
  }

  .lg\:min-w-96 {
    min-width: 24rem;
  }

  .lg\:min-w-112 {
    min-width: 28rem;
  }

  .lg\:min-w-128 {
    min-width: 32rem;
  }

  .lg\:min-w-auto {
    min-width: auto;
  }

  .lg\:min-w-px {
    min-width: 1px;
  }

  .lg\:min-w-2px {
    min-width: 2px;
  }

  .lg\:min-w-100px {
    min-width: 100px;
  }

  .lg\:min-w-125px {
    min-width: 125px;
  }

  .lg\:min-w-150px {
    min-width: 150px;
  }

  .lg\:min-w-175px {
    min-width: 175px;
  }

  .lg\:min-w-200px {
    min-width: 200px;
  }

  .lg\:min-w-225px {
    min-width: 225px;
  }

  .lg\:min-w-250px {
    min-width: 250px;
  }

  .lg\:min-w-275px {
    min-width: 275px;
  }

  .lg\:min-w-300px {
    min-width: 300px;
  }

  .lg\:min-w-325px {
    min-width: 325px;
  }

  .lg\:min-w-350px {
    min-width: 350px;
  }

  .lg\:min-w-375px {
    min-width: 375px;
  }

  .lg\:min-w-400px {
    min-width: 400px;
  }

  .lg\:min-w-450px {
    min-width: 450px;
  }

  .lg\:min-w-475px {
    min-width: 475px;
  }

  .lg\:min-w-500px {
    min-width: 500px;
  }

  .lg\:min-w-576px {
    min-width: 576px;
  }

  .lg\:min-w-600px {
    min-width: 600px;
  }

  .lg\:min-w-700px {
    min-width: 700px;
  }

  .lg\:min-w-768px {
    min-width: 768px;
  }

  .lg\:min-w-800px {
    min-width: 800px;
  }

  .lg\:min-w-900px {
    min-width: 900px;
  }

  .lg\:min-w-992px {
    min-width: 992px;
  }

  .lg\:min-w-1000px {
    min-width: 1000px;
  }

  .lg\:min-w-1140px {
    min-width: 1140px;
  }

  .lg\:min-w-1200px {
    min-width: 1200px;
  }

  .lg\:min-w-1460px {
    min-width: 1460px;
  }

  .lg\:min-w-1600px {
    min-width: 1600px;
  }

  .lg\:min-w-screen {
    min-width: 100vw;
  }

  .lg\:min-w-half {
    min-width: 50%;
  }

  .lg\:min-w-quarter {
    min-width: 75%;
  }

  .lg\:min-w-85\% {
    min-width: 85%;
  }

  .lg\:min-w-full {
    min-width: 100%;
  }

  .lg\:-m-0 {
    margin: 0;
  }

  .lg\:-m-1 {
    margin: -0.25rem;
  }

  .lg\:-m-2 {
    margin: -0.5rem;
  }

  .lg\:-m-3 {
    margin: -0.75rem;
  }

  .lg\:-m-4 {
    margin: -1rem;
  }

  .lg\:-m-5 {
    margin: -1.25rem;
  }

  .lg\:-m-6 {
    margin: -1.5rem;
  }

  .lg\:-m-7 {
    margin: -1.75rem;
  }

  .lg\:-m-8 {
    margin: -2rem;
  }

  .lg\:-m-9 {
    margin: -2.25rem;
  }

  .lg\:-m-10 {
    margin: -2.5rem;
  }

  .lg\:-m-12 {
    margin: -3rem;
  }

  .lg\:-m-16 {
    margin: -4rem;
  }

  .lg\:-m-20 {
    margin: -5rem;
  }

  .lg\:-m-24 {
    margin: -6rem;
  }

  .lg\:-m-28 {
    margin: -7rem;
  }

  .lg\:-m-32 {
    margin: -8rem;
  }

  .lg\:-m-36 {
    margin: -9rem;
  }

  .lg\:-m-40 {
    margin: -10rem;
  }

  .lg\:-m-44 {
    margin: -11rem;
  }

  .lg\:-m-48 {
    margin: -12rem;
  }

  .lg\:-m-56 {
    margin: -14rem;
  }

  .lg\:-m-60 {
    margin: -15rem;
  }

  .lg\:-m-64 {
    margin: -16rem;
  }

  .lg\:-m-80 {
    margin: -20rem;
  }

  .lg\:-m-96 {
    margin: -24rem;
  }

  .lg\:-m-120 {
    margin: -30rem;
  }

  .lg\:-m-160 {
    margin: -40rem;
  }

  .lg\:-m-auto {
    margin: -auto;
  }

  .lg\:-m-px {
    margin: -1px;
  }

  .lg\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .lg\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .lg\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .lg\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .lg\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .lg\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .lg\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .lg\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .lg\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .lg\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .lg\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .lg\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .lg\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .lg\:-my-7 {
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .lg\:-mx-7 {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .lg\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .lg\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .lg\:-my-9 {
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .lg\:-mx-9 {
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .lg\:-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .lg\:-mx-10 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .lg\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .lg\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .lg\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .lg\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .lg\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .lg\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .lg\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .lg\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .lg\:-my-28 {
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .lg\:-mx-28 {
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .lg\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .lg\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .lg\:-my-36 {
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .lg\:-mx-36 {
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .lg\:-my-40 {
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .lg\:-mx-40 {
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .lg\:-my-44 {
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .lg\:-mx-44 {
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .lg\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .lg\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .lg\:-my-56 {
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .lg\:-mx-56 {
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .lg\:-my-60 {
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .lg\:-mx-60 {
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .lg\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .lg\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .lg\:-my-80 {
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .lg\:-mx-80 {
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .lg\:-my-96 {
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .lg\:-mx-96 {
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .lg\:-my-120 {
    margin-top: -30rem;
    margin-bottom: -30rem;
  }

  .lg\:-mx-120 {
    margin-left: -30rem;
    margin-right: -30rem;
  }

  .lg\:-my-160 {
    margin-top: -40rem;
    margin-bottom: -40rem;
  }

  .lg\:-mx-160 {
    margin-left: -40rem;
    margin-right: -40rem;
  }

  .lg\:-my-auto {
    margin-top: -auto;
    margin-bottom: -auto;
  }

  .lg\:-mx-auto {
    margin-left: -auto;
    margin-right: -auto;
  }

  .lg\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .lg\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .lg\:-mt-0 {
    margin-top: 0;
  }

  .lg\:-mr-0 {
    margin-right: 0;
  }

  .lg\:-mb-0 {
    margin-bottom: 0;
  }

  .lg\:-ml-0 {
    margin-left: 0;
  }

  .lg\:-mt-1 {
    margin-top: -0.25rem;
  }

  .lg\:-mr-1 {
    margin-right: -0.25rem;
  }

  .lg\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .lg\:-ml-1 {
    margin-left: -0.25rem;
  }

  .lg\:-mt-2 {
    margin-top: -0.5rem;
  }

  .lg\:-mr-2 {
    margin-right: -0.5rem;
  }

  .lg\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .lg\:-ml-2 {
    margin-left: -0.5rem;
  }

  .lg\:-mt-3 {
    margin-top: -0.75rem;
  }

  .lg\:-mr-3 {
    margin-right: -0.75rem;
  }

  .lg\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .lg\:-ml-3 {
    margin-left: -0.75rem;
  }

  .lg\:-mt-4 {
    margin-top: -1rem;
  }

  .lg\:-mr-4 {
    margin-right: -1rem;
  }

  .lg\:-mb-4 {
    margin-bottom: -1rem;
  }

  .lg\:-ml-4 {
    margin-left: -1rem;
  }

  .lg\:-mt-5 {
    margin-top: -1.25rem;
  }

  .lg\:-mr-5 {
    margin-right: -1.25rem;
  }

  .lg\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .lg\:-ml-5 {
    margin-left: -1.25rem;
  }

  .lg\:-mt-6 {
    margin-top: -1.5rem;
  }

  .lg\:-mr-6 {
    margin-right: -1.5rem;
  }

  .lg\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .lg\:-ml-6 {
    margin-left: -1.5rem;
  }

  .lg\:-mt-7 {
    margin-top: -1.75rem;
  }

  .lg\:-mr-7 {
    margin-right: -1.75rem;
  }

  .lg\:-mb-7 {
    margin-bottom: -1.75rem;
  }

  .lg\:-ml-7 {
    margin-left: -1.75rem;
  }

  .lg\:-mt-8 {
    margin-top: -2rem;
  }

  .lg\:-mr-8 {
    margin-right: -2rem;
  }

  .lg\:-mb-8 {
    margin-bottom: -2rem;
  }

  .lg\:-ml-8 {
    margin-left: -2rem;
  }

  .lg\:-mt-9 {
    margin-top: -2.25rem;
  }

  .lg\:-mr-9 {
    margin-right: -2.25rem;
  }

  .lg\:-mb-9 {
    margin-bottom: -2.25rem;
  }

  .lg\:-ml-9 {
    margin-left: -2.25rem;
  }

  .lg\:-mt-10 {
    margin-top: -2.5rem;
  }

  .lg\:-mr-10 {
    margin-right: -2.5rem;
  }

  .lg\:-mb-10 {
    margin-bottom: -2.5rem;
  }

  .lg\:-ml-10 {
    margin-left: -2.5rem;
  }

  .lg\:-mt-12 {
    margin-top: -3rem;
  }

  .lg\:-mr-12 {
    margin-right: -3rem;
  }

  .lg\:-mb-12 {
    margin-bottom: -3rem;
  }

  .lg\:-ml-12 {
    margin-left: -3rem;
  }

  .lg\:-mt-16 {
    margin-top: -4rem;
  }

  .lg\:-mr-16 {
    margin-right: -4rem;
  }

  .lg\:-mb-16 {
    margin-bottom: -4rem;
  }

  .lg\:-ml-16 {
    margin-left: -4rem;
  }

  .lg\:-mt-20 {
    margin-top: -5rem;
  }

  .lg\:-mr-20 {
    margin-right: -5rem;
  }

  .lg\:-mb-20 {
    margin-bottom: -5rem;
  }

  .lg\:-ml-20 {
    margin-left: -5rem;
  }

  .lg\:-mt-24 {
    margin-top: -6rem;
  }

  .lg\:-mr-24 {
    margin-right: -6rem;
  }

  .lg\:-mb-24 {
    margin-bottom: -6rem;
  }

  .lg\:-ml-24 {
    margin-left: -6rem;
  }

  .lg\:-mt-28 {
    margin-top: -7rem;
  }

  .lg\:-mr-28 {
    margin-right: -7rem;
  }

  .lg\:-mb-28 {
    margin-bottom: -7rem;
  }

  .lg\:-ml-28 {
    margin-left: -7rem;
  }

  .lg\:-mt-32 {
    margin-top: -8rem;
  }

  .lg\:-mr-32 {
    margin-right: -8rem;
  }

  .lg\:-mb-32 {
    margin-bottom: -8rem;
  }

  .lg\:-ml-32 {
    margin-left: -8rem;
  }

  .lg\:-mt-36 {
    margin-top: -9rem;
  }

  .lg\:-mr-36 {
    margin-right: -9rem;
  }

  .lg\:-mb-36 {
    margin-bottom: -9rem;
  }

  .lg\:-ml-36 {
    margin-left: -9rem;
  }

  .lg\:-mt-40 {
    margin-top: -10rem;
  }

  .lg\:-mr-40 {
    margin-right: -10rem;
  }

  .lg\:-mb-40 {
    margin-bottom: -10rem;
  }

  .lg\:-ml-40 {
    margin-left: -10rem;
  }

  .lg\:-mt-44 {
    margin-top: -11rem;
  }

  .lg\:-mr-44 {
    margin-right: -11rem;
  }

  .lg\:-mb-44 {
    margin-bottom: -11rem;
  }

  .lg\:-ml-44 {
    margin-left: -11rem;
  }

  .lg\:-mt-48 {
    margin-top: -12rem;
  }

  .lg\:-mr-48 {
    margin-right: -12rem;
  }

  .lg\:-mb-48 {
    margin-bottom: -12rem;
  }

  .lg\:-ml-48 {
    margin-left: -12rem;
  }

  .lg\:-mt-56 {
    margin-top: -14rem;
  }

  .lg\:-mr-56 {
    margin-right: -14rem;
  }

  .lg\:-mb-56 {
    margin-bottom: -14rem;
  }

  .lg\:-ml-56 {
    margin-left: -14rem;
  }

  .lg\:-mt-60 {
    margin-top: -15rem;
  }

  .lg\:-mr-60 {
    margin-right: -15rem;
  }

  .lg\:-mb-60 {
    margin-bottom: -15rem;
  }

  .lg\:-ml-60 {
    margin-left: -15rem;
  }

  .lg\:-mt-64 {
    margin-top: -16rem;
  }

  .lg\:-mr-64 {
    margin-right: -16rem;
  }

  .lg\:-mb-64 {
    margin-bottom: -16rem;
  }

  .lg\:-ml-64 {
    margin-left: -16rem;
  }

  .lg\:-mt-80 {
    margin-top: -20rem;
  }

  .lg\:-mr-80 {
    margin-right: -20rem;
  }

  .lg\:-mb-80 {
    margin-bottom: -20rem;
  }

  .lg\:-ml-80 {
    margin-left: -20rem;
  }

  .lg\:-mt-96 {
    margin-top: -24rem;
  }

  .lg\:-mr-96 {
    margin-right: -24rem;
  }

  .lg\:-mb-96 {
    margin-bottom: -24rem;
  }

  .lg\:-ml-96 {
    margin-left: -24rem;
  }

  .lg\:-mt-120 {
    margin-top: -30rem;
  }

  .lg\:-mr-120 {
    margin-right: -30rem;
  }

  .lg\:-mb-120 {
    margin-bottom: -30rem;
  }

  .lg\:-ml-120 {
    margin-left: -30rem;
  }

  .lg\:-mt-160 {
    margin-top: -40rem;
  }

  .lg\:-mr-160 {
    margin-right: -40rem;
  }

  .lg\:-mb-160 {
    margin-bottom: -40rem;
  }

  .lg\:-ml-160 {
    margin-left: -40rem;
  }

  .lg\:-mt-auto {
    margin-top: -auto;
  }

  .lg\:-mr-auto {
    margin-right: -auto;
  }

  .lg\:-mb-auto {
    margin-bottom: -auto;
  }

  .lg\:-ml-auto {
    margin-left: -auto;
  }

  .lg\:-mt-px {
    margin-top: -1px;
  }

  .lg\:-mr-px {
    margin-right: -1px;
  }

  .lg\:-mb-px {
    margin-bottom: -1px;
  }

  .lg\:-ml-px {
    margin-left: -1px;
  }

  .lg\:opacity-0 {
    opacity: 0;
  }

  .lg\:opacity-25 {
    opacity: .25;
  }

  .lg\:opacity-50 {
    opacity: .5;
  }

  .lg\:opacity-75 {
    opacity: .75;
  }

  .lg\:opacity-100 {
    opacity: 1;
  }

  .lg\:overflow-auto {
    overflow: auto;
  }

  .lg\:overflow-hidden {
    overflow: hidden;
  }

  .lg\:overflow-visible {
    overflow: visible;
  }

  .lg\:overflow-scroll {
    overflow: scroll;
  }

  .lg\:overflow-x-auto {
    overflow-x: auto;
  }

  .lg\:overflow-y-auto {
    overflow-y: auto;
  }

  .lg\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .lg\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .lg\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .lg\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .lg\:p-0 {
    padding: 0;
  }

  .lg\:p-1 {
    padding: .25rem;
  }

  .lg\:p-2 {
    padding: .5rem;
  }

  .lg\:p-3 {
    padding: .75rem;
  }

  .lg\:p-4 {
    padding: 1rem;
  }

  .lg\:p-5 {
    padding: 1.25rem;
  }

  .lg\:p-6 {
    padding: 1.5rem;
  }

  .lg\:p-7 {
    padding: 1.75rem;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:p-9 {
    padding: 2.25rem;
  }

  .lg\:p-10 {
    padding: 2.5rem;
  }

  .lg\:p-12 {
    padding: 3rem;
  }

  .lg\:p-16 {
    padding: 4rem;
  }

  .lg\:p-20 {
    padding: 5rem;
  }

  .lg\:p-24 {
    padding: 6rem;
  }

  .lg\:p-28 {
    padding: 7rem;
  }

  .lg\:p-32 {
    padding: 8rem;
  }

  .lg\:p-36 {
    padding: 9rem;
  }

  .lg\:p-40 {
    padding: 10rem;
  }

  .lg\:p-44 {
    padding: 11rem;
  }

  .lg\:p-48 {
    padding: 12rem;
  }

  .lg\:p-56 {
    padding: 14rem;
  }

  .lg\:p-60 {
    padding: 15rem;
  }

  .lg\:p-64 {
    padding: 16rem;
  }

  .lg\:p-80 {
    padding: 20rem;
  }

  .lg\:p-96 {
    padding: 24rem;
  }

  .lg\:p-120 {
    padding: 30rem;
  }

  .lg\:p-160 {
    padding: 40rem;
  }

  .lg\:p-px {
    padding: 1px;
  }

  .lg\:p-10\% {
    padding: 10%;
  }

  .lg\:p-20\% {
    padding: 20%;
  }

  .lg\:p-30\% {
    padding: 30%;
  }

  .lg\:p-40\% {
    padding: 40%;
  }

  .lg\:p-50\% {
    padding: 50%;
  }

  .lg\:p-60\% {
    padding: 60%;
  }

  .lg\:p-70\% {
    padding: 70%;
  }

  .lg\:p-80\% {
    padding: 80%;
  }

  .lg\:p-90\% {
    padding: 90%;
  }

  .lg\:p-1vw {
    padding: 1vw;
  }

  .lg\:p-2vw {
    padding: 2vw;
  }

  .lg\:p-3vw {
    padding: 3vw;
  }

  .lg\:p-4vw {
    padding: 4vw;
  }

  .lg\:p-5vw {
    padding: 5vw;
  }

  .lg\:p-6vw {
    padding: 6vw;
  }

  .lg\:p-7vw {
    padding: 7vw;
  }

  .lg\:p-8vw {
    padding: 8vw;
  }

  .lg\:p-9vw {
    padding: 9vw;
  }

  .lg\:p-10vw {
    padding: 10vw;
  }

  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .lg\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .lg\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .lg\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .lg\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .lg\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .lg\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .lg\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .lg\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .lg\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .lg\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lg\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .lg\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .lg\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .lg\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .lg\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .lg\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .lg\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .lg\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .lg\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .lg\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .lg\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .lg\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .lg\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .lg\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .lg\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .lg\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .lg\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .lg\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .lg\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .lg\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .lg\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .lg\:py-120 {
    padding-top: 30rem;
    padding-bottom: 30rem;
  }

  .lg\:px-120 {
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .lg\:py-160 {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }

  .lg\:px-160 {
    padding-left: 40rem;
    padding-right: 40rem;
  }

  .lg\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .lg\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .lg\:py-10\% {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .lg\:px-10\% {
    padding-left: 10%;
    padding-right: 10%;
  }

  .lg\:py-20\% {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .lg\:px-20\% {
    padding-left: 20%;
    padding-right: 20%;
  }

  .lg\:py-30\% {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  .lg\:px-30\% {
    padding-left: 30%;
    padding-right: 30%;
  }

  .lg\:py-40\% {
    padding-top: 40%;
    padding-bottom: 40%;
  }

  .lg\:px-40\% {
    padding-left: 40%;
    padding-right: 40%;
  }

  .lg\:py-50\% {
    padding-top: 50%;
    padding-bottom: 50%;
  }

  .lg\:px-50\% {
    padding-left: 50%;
    padding-right: 50%;
  }

  .lg\:py-60\% {
    padding-top: 60%;
    padding-bottom: 60%;
  }

  .lg\:px-60\% {
    padding-left: 60%;
    padding-right: 60%;
  }

  .lg\:py-70\% {
    padding-top: 70%;
    padding-bottom: 70%;
  }

  .lg\:px-70\% {
    padding-left: 70%;
    padding-right: 70%;
  }

  .lg\:py-80\% {
    padding-top: 80%;
    padding-bottom: 80%;
  }

  .lg\:px-80\% {
    padding-left: 80%;
    padding-right: 80%;
  }

  .lg\:py-90\% {
    padding-top: 90%;
    padding-bottom: 90%;
  }

  .lg\:px-90\% {
    padding-left: 90%;
    padding-right: 90%;
  }

  .lg\:py-1vw {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .lg\:px-1vw {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .lg\:py-2vw {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .lg\:px-2vw {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .lg\:py-3vw {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .lg\:px-3vw {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .lg\:py-4vw {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .lg\:px-4vw {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .lg\:py-5vw {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .lg\:px-5vw {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .lg\:py-6vw {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .lg\:px-6vw {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .lg\:py-7vw {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .lg\:px-7vw {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .lg\:py-8vw {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .lg\:px-8vw {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .lg\:py-9vw {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .lg\:px-9vw {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .lg\:py-10vw {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .lg\:px-10vw {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .lg\:pt-0 {
    padding-top: 0;
  }

  .lg\:pr-0 {
    padding-right: 0;
  }

  .lg\:pb-0 {
    padding-bottom: 0;
  }

  .lg\:pl-0 {
    padding-left: 0;
  }

  .lg\:pt-1 {
    padding-top: .25rem;
  }

  .lg\:pr-1 {
    padding-right: .25rem;
  }

  .lg\:pb-1 {
    padding-bottom: .25rem;
  }

  .lg\:pl-1 {
    padding-left: .25rem;
  }

  .lg\:pt-2 {
    padding-top: .5rem;
  }

  .lg\:pr-2 {
    padding-right: .5rem;
  }

  .lg\:pb-2 {
    padding-bottom: .5rem;
  }

  .lg\:pl-2 {
    padding-left: .5rem;
  }

  .lg\:pt-3 {
    padding-top: .75rem;
  }

  .lg\:pr-3 {
    padding-right: .75rem;
  }

  .lg\:pb-3 {
    padding-bottom: .75rem;
  }

  .lg\:pl-3 {
    padding-left: .75rem;
  }

  .lg\:pt-4 {
    padding-top: 1rem;
  }

  .lg\:pr-4 {
    padding-right: 1rem;
  }

  .lg\:pb-4 {
    padding-bottom: 1rem;
  }

  .lg\:pl-4 {
    padding-left: 1rem;
  }

  .lg\:pt-5 {
    padding-top: 1.25rem;
  }

  .lg\:pr-5 {
    padding-right: 1.25rem;
  }

  .lg\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .lg\:pl-5 {
    padding-left: 1.25rem;
  }

  .lg\:pt-6 {
    padding-top: 1.5rem;
  }

  .lg\:pr-6 {
    padding-right: 1.5rem;
  }

  .lg\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .lg\:pl-6 {
    padding-left: 1.5rem;
  }

  .lg\:pt-7 {
    padding-top: 1.75rem;
  }

  .lg\:pr-7 {
    padding-right: 1.75rem;
  }

  .lg\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .lg\:pl-7 {
    padding-left: 1.75rem;
  }

  .lg\:pt-8 {
    padding-top: 2rem;
  }

  .lg\:pr-8 {
    padding-right: 2rem;
  }

  .lg\:pb-8 {
    padding-bottom: 2rem;
  }

  .lg\:pl-8 {
    padding-left: 2rem;
  }

  .lg\:pt-9 {
    padding-top: 2.25rem;
  }

  .lg\:pr-9 {
    padding-right: 2.25rem;
  }

  .lg\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .lg\:pl-9 {
    padding-left: 2.25rem;
  }

  .lg\:pt-10 {
    padding-top: 2.5rem;
  }

  .lg\:pr-10 {
    padding-right: 2.5rem;
  }

  .lg\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .lg\:pl-10 {
    padding-left: 2.5rem;
  }

  .lg\:pt-12 {
    padding-top: 3rem;
  }

  .lg\:pr-12 {
    padding-right: 3rem;
  }

  .lg\:pb-12 {
    padding-bottom: 3rem;
  }

  .lg\:pl-12 {
    padding-left: 3rem;
  }

  .lg\:pt-16 {
    padding-top: 4rem;
  }

  .lg\:pr-16 {
    padding-right: 4rem;
  }

  .lg\:pb-16 {
    padding-bottom: 4rem;
  }

  .lg\:pl-16 {
    padding-left: 4rem;
  }

  .lg\:pt-20 {
    padding-top: 5rem;
  }

  .lg\:pr-20 {
    padding-right: 5rem;
  }

  .lg\:pb-20 {
    padding-bottom: 5rem;
  }

  .lg\:pl-20 {
    padding-left: 5rem;
  }

  .lg\:pt-24 {
    padding-top: 6rem;
  }

  .lg\:pr-24 {
    padding-right: 6rem;
  }

  .lg\:pb-24 {
    padding-bottom: 6rem;
  }

  .lg\:pl-24 {
    padding-left: 6rem;
  }

  .lg\:pt-28 {
    padding-top: 7rem;
  }

  .lg\:pr-28 {
    padding-right: 7rem;
  }

  .lg\:pb-28 {
    padding-bottom: 7rem;
  }

  .lg\:pl-28 {
    padding-left: 7rem;
  }

  .lg\:pt-32 {
    padding-top: 8rem;
  }

  .lg\:pr-32 {
    padding-right: 8rem;
  }

  .lg\:pb-32 {
    padding-bottom: 8rem;
  }

  .lg\:pl-32 {
    padding-left: 8rem;
  }

  .lg\:pt-36 {
    padding-top: 9rem;
  }

  .lg\:pr-36 {
    padding-right: 9rem;
  }

  .lg\:pb-36 {
    padding-bottom: 9rem;
  }

  .lg\:pl-36 {
    padding-left: 9rem;
  }

  .lg\:pt-40 {
    padding-top: 10rem;
  }

  .lg\:pr-40 {
    padding-right: 10rem;
  }

  .lg\:pb-40 {
    padding-bottom: 10rem;
  }

  .lg\:pl-40 {
    padding-left: 10rem;
  }

  .lg\:pt-44 {
    padding-top: 11rem;
  }

  .lg\:pr-44 {
    padding-right: 11rem;
  }

  .lg\:pb-44 {
    padding-bottom: 11rem;
  }

  .lg\:pl-44 {
    padding-left: 11rem;
  }

  .lg\:pt-48 {
    padding-top: 12rem;
  }

  .lg\:pr-48 {
    padding-right: 12rem;
  }

  .lg\:pb-48 {
    padding-bottom: 12rem;
  }

  .lg\:pl-48 {
    padding-left: 12rem;
  }

  .lg\:pt-56 {
    padding-top: 14rem;
  }

  .lg\:pr-56 {
    padding-right: 14rem;
  }

  .lg\:pb-56 {
    padding-bottom: 14rem;
  }

  .lg\:pl-56 {
    padding-left: 14rem;
  }

  .lg\:pt-60 {
    padding-top: 15rem;
  }

  .lg\:pr-60 {
    padding-right: 15rem;
  }

  .lg\:pb-60 {
    padding-bottom: 15rem;
  }

  .lg\:pl-60 {
    padding-left: 15rem;
  }

  .lg\:pt-64 {
    padding-top: 16rem;
  }

  .lg\:pr-64 {
    padding-right: 16rem;
  }

  .lg\:pb-64 {
    padding-bottom: 16rem;
  }

  .lg\:pl-64 {
    padding-left: 16rem;
  }

  .lg\:pt-80 {
    padding-top: 20rem;
  }

  .lg\:pr-80 {
    padding-right: 20rem;
  }

  .lg\:pb-80 {
    padding-bottom: 20rem;
  }

  .lg\:pl-80 {
    padding-left: 20rem;
  }

  .lg\:pt-96 {
    padding-top: 24rem;
  }

  .lg\:pr-96 {
    padding-right: 24rem;
  }

  .lg\:pb-96 {
    padding-bottom: 24rem;
  }

  .lg\:pl-96 {
    padding-left: 24rem;
  }

  .lg\:pt-120 {
    padding-top: 30rem;
  }

  .lg\:pr-120 {
    padding-right: 30rem;
  }

  .lg\:pb-120 {
    padding-bottom: 30rem;
  }

  .lg\:pl-120 {
    padding-left: 30rem;
  }

  .lg\:pt-160 {
    padding-top: 40rem;
  }

  .lg\:pr-160 {
    padding-right: 40rem;
  }

  .lg\:pb-160 {
    padding-bottom: 40rem;
  }

  .lg\:pl-160 {
    padding-left: 40rem;
  }

  .lg\:pt-px {
    padding-top: 1px;
  }

  .lg\:pr-px {
    padding-right: 1px;
  }

  .lg\:pb-px {
    padding-bottom: 1px;
  }

  .lg\:pl-px {
    padding-left: 1px;
  }

  .lg\:pt-10\% {
    padding-top: 10%;
  }

  .lg\:pr-10\% {
    padding-right: 10%;
  }

  .lg\:pb-10\% {
    padding-bottom: 10%;
  }

  .lg\:pl-10\% {
    padding-left: 10%;
  }

  .lg\:pt-20\% {
    padding-top: 20%;
  }

  .lg\:pr-20\% {
    padding-right: 20%;
  }

  .lg\:pb-20\% {
    padding-bottom: 20%;
  }

  .lg\:pl-20\% {
    padding-left: 20%;
  }

  .lg\:pt-30\% {
    padding-top: 30%;
  }

  .lg\:pr-30\% {
    padding-right: 30%;
  }

  .lg\:pb-30\% {
    padding-bottom: 30%;
  }

  .lg\:pl-30\% {
    padding-left: 30%;
  }

  .lg\:pt-40\% {
    padding-top: 40%;
  }

  .lg\:pr-40\% {
    padding-right: 40%;
  }

  .lg\:pb-40\% {
    padding-bottom: 40%;
  }

  .lg\:pl-40\% {
    padding-left: 40%;
  }

  .lg\:pt-50\% {
    padding-top: 50%;
  }

  .lg\:pr-50\% {
    padding-right: 50%;
  }

  .lg\:pb-50\% {
    padding-bottom: 50%;
  }

  .lg\:pl-50\% {
    padding-left: 50%;
  }

  .lg\:pt-60\% {
    padding-top: 60%;
  }

  .lg\:pr-60\% {
    padding-right: 60%;
  }

  .lg\:pb-60\% {
    padding-bottom: 60%;
  }

  .lg\:pl-60\% {
    padding-left: 60%;
  }

  .lg\:pt-70\% {
    padding-top: 70%;
  }

  .lg\:pr-70\% {
    padding-right: 70%;
  }

  .lg\:pb-70\% {
    padding-bottom: 70%;
  }

  .lg\:pl-70\% {
    padding-left: 70%;
  }

  .lg\:pt-80\% {
    padding-top: 80%;
  }

  .lg\:pr-80\% {
    padding-right: 80%;
  }

  .lg\:pb-80\% {
    padding-bottom: 80%;
  }

  .lg\:pl-80\% {
    padding-left: 80%;
  }

  .lg\:pt-90\% {
    padding-top: 90%;
  }

  .lg\:pr-90\% {
    padding-right: 90%;
  }

  .lg\:pb-90\% {
    padding-bottom: 90%;
  }

  .lg\:pl-90\% {
    padding-left: 90%;
  }

  .lg\:pt-1vw {
    padding-top: 1vw;
  }

  .lg\:pr-1vw {
    padding-right: 1vw;
  }

  .lg\:pb-1vw {
    padding-bottom: 1vw;
  }

  .lg\:pl-1vw {
    padding-left: 1vw;
  }

  .lg\:pt-2vw {
    padding-top: 2vw;
  }

  .lg\:pr-2vw {
    padding-right: 2vw;
  }

  .lg\:pb-2vw {
    padding-bottom: 2vw;
  }

  .lg\:pl-2vw {
    padding-left: 2vw;
  }

  .lg\:pt-3vw {
    padding-top: 3vw;
  }

  .lg\:pr-3vw {
    padding-right: 3vw;
  }

  .lg\:pb-3vw {
    padding-bottom: 3vw;
  }

  .lg\:pl-3vw {
    padding-left: 3vw;
  }

  .lg\:pt-4vw {
    padding-top: 4vw;
  }

  .lg\:pr-4vw {
    padding-right: 4vw;
  }

  .lg\:pb-4vw {
    padding-bottom: 4vw;
  }

  .lg\:pl-4vw {
    padding-left: 4vw;
  }

  .lg\:pt-5vw {
    padding-top: 5vw;
  }

  .lg\:pr-5vw {
    padding-right: 5vw;
  }

  .lg\:pb-5vw {
    padding-bottom: 5vw;
  }

  .lg\:pl-5vw {
    padding-left: 5vw;
  }

  .lg\:pt-6vw {
    padding-top: 6vw;
  }

  .lg\:pr-6vw {
    padding-right: 6vw;
  }

  .lg\:pb-6vw {
    padding-bottom: 6vw;
  }

  .lg\:pl-6vw {
    padding-left: 6vw;
  }

  .lg\:pt-7vw {
    padding-top: 7vw;
  }

  .lg\:pr-7vw {
    padding-right: 7vw;
  }

  .lg\:pb-7vw {
    padding-bottom: 7vw;
  }

  .lg\:pl-7vw {
    padding-left: 7vw;
  }

  .lg\:pt-8vw {
    padding-top: 8vw;
  }

  .lg\:pr-8vw {
    padding-right: 8vw;
  }

  .lg\:pb-8vw {
    padding-bottom: 8vw;
  }

  .lg\:pl-8vw {
    padding-left: 8vw;
  }

  .lg\:pt-9vw {
    padding-top: 9vw;
  }

  .lg\:pr-9vw {
    padding-right: 9vw;
  }

  .lg\:pb-9vw {
    padding-bottom: 9vw;
  }

  .lg\:pl-9vw {
    padding-left: 9vw;
  }

  .lg\:pt-10vw {
    padding-top: 10vw;
  }

  .lg\:pr-10vw {
    padding-right: 10vw;
  }

  .lg\:pb-10vw {
    padding-bottom: 10vw;
  }

  .lg\:pl-10vw {
    padding-left: 10vw;
  }

  .lg\:hover\:p-0:hover {
    padding: 0;
  }

  .lg\:hover\:p-1:hover {
    padding: .25rem;
  }

  .lg\:hover\:p-2:hover {
    padding: .5rem;
  }

  .lg\:hover\:p-3:hover {
    padding: .75rem;
  }

  .lg\:hover\:p-4:hover {
    padding: 1rem;
  }

  .lg\:hover\:p-5:hover {
    padding: 1.25rem;
  }

  .lg\:hover\:p-6:hover {
    padding: 1.5rem;
  }

  .lg\:hover\:p-7:hover {
    padding: 1.75rem;
  }

  .lg\:hover\:p-8:hover {
    padding: 2rem;
  }

  .lg\:hover\:p-9:hover {
    padding: 2.25rem;
  }

  .lg\:hover\:p-10:hover {
    padding: 2.5rem;
  }

  .lg\:hover\:p-12:hover {
    padding: 3rem;
  }

  .lg\:hover\:p-16:hover {
    padding: 4rem;
  }

  .lg\:hover\:p-20:hover {
    padding: 5rem;
  }

  .lg\:hover\:p-24:hover {
    padding: 6rem;
  }

  .lg\:hover\:p-28:hover {
    padding: 7rem;
  }

  .lg\:hover\:p-32:hover {
    padding: 8rem;
  }

  .lg\:hover\:p-36:hover {
    padding: 9rem;
  }

  .lg\:hover\:p-40:hover {
    padding: 10rem;
  }

  .lg\:hover\:p-44:hover {
    padding: 11rem;
  }

  .lg\:hover\:p-48:hover {
    padding: 12rem;
  }

  .lg\:hover\:p-56:hover {
    padding: 14rem;
  }

  .lg\:hover\:p-60:hover {
    padding: 15rem;
  }

  .lg\:hover\:p-64:hover {
    padding: 16rem;
  }

  .lg\:hover\:p-80:hover {
    padding: 20rem;
  }

  .lg\:hover\:p-96:hover {
    padding: 24rem;
  }

  .lg\:hover\:p-120:hover {
    padding: 30rem;
  }

  .lg\:hover\:p-160:hover {
    padding: 40rem;
  }

  .lg\:hover\:p-px:hover {
    padding: 1px;
  }

  .lg\:hover\:p-10\%:hover {
    padding: 10%;
  }

  .lg\:hover\:p-20\%:hover {
    padding: 20%;
  }

  .lg\:hover\:p-30\%:hover {
    padding: 30%;
  }

  .lg\:hover\:p-40\%:hover {
    padding: 40%;
  }

  .lg\:hover\:p-50\%:hover {
    padding: 50%;
  }

  .lg\:hover\:p-60\%:hover {
    padding: 60%;
  }

  .lg\:hover\:p-70\%:hover {
    padding: 70%;
  }

  .lg\:hover\:p-80\%:hover {
    padding: 80%;
  }

  .lg\:hover\:p-90\%:hover {
    padding: 90%;
  }

  .lg\:hover\:p-1vw:hover {
    padding: 1vw;
  }

  .lg\:hover\:p-2vw:hover {
    padding: 2vw;
  }

  .lg\:hover\:p-3vw:hover {
    padding: 3vw;
  }

  .lg\:hover\:p-4vw:hover {
    padding: 4vw;
  }

  .lg\:hover\:p-5vw:hover {
    padding: 5vw;
  }

  .lg\:hover\:p-6vw:hover {
    padding: 6vw;
  }

  .lg\:hover\:p-7vw:hover {
    padding: 7vw;
  }

  .lg\:hover\:p-8vw:hover {
    padding: 8vw;
  }

  .lg\:hover\:p-9vw:hover {
    padding: 9vw;
  }

  .lg\:hover\:p-10vw:hover {
    padding: 10vw;
  }

  .lg\:hover\:py-0:hover {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lg\:hover\:px-0:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .lg\:hover\:py-1:hover {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .lg\:hover\:px-1:hover {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .lg\:hover\:py-2:hover {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .lg\:hover\:px-2:hover {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .lg\:hover\:py-3:hover {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .lg\:hover\:px-3:hover {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .lg\:hover\:py-4:hover {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:hover\:px-4:hover {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:hover\:py-5:hover {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .lg\:hover\:px-5:hover {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:hover\:py-6:hover {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .lg\:hover\:px-6:hover {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:hover\:py-7:hover {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .lg\:hover\:px-7:hover {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .lg\:hover\:py-8:hover {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:hover\:px-8:hover {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:hover\:py-9:hover {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .lg\:hover\:px-9:hover {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .lg\:hover\:py-10:hover {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lg\:hover\:px-10:hover {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:hover\:py-12:hover {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:hover\:px-12:hover {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:hover\:py-16:hover {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:hover\:px-16:hover {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:hover\:py-20:hover {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:hover\:px-20:hover {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:hover\:py-24:hover {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:hover\:px-24:hover {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .lg\:hover\:py-28:hover {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lg\:hover\:px-28:hover {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .lg\:hover\:py-32:hover {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .lg\:hover\:px-32:hover {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .lg\:hover\:py-36:hover {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .lg\:hover\:px-36:hover {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .lg\:hover\:py-40:hover {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .lg\:hover\:px-40:hover {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .lg\:hover\:py-44:hover {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .lg\:hover\:px-44:hover {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .lg\:hover\:py-48:hover {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .lg\:hover\:px-48:hover {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .lg\:hover\:py-56:hover {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .lg\:hover\:px-56:hover {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .lg\:hover\:py-60:hover {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .lg\:hover\:px-60:hover {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .lg\:hover\:py-64:hover {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .lg\:hover\:px-64:hover {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .lg\:hover\:py-80:hover {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .lg\:hover\:px-80:hover {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .lg\:hover\:py-96:hover {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .lg\:hover\:px-96:hover {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .lg\:hover\:py-120:hover {
    padding-top: 30rem;
    padding-bottom: 30rem;
  }

  .lg\:hover\:px-120:hover {
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .lg\:hover\:py-160:hover {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }

  .lg\:hover\:px-160:hover {
    padding-left: 40rem;
    padding-right: 40rem;
  }

  .lg\:hover\:py-px:hover {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .lg\:hover\:px-px:hover {
    padding-left: 1px;
    padding-right: 1px;
  }

  .lg\:hover\:py-10\%:hover {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .lg\:hover\:px-10\%:hover {
    padding-left: 10%;
    padding-right: 10%;
  }

  .lg\:hover\:py-20\%:hover {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .lg\:hover\:px-20\%:hover {
    padding-left: 20%;
    padding-right: 20%;
  }

  .lg\:hover\:py-30\%:hover {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  .lg\:hover\:px-30\%:hover {
    padding-left: 30%;
    padding-right: 30%;
  }

  .lg\:hover\:py-40\%:hover {
    padding-top: 40%;
    padding-bottom: 40%;
  }

  .lg\:hover\:px-40\%:hover {
    padding-left: 40%;
    padding-right: 40%;
  }

  .lg\:hover\:py-50\%:hover {
    padding-top: 50%;
    padding-bottom: 50%;
  }

  .lg\:hover\:px-50\%:hover {
    padding-left: 50%;
    padding-right: 50%;
  }

  .lg\:hover\:py-60\%:hover {
    padding-top: 60%;
    padding-bottom: 60%;
  }

  .lg\:hover\:px-60\%:hover {
    padding-left: 60%;
    padding-right: 60%;
  }

  .lg\:hover\:py-70\%:hover {
    padding-top: 70%;
    padding-bottom: 70%;
  }

  .lg\:hover\:px-70\%:hover {
    padding-left: 70%;
    padding-right: 70%;
  }

  .lg\:hover\:py-80\%:hover {
    padding-top: 80%;
    padding-bottom: 80%;
  }

  .lg\:hover\:px-80\%:hover {
    padding-left: 80%;
    padding-right: 80%;
  }

  .lg\:hover\:py-90\%:hover {
    padding-top: 90%;
    padding-bottom: 90%;
  }

  .lg\:hover\:px-90\%:hover {
    padding-left: 90%;
    padding-right: 90%;
  }

  .lg\:hover\:py-1vw:hover {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .lg\:hover\:px-1vw:hover {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .lg\:hover\:py-2vw:hover {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .lg\:hover\:px-2vw:hover {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .lg\:hover\:py-3vw:hover {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .lg\:hover\:px-3vw:hover {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .lg\:hover\:py-4vw:hover {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .lg\:hover\:px-4vw:hover {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .lg\:hover\:py-5vw:hover {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .lg\:hover\:px-5vw:hover {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .lg\:hover\:py-6vw:hover {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .lg\:hover\:px-6vw:hover {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .lg\:hover\:py-7vw:hover {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .lg\:hover\:px-7vw:hover {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .lg\:hover\:py-8vw:hover {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .lg\:hover\:px-8vw:hover {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .lg\:hover\:py-9vw:hover {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .lg\:hover\:px-9vw:hover {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .lg\:hover\:py-10vw:hover {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .lg\:hover\:px-10vw:hover {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .lg\:hover\:pt-0:hover {
    padding-top: 0;
  }

  .lg\:hover\:pr-0:hover {
    padding-right: 0;
  }

  .lg\:hover\:pb-0:hover {
    padding-bottom: 0;
  }

  .lg\:hover\:pl-0:hover {
    padding-left: 0;
  }

  .lg\:hover\:pt-1:hover {
    padding-top: .25rem;
  }

  .lg\:hover\:pr-1:hover {
    padding-right: .25rem;
  }

  .lg\:hover\:pb-1:hover {
    padding-bottom: .25rem;
  }

  .lg\:hover\:pl-1:hover {
    padding-left: .25rem;
  }

  .lg\:hover\:pt-2:hover {
    padding-top: .5rem;
  }

  .lg\:hover\:pr-2:hover {
    padding-right: .5rem;
  }

  .lg\:hover\:pb-2:hover {
    padding-bottom: .5rem;
  }

  .lg\:hover\:pl-2:hover {
    padding-left: .5rem;
  }

  .lg\:hover\:pt-3:hover {
    padding-top: .75rem;
  }

  .lg\:hover\:pr-3:hover {
    padding-right: .75rem;
  }

  .lg\:hover\:pb-3:hover {
    padding-bottom: .75rem;
  }

  .lg\:hover\:pl-3:hover {
    padding-left: .75rem;
  }

  .lg\:hover\:pt-4:hover {
    padding-top: 1rem;
  }

  .lg\:hover\:pr-4:hover {
    padding-right: 1rem;
  }

  .lg\:hover\:pb-4:hover {
    padding-bottom: 1rem;
  }

  .lg\:hover\:pl-4:hover {
    padding-left: 1rem;
  }

  .lg\:hover\:pt-5:hover {
    padding-top: 1.25rem;
  }

  .lg\:hover\:pr-5:hover {
    padding-right: 1.25rem;
  }

  .lg\:hover\:pb-5:hover {
    padding-bottom: 1.25rem;
  }

  .lg\:hover\:pl-5:hover {
    padding-left: 1.25rem;
  }

  .lg\:hover\:pt-6:hover {
    padding-top: 1.5rem;
  }

  .lg\:hover\:pr-6:hover {
    padding-right: 1.5rem;
  }

  .lg\:hover\:pb-6:hover {
    padding-bottom: 1.5rem;
  }

  .lg\:hover\:pl-6:hover {
    padding-left: 1.5rem;
  }

  .lg\:hover\:pt-7:hover {
    padding-top: 1.75rem;
  }

  .lg\:hover\:pr-7:hover {
    padding-right: 1.75rem;
  }

  .lg\:hover\:pb-7:hover {
    padding-bottom: 1.75rem;
  }

  .lg\:hover\:pl-7:hover {
    padding-left: 1.75rem;
  }

  .lg\:hover\:pt-8:hover {
    padding-top: 2rem;
  }

  .lg\:hover\:pr-8:hover {
    padding-right: 2rem;
  }

  .lg\:hover\:pb-8:hover {
    padding-bottom: 2rem;
  }

  .lg\:hover\:pl-8:hover {
    padding-left: 2rem;
  }

  .lg\:hover\:pt-9:hover {
    padding-top: 2.25rem;
  }

  .lg\:hover\:pr-9:hover {
    padding-right: 2.25rem;
  }

  .lg\:hover\:pb-9:hover {
    padding-bottom: 2.25rem;
  }

  .lg\:hover\:pl-9:hover {
    padding-left: 2.25rem;
  }

  .lg\:hover\:pt-10:hover {
    padding-top: 2.5rem;
  }

  .lg\:hover\:pr-10:hover {
    padding-right: 2.5rem;
  }

  .lg\:hover\:pb-10:hover {
    padding-bottom: 2.5rem;
  }

  .lg\:hover\:pl-10:hover {
    padding-left: 2.5rem;
  }

  .lg\:hover\:pt-12:hover {
    padding-top: 3rem;
  }

  .lg\:hover\:pr-12:hover {
    padding-right: 3rem;
  }

  .lg\:hover\:pb-12:hover {
    padding-bottom: 3rem;
  }

  .lg\:hover\:pl-12:hover {
    padding-left: 3rem;
  }

  .lg\:hover\:pt-16:hover {
    padding-top: 4rem;
  }

  .lg\:hover\:pr-16:hover {
    padding-right: 4rem;
  }

  .lg\:hover\:pb-16:hover {
    padding-bottom: 4rem;
  }

  .lg\:hover\:pl-16:hover {
    padding-left: 4rem;
  }

  .lg\:hover\:pt-20:hover {
    padding-top: 5rem;
  }

  .lg\:hover\:pr-20:hover {
    padding-right: 5rem;
  }

  .lg\:hover\:pb-20:hover {
    padding-bottom: 5rem;
  }

  .lg\:hover\:pl-20:hover {
    padding-left: 5rem;
  }

  .lg\:hover\:pt-24:hover {
    padding-top: 6rem;
  }

  .lg\:hover\:pr-24:hover {
    padding-right: 6rem;
  }

  .lg\:hover\:pb-24:hover {
    padding-bottom: 6rem;
  }

  .lg\:hover\:pl-24:hover {
    padding-left: 6rem;
  }

  .lg\:hover\:pt-28:hover {
    padding-top: 7rem;
  }

  .lg\:hover\:pr-28:hover {
    padding-right: 7rem;
  }

  .lg\:hover\:pb-28:hover {
    padding-bottom: 7rem;
  }

  .lg\:hover\:pl-28:hover {
    padding-left: 7rem;
  }

  .lg\:hover\:pt-32:hover {
    padding-top: 8rem;
  }

  .lg\:hover\:pr-32:hover {
    padding-right: 8rem;
  }

  .lg\:hover\:pb-32:hover {
    padding-bottom: 8rem;
  }

  .lg\:hover\:pl-32:hover {
    padding-left: 8rem;
  }

  .lg\:hover\:pt-36:hover {
    padding-top: 9rem;
  }

  .lg\:hover\:pr-36:hover {
    padding-right: 9rem;
  }

  .lg\:hover\:pb-36:hover {
    padding-bottom: 9rem;
  }

  .lg\:hover\:pl-36:hover {
    padding-left: 9rem;
  }

  .lg\:hover\:pt-40:hover {
    padding-top: 10rem;
  }

  .lg\:hover\:pr-40:hover {
    padding-right: 10rem;
  }

  .lg\:hover\:pb-40:hover {
    padding-bottom: 10rem;
  }

  .lg\:hover\:pl-40:hover {
    padding-left: 10rem;
  }

  .lg\:hover\:pt-44:hover {
    padding-top: 11rem;
  }

  .lg\:hover\:pr-44:hover {
    padding-right: 11rem;
  }

  .lg\:hover\:pb-44:hover {
    padding-bottom: 11rem;
  }

  .lg\:hover\:pl-44:hover {
    padding-left: 11rem;
  }

  .lg\:hover\:pt-48:hover {
    padding-top: 12rem;
  }

  .lg\:hover\:pr-48:hover {
    padding-right: 12rem;
  }

  .lg\:hover\:pb-48:hover {
    padding-bottom: 12rem;
  }

  .lg\:hover\:pl-48:hover {
    padding-left: 12rem;
  }

  .lg\:hover\:pt-56:hover {
    padding-top: 14rem;
  }

  .lg\:hover\:pr-56:hover {
    padding-right: 14rem;
  }

  .lg\:hover\:pb-56:hover {
    padding-bottom: 14rem;
  }

  .lg\:hover\:pl-56:hover {
    padding-left: 14rem;
  }

  .lg\:hover\:pt-60:hover {
    padding-top: 15rem;
  }

  .lg\:hover\:pr-60:hover {
    padding-right: 15rem;
  }

  .lg\:hover\:pb-60:hover {
    padding-bottom: 15rem;
  }

  .lg\:hover\:pl-60:hover {
    padding-left: 15rem;
  }

  .lg\:hover\:pt-64:hover {
    padding-top: 16rem;
  }

  .lg\:hover\:pr-64:hover {
    padding-right: 16rem;
  }

  .lg\:hover\:pb-64:hover {
    padding-bottom: 16rem;
  }

  .lg\:hover\:pl-64:hover {
    padding-left: 16rem;
  }

  .lg\:hover\:pt-80:hover {
    padding-top: 20rem;
  }

  .lg\:hover\:pr-80:hover {
    padding-right: 20rem;
  }

  .lg\:hover\:pb-80:hover {
    padding-bottom: 20rem;
  }

  .lg\:hover\:pl-80:hover {
    padding-left: 20rem;
  }

  .lg\:hover\:pt-96:hover {
    padding-top: 24rem;
  }

  .lg\:hover\:pr-96:hover {
    padding-right: 24rem;
  }

  .lg\:hover\:pb-96:hover {
    padding-bottom: 24rem;
  }

  .lg\:hover\:pl-96:hover {
    padding-left: 24rem;
  }

  .lg\:hover\:pt-120:hover {
    padding-top: 30rem;
  }

  .lg\:hover\:pr-120:hover {
    padding-right: 30rem;
  }

  .lg\:hover\:pb-120:hover {
    padding-bottom: 30rem;
  }

  .lg\:hover\:pl-120:hover {
    padding-left: 30rem;
  }

  .lg\:hover\:pt-160:hover {
    padding-top: 40rem;
  }

  .lg\:hover\:pr-160:hover {
    padding-right: 40rem;
  }

  .lg\:hover\:pb-160:hover {
    padding-bottom: 40rem;
  }

  .lg\:hover\:pl-160:hover {
    padding-left: 40rem;
  }

  .lg\:hover\:pt-px:hover {
    padding-top: 1px;
  }

  .lg\:hover\:pr-px:hover {
    padding-right: 1px;
  }

  .lg\:hover\:pb-px:hover {
    padding-bottom: 1px;
  }

  .lg\:hover\:pl-px:hover {
    padding-left: 1px;
  }

  .lg\:hover\:pt-10\%:hover {
    padding-top: 10%;
  }

  .lg\:hover\:pr-10\%:hover {
    padding-right: 10%;
  }

  .lg\:hover\:pb-10\%:hover {
    padding-bottom: 10%;
  }

  .lg\:hover\:pl-10\%:hover {
    padding-left: 10%;
  }

  .lg\:hover\:pt-20\%:hover {
    padding-top: 20%;
  }

  .lg\:hover\:pr-20\%:hover {
    padding-right: 20%;
  }

  .lg\:hover\:pb-20\%:hover {
    padding-bottom: 20%;
  }

  .lg\:hover\:pl-20\%:hover {
    padding-left: 20%;
  }

  .lg\:hover\:pt-30\%:hover {
    padding-top: 30%;
  }

  .lg\:hover\:pr-30\%:hover {
    padding-right: 30%;
  }

  .lg\:hover\:pb-30\%:hover {
    padding-bottom: 30%;
  }

  .lg\:hover\:pl-30\%:hover {
    padding-left: 30%;
  }

  .lg\:hover\:pt-40\%:hover {
    padding-top: 40%;
  }

  .lg\:hover\:pr-40\%:hover {
    padding-right: 40%;
  }

  .lg\:hover\:pb-40\%:hover {
    padding-bottom: 40%;
  }

  .lg\:hover\:pl-40\%:hover {
    padding-left: 40%;
  }

  .lg\:hover\:pt-50\%:hover {
    padding-top: 50%;
  }

  .lg\:hover\:pr-50\%:hover {
    padding-right: 50%;
  }

  .lg\:hover\:pb-50\%:hover {
    padding-bottom: 50%;
  }

  .lg\:hover\:pl-50\%:hover {
    padding-left: 50%;
  }

  .lg\:hover\:pt-60\%:hover {
    padding-top: 60%;
  }

  .lg\:hover\:pr-60\%:hover {
    padding-right: 60%;
  }

  .lg\:hover\:pb-60\%:hover {
    padding-bottom: 60%;
  }

  .lg\:hover\:pl-60\%:hover {
    padding-left: 60%;
  }

  .lg\:hover\:pt-70\%:hover {
    padding-top: 70%;
  }

  .lg\:hover\:pr-70\%:hover {
    padding-right: 70%;
  }

  .lg\:hover\:pb-70\%:hover {
    padding-bottom: 70%;
  }

  .lg\:hover\:pl-70\%:hover {
    padding-left: 70%;
  }

  .lg\:hover\:pt-80\%:hover {
    padding-top: 80%;
  }

  .lg\:hover\:pr-80\%:hover {
    padding-right: 80%;
  }

  .lg\:hover\:pb-80\%:hover {
    padding-bottom: 80%;
  }

  .lg\:hover\:pl-80\%:hover {
    padding-left: 80%;
  }

  .lg\:hover\:pt-90\%:hover {
    padding-top: 90%;
  }

  .lg\:hover\:pr-90\%:hover {
    padding-right: 90%;
  }

  .lg\:hover\:pb-90\%:hover {
    padding-bottom: 90%;
  }

  .lg\:hover\:pl-90\%:hover {
    padding-left: 90%;
  }

  .lg\:hover\:pt-1vw:hover {
    padding-top: 1vw;
  }

  .lg\:hover\:pr-1vw:hover {
    padding-right: 1vw;
  }

  .lg\:hover\:pb-1vw:hover {
    padding-bottom: 1vw;
  }

  .lg\:hover\:pl-1vw:hover {
    padding-left: 1vw;
  }

  .lg\:hover\:pt-2vw:hover {
    padding-top: 2vw;
  }

  .lg\:hover\:pr-2vw:hover {
    padding-right: 2vw;
  }

  .lg\:hover\:pb-2vw:hover {
    padding-bottom: 2vw;
  }

  .lg\:hover\:pl-2vw:hover {
    padding-left: 2vw;
  }

  .lg\:hover\:pt-3vw:hover {
    padding-top: 3vw;
  }

  .lg\:hover\:pr-3vw:hover {
    padding-right: 3vw;
  }

  .lg\:hover\:pb-3vw:hover {
    padding-bottom: 3vw;
  }

  .lg\:hover\:pl-3vw:hover {
    padding-left: 3vw;
  }

  .lg\:hover\:pt-4vw:hover {
    padding-top: 4vw;
  }

  .lg\:hover\:pr-4vw:hover {
    padding-right: 4vw;
  }

  .lg\:hover\:pb-4vw:hover {
    padding-bottom: 4vw;
  }

  .lg\:hover\:pl-4vw:hover {
    padding-left: 4vw;
  }

  .lg\:hover\:pt-5vw:hover {
    padding-top: 5vw;
  }

  .lg\:hover\:pr-5vw:hover {
    padding-right: 5vw;
  }

  .lg\:hover\:pb-5vw:hover {
    padding-bottom: 5vw;
  }

  .lg\:hover\:pl-5vw:hover {
    padding-left: 5vw;
  }

  .lg\:hover\:pt-6vw:hover {
    padding-top: 6vw;
  }

  .lg\:hover\:pr-6vw:hover {
    padding-right: 6vw;
  }

  .lg\:hover\:pb-6vw:hover {
    padding-bottom: 6vw;
  }

  .lg\:hover\:pl-6vw:hover {
    padding-left: 6vw;
  }

  .lg\:hover\:pt-7vw:hover {
    padding-top: 7vw;
  }

  .lg\:hover\:pr-7vw:hover {
    padding-right: 7vw;
  }

  .lg\:hover\:pb-7vw:hover {
    padding-bottom: 7vw;
  }

  .lg\:hover\:pl-7vw:hover {
    padding-left: 7vw;
  }

  .lg\:hover\:pt-8vw:hover {
    padding-top: 8vw;
  }

  .lg\:hover\:pr-8vw:hover {
    padding-right: 8vw;
  }

  .lg\:hover\:pb-8vw:hover {
    padding-bottom: 8vw;
  }

  .lg\:hover\:pl-8vw:hover {
    padding-left: 8vw;
  }

  .lg\:hover\:pt-9vw:hover {
    padding-top: 9vw;
  }

  .lg\:hover\:pr-9vw:hover {
    padding-right: 9vw;
  }

  .lg\:hover\:pb-9vw:hover {
    padding-bottom: 9vw;
  }

  .lg\:hover\:pl-9vw:hover {
    padding-left: 9vw;
  }

  .lg\:hover\:pt-10vw:hover {
    padding-top: 10vw;
  }

  .lg\:hover\:pr-10vw:hover {
    padding-right: 10vw;
  }

  .lg\:hover\:pb-10vw:hover {
    padding-bottom: 10vw;
  }

  .lg\:hover\:pl-10vw:hover {
    padding-left: 10vw;
  }

  .lg\:pointer-events-none {
    pointer-events: none;
  }

  .lg\:pointer-events-auto {
    pointer-events: auto;
  }

  .lg\:static {
    position: static;
  }

  .lg\:fixed {
    position: fixed;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:relative {
    position: relative;
  }

  .lg\:sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .lg\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .lg\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .lg\:pin-y {
    top: 0;
    bottom: 0;
  }

  .lg\:pin-x {
    right: 0;
    left: 0;
  }

  .lg\:pin-t {
    top: 0;
  }

  .lg\:pin-r {
    right: 0;
  }

  .lg\:pin-b {
    bottom: 0;
  }

  .lg\:pin-l {
    left: 0;
  }

  .lg\:hover\:static:hover {
    position: static;
  }

  .lg\:hover\:fixed:hover {
    position: fixed;
  }

  .lg\:hover\:absolute:hover {
    position: absolute;
  }

  .lg\:hover\:relative:hover {
    position: relative;
  }

  .lg\:hover\:sticky:hover {
    position: -webkit-sticky;
    position: sticky;
  }

  .lg\:hover\:pin-none:hover {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .lg\:hover\:pin:hover {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .lg\:hover\:pin-y:hover {
    top: 0;
    bottom: 0;
  }

  .lg\:hover\:pin-x:hover {
    right: 0;
    left: 0;
  }

  .lg\:hover\:pin-t:hover {
    top: 0;
  }

  .lg\:hover\:pin-r:hover {
    right: 0;
  }

  .lg\:hover\:pin-b:hover {
    bottom: 0;
  }

  .lg\:hover\:pin-l:hover {
    left: 0;
  }

  .lg\:resize-none {
    resize: none;
  }

  .lg\:resize-y {
    resize: vertical;
  }

  .lg\:resize-x {
    resize: horizontal;
  }

  .lg\:resize {
    resize: both;
  }

  .lg\:shadow {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  }

  .lg\:shadow-md {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  }

  .lg\:shadow-lg {
    box-shadow: 0 0 100px rgba(0, 0, 0, .15);
  }

  .lg\:shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
  }

  .lg\:shadow-none {
    box-shadow: none;
  }

  .lg\:hover\:shadow:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  }

  .lg\:hover\:shadow-md:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  }

  .lg\:hover\:shadow-lg:hover {
    box-shadow: 0 0 100px rgba(0, 0, 0, .15);
  }

  .lg\:hover\:shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
  }

  .lg\:hover\:shadow-none:hover {
    box-shadow: none;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-center {
    text-align: center;
  }

  .lg\:text-right {
    text-align: right;
  }

  .lg\:text-justify {
    text-align: justify;
  }

  .lg\:text-transparent {
    color: transparent;
  }

  .lg\:text-currentColor {
    color: currentColor;
  }

  .lg\:text-black {
    color: #222;
  }

  .lg\:text-black-10 {
    color: rgba(0, 0, 0, .1);
  }

  .lg\:text-black-20 {
    color: rgba(0, 0, 0, .2);
  }

  .lg\:text-black-30 {
    color: rgba(0, 0, 0, .3);
  }

  .lg\:text-black-40 {
    color: rgba(0, 0, 0, .4);
  }

  .lg\:text-black-50 {
    color: rgba(0, 0, 0, .5);
  }

  .lg\:text-black-60 {
    color: rgba(0, 0, 0, .6);
  }

  .lg\:text-black-70 {
    color: rgba(0, 0, 0, .7);
  }

  .lg\:text-black-80 {
    color: rgba(0, 0, 0, .8);
  }

  .lg\:text-black-90 {
    color: rgba(0, 0, 0, .9);
  }

  .lg\:text-black-1 {
    color: #313131;
  }

  .lg\:text-white {
    color: #fff;
  }

  .lg\:text-blue {
    color: #0277bd;
  }

  .lg\:text-dark-blue {
    color: #0277bd;
  }

  .lg\:text-blue-1 {
    color: #17214a;
  }

  .lg\:text-light-blue {
    color: #0277bd;
  }

  .lg\:text-red {
    color: #cb001c;
  }

  .lg\:text-green {
    color: #00bea0;
  }

  .lg\:text-purple {
    color: #5a80d1;
  }

  .lg\:text-orange {
    color: #ff9a0a;
  }

  .lg\:text-grey {
    color: #929a9d;
  }

  .lg\:text-grey-light {
    color: #e2e2e2;
  }

  .lg\:text-grey-1 {
    color: #f2f3f3;
  }

  .lg\:text-grey-2 {
    color: #c2c6c8;
  }

  .lg\:text-grey-3 {
    color: #6b7375;
  }

  .lg\:text-grey-4 {
    color: #465052;
  }

  .lg\:text-grey-5 {
    color: #828688;
  }

  .lg\:text-sd-red {
    color: #ed1c24;
  }

  .lg\:text-light-blue-1 {
    color: #21b8de;
  }

  .lg\:text-dark-blue-1 {
    color: #0277bd;
  }

  .lg\:text-dark-orange {
    color: #df8403;
  }

  .lg\:text-g-blue {
    color: #17214a;
  }

  .lg\:text-g-blue-1 {
    color: #556d88;
  }

  .lg\:text-g-blue-2 {
    color: #3c4c65;
  }

  .lg\:text-g-blue-3 {
    color: #222e4d;
  }

  .lg\:hover\:text-transparent:hover {
    color: transparent;
  }

  .lg\:hover\:text-currentColor:hover {
    color: currentColor;
  }

  .lg\:hover\:text-black:hover {
    color: #222;
  }

  .lg\:hover\:text-black-10:hover {
    color: rgba(0, 0, 0, .1);
  }

  .lg\:hover\:text-black-20:hover {
    color: rgba(0, 0, 0, .2);
  }

  .lg\:hover\:text-black-30:hover {
    color: rgba(0, 0, 0, .3);
  }

  .lg\:hover\:text-black-40:hover {
    color: rgba(0, 0, 0, .4);
  }

  .lg\:hover\:text-black-50:hover {
    color: rgba(0, 0, 0, .5);
  }

  .lg\:hover\:text-black-60:hover {
    color: rgba(0, 0, 0, .6);
  }

  .lg\:hover\:text-black-70:hover {
    color: rgba(0, 0, 0, .7);
  }

  .lg\:hover\:text-black-80:hover {
    color: rgba(0, 0, 0, .8);
  }

  .lg\:hover\:text-black-90:hover {
    color: rgba(0, 0, 0, .9);
  }

  .lg\:hover\:text-black-1:hover {
    color: #313131;
  }

  .lg\:hover\:text-white:hover {
    color: #fff;
  }

  .lg\:hover\:text-blue:hover {
    color: #0277bd;
  }

  .lg\:hover\:text-dark-blue:hover {
    color: #0277bd;
  }

  .lg\:hover\:text-blue-1:hover {
    color: #17214a;
  }

  .lg\:hover\:text-light-blue:hover {
    color: #0277bd;
  }

  .lg\:hover\:text-red:hover {
    color: #cb001c;
  }

  .lg\:hover\:text-green:hover {
    color: #00bea0;
  }

  .lg\:hover\:text-purple:hover {
    color: #5a80d1;
  }

  .lg\:hover\:text-orange:hover {
    color: #ff9a0a;
  }

  .lg\:hover\:text-grey:hover {
    color: #929a9d;
  }

  .lg\:hover\:text-grey-light:hover {
    color: #e2e2e2;
  }

  .lg\:hover\:text-grey-1:hover {
    color: #f2f3f3;
  }

  .lg\:hover\:text-grey-2:hover {
    color: #c2c6c8;
  }

  .lg\:hover\:text-grey-3:hover {
    color: #6b7375;
  }

  .lg\:hover\:text-grey-4:hover {
    color: #465052;
  }

  .lg\:hover\:text-grey-5:hover {
    color: #828688;
  }

  .lg\:hover\:text-sd-red:hover {
    color: #ed1c24;
  }

  .lg\:hover\:text-light-blue-1:hover {
    color: #21b8de;
  }

  .lg\:hover\:text-dark-blue-1:hover {
    color: #0277bd;
  }

  .lg\:hover\:text-dark-orange:hover {
    color: #df8403;
  }

  .lg\:hover\:text-g-blue:hover {
    color: #17214a;
  }

  .lg\:hover\:text-g-blue-1:hover {
    color: #556d88;
  }

  .lg\:hover\:text-g-blue-2:hover {
    color: #3c4c65;
  }

  .lg\:hover\:text-g-blue-3:hover {
    color: #222e4d;
  }

  .lg\:text-xxxs {
    font-size: .625rem;;
  }

  .lg\:text-xxs {
    font-size: .75rem;
  }

  .lg\:text-xs {
    font-size: .875rem;
  }

  .lg\:text-sm {
    font-size: 1rem;
  }

  .lg\:text-base {
    font-size: 1.125rem;
  }

  .lg\:text-lg {
    font-size: 1.25rem;
  }

  .lg\:text-2lg {
    font-size: 1.25rem;
  }

  .lg\:text-xl {
    font-size: 1.5rem;
  }

  .lg\:text-1-5xl {
    font-size: 1.625rem;
  }

  .lg\:text-2xl {
    font-size: 1.75rem;
  }

  .lg\:text-2-5xl {
    font-size: 1.875rem;
  }

  .lg\:text-3xl {
    font-size: 2rem;
  }

  .lg\:text-4xl {
    font-size: 2.125rem;
  }

  .lg\:text-5xl {
    font-size: 2.25rem;
  }

  .lg\:text-6xl {
    font-size: 3.375rem;
  }

  .lg\:text-7xl {
    font-size: 4.125rem;
  }

  .lg\:italic {
    font-style: italic;
  }

  .lg\:roman {
    font-style: normal;
  }

  .lg\:uppercase {
    text-transform: uppercase;
  }

  .lg\:lowercase {
    text-transform: lowercase;
  }

  .lg\:capitalize {
    text-transform: capitalize;
  }

  .lg\:normal-case {
    text-transform: none;
  }

  .lg\:underline {
    text-decoration: underline;
  }

  .lg\:line-through {
    text-decoration: line-through;
  }

  .lg\:no-underline {
    text-decoration: none;
  }

  .lg\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .lg\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .lg\:hover\:italic:hover {
    font-style: italic;
  }

  .lg\:hover\:roman:hover {
    font-style: normal;
  }

  .lg\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .lg\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .lg\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .lg\:hover\:normal-case:hover {
    text-transform: none;
  }

  .lg\:hover\:underline:hover {
    text-decoration: underline;
  }

  .lg\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .lg\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .lg\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .lg\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .lg\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .lg\:tracking-normal {
    letter-spacing: 0;
  }

  .lg\:tracking-wide {
    letter-spacing: .05em;
  }

  .lg\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .lg\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .lg\:align-baseline {
    vertical-align: baseline;
  }

  .lg\:align-top {
    vertical-align: top;
  }

  .lg\:align-middle {
    vertical-align: middle;
  }

  .lg\:align-bottom {
    vertical-align: bottom;
  }

  .lg\:align-text-top {
    vertical-align: text-top;
  }

  .lg\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .lg\:visible {
    visibility: visible;
  }

  .lg\:invisible {
    visibility: hidden;
  }

  .lg\:whitespace-normal {
    white-space: normal;
  }

  .lg\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .lg\:whitespace-pre {
    white-space: pre;
  }

  .lg\:whitespace-pre-line {
    white-space: pre-line;
  }

  .lg\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .lg\:break-words {
    word-wrap: break-word;
  }

  .lg\:break-normal {
    word-wrap: normal;
  }

  .lg\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lg\:w-0 {
    width: 0;
  }

  .lg\:w-1 {
    width: .25rem;
  }

  .lg\:w-2 {
    width: .5rem;
  }

  .lg\:w-3 {
    width: .75rem;
  }

  .lg\:w-4 {
    width: 1rem;
  }

  .lg\:w-5 {
    width: 1.25rem;
  }

  .lg\:w-6 {
    width: 1.5rem;
  }

  .lg\:w-7 {
    width: 1.75rem;
  }

  .lg\:w-8 {
    width: 2rem;
  }

  .lg\:w-9 {
    width: 2.25rem;
  }

  .lg\:w-10 {
    width: 2.5rem;
  }

  .lg\:w-12 {
    width: 3rem;
  }

  .lg\:w-14 {
    width: 3.5rem;
  }

  .lg\:w-16 {
    width: 4rem;
  }

  .lg\:w-24 {
    width: 6rem;
  }

  .lg\:w-32 {
    width: 8rem;
  }

  .lg\:w-40 {
    width: 10rem;
  }

  .lg\:w-48 {
    width: 12rem;
  }

  .lg\:w-64 {
    width: 16rem;
  }

  .lg\:w-70 {
    width: 18rem;
  }

  .lg\:w-80 {
    width: 20rem;
  }

  .lg\:w-96 {
    width: 24rem;
  }

  .lg\:w-112 {
    width: 28rem;
  }

  .lg\:w-128 {
    width: 32rem;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-px {
    width: 1px;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:w-half {
    width: 50%;
  }

  .lg\:w-100px {
    width: 100px;
  }

  .lg\:w-200px {
    width: 200px;
  }

  .lg\:w-300px {
    width: 300px;
  }

  .lg\:w-400px {
    width: 400px;
  }

  .lg\:w-500px {
    width: 500px;
  }

  .lg\:w-576px {
    width: 576px;
  }

  .lg\:w-600px {
    width: 600px;
  }

  .lg\:w-700px {
    width: 700px;
  }

  .lg\:w-768px {
    width: 768px;
  }

  .lg\:w-800px {
    width: 800px;
  }

  .lg\:w-900px {
    width: 900px;
  }

  .lg\:w-992px {
    width: 992px;
  }

  .lg\:w-1000px {
    width: 1000px;
  }

  .lg\:w-1140px {
    width: 1140px;
  }

  .lg\:w-1200px {
    width: 1200px;
  }

  .lg\:w-1460px {
    width: 1460px;
  }

  .lg\:w-1600px {
    width: 1600px;
  }

  .lg\:w-screen {
    width: 100vw;
  }

  .lg\:z-0 {
    z-index: 0;
  }

  .lg\:z-1 {
    z-index: 1;
  }

  .lg\:z-4 {
    z-index: 4;
  }

  .lg\:z-10 {
    z-index: 10;
  }

  .lg\:z-20 {
    z-index: 20;
  }

  .lg\:z-30 {
    z-index: 30;
  }

  .lg\:z-40 {
    z-index: 40;
  }

  .lg\:z-50 {
    z-index: 50;
  }

  .lg\:z-60 {
    z-index: 60;
  }

  .lg\:z-70 {
    z-index: 70;
  }

  .lg\:z-80 {
    z-index: 80;
  }

  .lg\:z-90 {
    z-index: 90;
  }

  .lg\:z-100 {
    z-index: 100;
  }

  .lg\:z-auto {
    z-index: auto;
  }

  .lg\:hover\:z-0:hover {
    z-index: 0;
  }

  .lg\:hover\:z-1:hover {
    z-index: 1;
  }

  .lg\:hover\:z-4:hover {
    z-index: 4;
  }

  .lg\:hover\:z-10:hover {
    z-index: 10;
  }

  .lg\:hover\:z-20:hover {
    z-index: 20;
  }

  .lg\:hover\:z-30:hover {
    z-index: 30;
  }

  .lg\:hover\:z-40:hover {
    z-index: 40;
  }

  .lg\:hover\:z-50:hover {
    z-index: 50;
  }

  .lg\:hover\:z-60:hover {
    z-index: 60;
  }

  .lg\:hover\:z-70:hover {
    z-index: 70;
  }

  .lg\:hover\:z-80:hover {
    z-index: 80;
  }

  .lg\:hover\:z-90:hover {
    z-index: 90;
  }

  .lg\:hover\:z-100:hover {
    z-index: 100;
  }

  .lg\:hover\:z-auto:hover {
    z-index: auto;
  }

  .lg\:pin-t-0 {
    top: 0;
  }

  .lg\:pin-r-0 {
    right: 0;
  }

  .lg\:pin-b-0 {
    bottom: 0;
  }

  .lg\:pin-l-0 {
    left: 0;
  }

  .lg\:pin-t-1 {
    top: 1px;
  }

  .lg\:pin-r-1 {
    right: 1px;
  }

  .lg\:pin-b-1 {
    bottom: 1px;
  }

  .lg\:pin-l-1 {
    left: 1px;
  }

  .lg\:pin-t-3 {
    top: 3px;
  }

  .lg\:pin-r-3 {
    right: 3px;
  }

  .lg\:pin-b-3 {
    bottom: 3px;
  }

  .lg\:pin-l-3 {
    left: 3px;
  }

  .lg\:pin-t-5 {
    top: 5px;
  }

  .lg\:pin-r-5 {
    right: 5px;
  }

  .lg\:pin-b-5 {
    bottom: 5px;
  }

  .lg\:pin-l-5 {
    left: 5px;
  }

  .lg\:pin-t-6 {
    top: 6px;
  }

  .lg\:pin-r-6 {
    right: 6px;
  }

  .lg\:pin-b-6 {
    bottom: 6px;
  }

  .lg\:pin-l-6 {
    left: 6px;
  }

  .lg\:pin-t-10 {
    top: 10px;
  }

  .lg\:pin-r-10 {
    right: 10px;
  }

  .lg\:pin-b-10 {
    bottom: 10px;
  }

  .lg\:pin-l-10 {
    left: 10px;
  }

  .lg\:pin-t-11 {
    top: 11px;
  }

  .lg\:pin-r-11 {
    right: 11px;
  }

  .lg\:pin-b-11 {
    bottom: 11px;
  }

  .lg\:pin-l-11 {
    left: 11px;
  }

  .lg\:pin-t-12 {
    top: 3rem;
  }

  .lg\:pin-r-12 {
    right: 3rem;
  }

  .lg\:pin-b-12 {
    bottom: 3rem;
  }

  .lg\:pin-l-12 {
    left: 3rem;
  }

  .lg\:pin-t-15 {
    top: 15px;
  }

  .lg\:pin-r-15 {
    right: 15px;
  }

  .lg\:pin-b-15 {
    bottom: 15px;
  }

  .lg\:pin-l-15 {
    left: 15px;
  }

  .lg\:pin-t-16 {
    top: 4rem;
  }

  .lg\:pin-r-16 {
    right: 4rem;
  }

  .lg\:pin-b-16 {
    bottom: 4rem;
  }

  .lg\:pin-l-16 {
    left: 4rem;
  }

  .lg\:pin-t-20 {
    top: 20px;
  }

  .lg\:pin-r-20 {
    right: 20px;
  }

  .lg\:pin-b-20 {
    bottom: 20px;
  }

  .lg\:pin-l-20 {
    left: 20px;
  }

  .lg\:pin-t-25 {
    top: 25px;
  }

  .lg\:pin-r-25 {
    right: 25px;
  }

  .lg\:pin-b-25 {
    bottom: 25px;
  }

  .lg\:pin-l-25 {
    left: 25px;
  }

  .lg\:pin-t-50 {
    top: 50px;
  }

  .lg\:pin-r-50 {
    right: 50px;
  }

  .lg\:pin-b-50 {
    bottom: 50px;
  }

  .lg\:pin-l-50 {
    left: 50px;
  }

  .lg\:pin-t-64 {
    top: 64px;
  }

  .lg\:pin-r-64 {
    right: 64px;
  }

  .lg\:pin-b-64 {
    bottom: 64px;
  }

  .lg\:pin-l-64 {
    left: 64px;
  }

  .lg\:pin-t-75 {
    top: 75px;
  }

  .lg\:pin-r-75 {
    right: 75px;
  }

  .lg\:pin-b-75 {
    bottom: 75px;
  }

  .lg\:pin-l-75 {
    left: 75px;
  }

  .lg\:pin-t-80 {
    top: 80px;
  }

  .lg\:pin-r-80 {
    right: 80px;
  }

  .lg\:pin-b-80 {
    bottom: 80px;
  }

  .lg\:pin-l-80 {
    left: 80px;
  }

  .lg\:pin-t-100 {
    top: 100px;
  }

  .lg\:pin-r-100 {
    right: 100px;
  }

  .lg\:pin-b-100 {
    bottom: 100px;
  }

  .lg\:pin-l-100 {
    left: 100px;
  }

  .lg\:pin-t-150 {
    top: 150px;
  }

  .lg\:pin-r-150 {
    right: 150px;
  }

  .lg\:pin-b-150 {
    bottom: 150px;
  }

  .lg\:pin-l-150 {
    left: 150px;
  }

  .lg\:pin-t-200 {
    top: 150px;
  }

  .lg\:pin-r-200 {
    right: 150px;
  }

  .lg\:pin-b-200 {
    bottom: 150px;
  }

  .lg\:pin-l-200 {
    left: 150px;
  }

  .lg\:pin-t-250 {
    top: 250px;
  }

  .lg\:pin-r-250 {
    right: 250px;
  }

  .lg\:pin-b-250 {
    bottom: 250px;
  }

  .lg\:pin-l-250 {
    left: 250px;
  }

  .lg\:pin-t-300 {
    top: 300px;
  }

  .lg\:pin-r-300 {
    right: 300px;
  }

  .lg\:pin-b-300 {
    bottom: 300px;
  }

  .lg\:pin-l-300 {
    left: 300px;
  }

  .lg\:pin-t-400 {
    top: 400px;
  }

  .lg\:pin-r-400 {
    right: 400px;
  }

  .lg\:pin-b-400 {
    bottom: 400px;
  }

  .lg\:pin-l-400 {
    left: 400px;
  }

  .lg\:pin-t-500 {
    top: 500px;
  }

  .lg\:pin-r-500 {
    right: 500px;
  }

  .lg\:pin-b-500 {
    bottom: 500px;
  }

  .lg\:pin-l-500 {
    left: 500px;
  }

  .lg\:-pin-t-5 {
    top: -5px;
  }

  .lg\:-pin-r-5 {
    right: -5px;
  }

  .lg\:-pin-b-5 {
    bottom: -5px;
  }

  .lg\:-pin-l-5 {
    left: -5px;
  }

  .lg\:-pin-t-6 {
    top: -6px;
  }

  .lg\:-pin-r-6 {
    right: -6px;
  }

  .lg\:-pin-b-6 {
    bottom: -6px;
  }

  .lg\:-pin-l-6 {
    left: -6px;
  }

  .lg\:-pin-t-10 {
    top: -10px;
  }

  .lg\:-pin-r-10 {
    right: -10px;
  }

  .lg\:-pin-b-10 {
    bottom: -10px;
  }

  .lg\:-pin-l-10 {
    left: -10px;
  }

  .lg\:-pin-t-15 {
    top: -15px;
  }

  .lg\:-pin-r-15 {
    right: -15px;
  }

  .lg\:-pin-b-15 {
    bottom: -15px;
  }

  .lg\:-pin-l-15 {
    left: -15px;
  }

  .lg\:-pin-t-20 {
    top: -20px;
  }

  .lg\:-pin-r-20 {
    right: -20px;
  }

  .lg\:-pin-b-20 {
    bottom: -20px;
  }

  .lg\:-pin-l-20 {
    left: -20px;
  }

  .lg\:-pin-t-12 {
    top: -3rem;
  }

  .lg\:-pin-r-12 {
    right: -3rem;
  }

  .lg\:-pin-b-12 {
    bottom: -3rem;
  }

  .lg\:-pin-l-12 {
    left: -3rem;
  }

  .lg\:-pin-t-16 {
    top: -4rem;
  }

  .lg\:-pin-r-16 {
    right: -4rem;
  }

  .lg\:-pin-b-16 {
    bottom: -4rem;
  }

  .lg\:-pin-l-16 {
    left: -4rem;
  }

  .lg\:-pin-t-25 {
    top: -25px;
  }

  .lg\:-pin-r-25 {
    right: -25px;
  }

  .lg\:-pin-b-25 {
    bottom: -25px;
  }

  .lg\:-pin-l-25 {
    left: -25px;
  }

  .lg\:-pin-t-50 {
    top: -50px;
  }

  .lg\:-pin-r-50 {
    right: -50px;
  }

  .lg\:-pin-b-50 {
    bottom: -50px;
  }

  .lg\:-pin-l-50 {
    left: -50px;
  }

  .lg\:-pin-t-75 {
    top: 75px;
  }

  .lg\:-pin-r-75 {
    right: 75px;
  }

  .lg\:-pin-b-75 {
    bottom: 75px;
  }

  .lg\:-pin-l-75 {
    left: 75px;
  }

  .lg\:-pin-t-80 {
    top: -80px;
  }

  .lg\:-pin-r-80 {
    right: -80px;
  }

  .lg\:-pin-b-80 {
    bottom: -80px;
  }

  .lg\:-pin-l-80 {
    left: -80px;
  }

  .lg\:-pin-t-100 {
    top: -100px;
  }

  .lg\:-pin-r-100 {
    right: -100px;
  }

  .lg\:-pin-b-100 {
    bottom: -100px;
  }

  .lg\:-pin-l-100 {
    left: -100px;
  }

  .lg\:-pin-t-150 {
    top: -150px;
  }

  .lg\:-pin-r-150 {
    right: -150px;
  }

  .lg\:-pin-b-150 {
    bottom: -150px;
  }

  .lg\:-pin-l-150 {
    left: -150px;
  }

  .lg\:-pin-t-200 {
    top: -200px;
  }

  .lg\:-pin-r-200 {
    right: -200px;
  }

  .lg\:-pin-b-200 {
    bottom: -200px;
  }

  .lg\:-pin-l-200 {
    left: -200px;
  }

  .lg\:-pin-t-250 {
    top: -250px;
  }

  .lg\:-pin-r-250 {
    right: -250px;
  }

  .lg\:-pin-b-250 {
    bottom: -250px;
  }

  .lg\:-pin-l-250 {
    left: -250px;
  }

  .lg\:-pin-t-300 {
    top: -300px;
  }

  .lg\:-pin-r-300 {
    right: -300px;
  }

  .lg\:-pin-b-300 {
    bottom: -300px;
  }

  .lg\:-pin-l-300 {
    left: -300px;
  }

  .lg\:-pin-t-400 {
    top: -400px;
  }

  .lg\:-pin-r-400 {
    right: -400px;
  }

  .lg\:-pin-b-400 {
    bottom: -400px;
  }

  .lg\:-pin-l-400 {
    left: -400px;
  }

  .lg\:-pin-t-500 {
    top: -500px;
  }

  .lg\:-pin-r-500 {
    right: -500px;
  }

  .lg\:-pin-b-500 {
    bottom: -500px;
  }

  .lg\:-pin-l-500 {
    left: -500px;
  }

  .lg\:pin-t-half {
    top: 50%;
  }

  .lg\:pin-r-half {
    right: 50%;
  }

  .lg\:pin-b-half {
    bottom: 50%;
  }

  .lg\:pin-l-half {
    left: 50%;
  }

  .lg\:-pin-t-half {
    top: -50%;
  }

  .lg\:-pin-r-half {
    right: -50%;
  }

  .lg\:-pin-b-half {
    bottom: -50%;
  }

  .lg\:-pin-l-half {
    left: -50%;
  }

  .lg\:rotate-45 {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .lg\:rotate-90 {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .lg\:rotate-180 {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .lg\:-rotate-45 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .lg\:-rotate-90 {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .lg\:-rotate-180 {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .lg\:-translateX-50 {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .lg\:-translateY-50 {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .lg\:hover\:rotate-45:hover {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .lg\:hover\:rotate-90:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .lg\:hover\:rotate-180:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .lg\:hover\:-rotate-45:hover {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .lg\:hover\:-rotate-90:hover {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .lg\:hover\:-rotate-180:hover {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .lg\:hover\:-translateX-50:hover {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .lg\:hover\:-translateY-50:hover {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (min-width: 1460px) {
  .xl\:list-reset {
    list-style: none;
    padding: 0;
  }

  .xl\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .xl\:bg-fixed {
    background-attachment: fixed;
  }

  .xl\:bg-local {
    background-attachment: local;
  }

  .xl\:bg-scroll {
    background-attachment: scroll;
  }

  .xl\:bg-transparent {
    background-color: transparent;
  }

  .xl\:bg-currentColor {
    background-color: currentColor;
  }

  .xl\:bg-black {
    background-color: #222;
  }

  .xl\:bg-black-10 {
    background-color: rgba(0, 0, 0, .1);
  }

  .xl\:bg-black-20 {
    background-color: rgba(0, 0, 0, .2);
  }

  .xl\:bg-black-30 {
    background-color: rgba(0, 0, 0, .3);
  }

  .xl\:bg-black-40 {
    background-color: rgba(0, 0, 0, .4);
  }

  .xl\:bg-black-50 {
    background-color: rgba(0, 0, 0, .5);
  }

  .xl\:bg-black-60 {
    background-color: rgba(0, 0, 0, .6);
  }

  .xl\:bg-black-70 {
    background-color: rgba(0, 0, 0, .7);
  }

  .xl\:bg-black-80 {
    background-color: rgba(0, 0, 0, .8);
  }

  .xl\:bg-black-90 {
    background-color: rgba(0, 0, 0, .9);
  }

  .xl\:bg-black-1 {
    background-color: #313131;
  }

  .xl\:bg-white {
    background-color: #fff;
  }

  .xl\:bg-blue {
    background-color: #0277bd;
  }

  .xl\:bg-dark-blue {
    background-color: #0277bd;
  }

  .xl\:bg-blue-1 {
    background-color: #17214a;
  }

  .xl\:bg-light-blue {
    background-color: #0277bd;
  }

  .xl\:bg-red {
    background-color: #cb001c;
  }

  .xl\:bg-green {
    background-color: #00bea0;
  }

  .xl\:bg-purple {
    background-color: #5a80d1;
  }

  .xl\:bg-orange {
    background-color: #ff9a0a;
  }

  .xl\:bg-grey {
    background-color: #929a9d;
  }

  .xl\:bg-grey-light {
    background-color: #e2e2e2;
  }

  .xl\:bg-grey-1 {
    background-color: #f2f3f3;
  }

  .xl\:bg-grey-2 {
    background-color: #c2c6c8;
  }

  .xl\:bg-grey-3 {
    background-color: #6b7375;
  }

  .xl\:bg-grey-4 {
    background-color: #465052;
  }

  .xl\:bg-grey-5 {
    background-color: #828688;
  }

  .xl\:bg-sd-red {
    background-color: #ed1c24;
  }

  .xl\:bg-light-blue-1 {
    background-color: #21b8de;
  }

  .xl\:bg-dark-blue-1 {
    background-color: #0277bd;
  }

  .xl\:bg-dark-orange {
    background-color: #df8403;
  }

  .xl\:bg-g-blue {
    background-color: #17214a;
  }

  .xl\:bg-g-blue-1 {
    background-color: #556d88;
  }

  .xl\:bg-g-blue-2 {
    background-color: #3c4c65;
  }

  .xl\:bg-g-blue-3 {
    background-color: #222e4d;
  }

  .xl\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .xl\:hover\:bg-currentColor:hover {
    background-color: currentColor;
  }

  .xl\:hover\:bg-black:hover {
    background-color: #222;
  }

  .xl\:hover\:bg-black-10:hover {
    background-color: rgba(0, 0, 0, .1);
  }

  .xl\:hover\:bg-black-20:hover {
    background-color: rgba(0, 0, 0, .2);
  }

  .xl\:hover\:bg-black-30:hover {
    background-color: rgba(0, 0, 0, .3);
  }

  .xl\:hover\:bg-black-40:hover {
    background-color: rgba(0, 0, 0, .4);
  }

  .xl\:hover\:bg-black-50:hover {
    background-color: rgba(0, 0, 0, .5);
  }

  .xl\:hover\:bg-black-60:hover {
    background-color: rgba(0, 0, 0, .6);
  }

  .xl\:hover\:bg-black-70:hover {
    background-color: rgba(0, 0, 0, .7);
  }

  .xl\:hover\:bg-black-80:hover {
    background-color: rgba(0, 0, 0, .8);
  }

  .xl\:hover\:bg-black-90:hover {
    background-color: rgba(0, 0, 0, .9);
  }

  .xl\:hover\:bg-black-1:hover {
    background-color: #313131;
  }

  .xl\:hover\:bg-white:hover {
    background-color: #fff;
  }

  .xl\:hover\:bg-blue:hover {
    background-color: #0277bd;
  }

  .xl\:hover\:bg-dark-blue:hover {
    background-color: #0277bd;
  }

  .xl\:hover\:bg-blue-1:hover {
    background-color: #17214a;
  }

  .xl\:hover\:bg-light-blue:hover {
    background-color: #0277bd;
  }

  .xl\:hover\:bg-red:hover {
    background-color: #cb001c;
  }

  .xl\:hover\:bg-green:hover {
    background-color: #00bea0;
  }

  .xl\:hover\:bg-purple:hover {
    background-color: #5a80d1;
  }

  .xl\:hover\:bg-orange:hover {
    background-color: #ff9a0a;
  }

  .xl\:hover\:bg-grey:hover {
    background-color: #929a9d;
  }

  .xl\:hover\:bg-grey-light:hover {
    background-color: #e2e2e2;
  }

  .xl\:hover\:bg-grey-1:hover {
    background-color: #f2f3f3;
  }

  .xl\:hover\:bg-grey-2:hover {
    background-color: #c2c6c8;
  }

  .xl\:hover\:bg-grey-3:hover {
    background-color: #6b7375;
  }

  .xl\:hover\:bg-grey-4:hover {
    background-color: #465052;
  }

  .xl\:hover\:bg-grey-5:hover {
    background-color: #828688;
  }

  .xl\:hover\:bg-sd-red:hover {
    background-color: #ed1c24;
  }

  .xl\:hover\:bg-light-blue-1:hover {
    background-color: #21b8de;
  }

  .xl\:hover\:bg-dark-blue-1:hover {
    background-color: #0277bd;
  }

  .xl\:hover\:bg-dark-orange:hover {
    background-color: #df8403;
  }

  .xl\:hover\:bg-g-blue:hover {
    background-color: #17214a;
  }

  .xl\:hover\:bg-g-blue-1:hover {
    background-color: #556d88;
  }

  .xl\:hover\:bg-g-blue-2:hover {
    background-color: #3c4c65;
  }

  .xl\:hover\:bg-g-blue-3:hover {
    background-color: #222e4d;
  }

  .xl\:bg-bottom {
    background-position: bottom;
  }

  .xl\:bg-center {
    background-position: center;
  }

  .xl\:bg-left {
    background-position: left;
  }

  .xl\:bg-left-bottom {
    background-position: left bottom;
  }

  .xl\:bg-left-top {
    background-position: left top;
  }

  .xl\:bg-right {
    background-position: right;
  }

  .xl\:bg-right-bottom {
    background-position: right bottom;
  }

  .xl\:bg-right-top {
    background-position: right top;
  }

  .xl\:bg-top {
    background-position: top;
  }

  .xl\:bg-repeat {
    background-repeat: repeat;
  }

  .xl\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .xl\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .xl\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .xl\:bg-auto {
    background-size: auto;
  }

  .xl\:bg-cover {
    background-size: cover;
  }

  .xl\:bg-contain {
    background-size: contain;
  }

  .xl\:border-transparent {
    border-color: transparent;
  }

  .xl\:border-currentColor {
    border-color: currentColor;
  }

  .xl\:border-black {
    border-color: #222;
  }

  .xl\:border-black-10 {
    border-color: rgba(0, 0, 0, .1);
  }

  .xl\:border-black-20 {
    border-color: rgba(0, 0, 0, .2);
  }

  .xl\:border-black-30 {
    border-color: rgba(0, 0, 0, .3);
  }

  .xl\:border-black-40 {
    border-color: rgba(0, 0, 0, .4);
  }

  .xl\:border-black-50 {
    border-color: rgba(0, 0, 0, .5);
  }

  .xl\:border-black-60 {
    border-color: rgba(0, 0, 0, .6);
  }

  .xl\:border-black-70 {
    border-color: rgba(0, 0, 0, .7);
  }

  .xl\:border-black-80 {
    border-color: rgba(0, 0, 0, .8);
  }

  .xl\:border-black-90 {
    border-color: rgba(0, 0, 0, .9);
  }

  .xl\:border-black-1 {
    border-color: #313131;
  }

  .xl\:border-white {
    border-color: #fff;
  }

  .xl\:border-blue {
    border-color: #0277bd;
  }

  .xl\:border-dark-blue {
    border-color: #0277bd;
  }

  .xl\:border-blue-1 {
    border-color: #17214a;
  }

  .xl\:border-light-blue {
    border-color: #0277bd;
  }

  .xl\:border-red {
    border-color: #cb001c;
  }

  .xl\:border-green {
    border-color: #00bea0;
  }

  .xl\:border-purple {
    border-color: #5a80d1;
  }

  .xl\:border-orange {
    border-color: #ff9a0a;
  }

  .xl\:border-grey {
    border-color: #929a9d;
  }

  .xl\:border-grey-light {
    border-color: #e2e2e2;
  }

  .xl\:border-grey-1 {
    border-color: #f2f3f3;
  }

  .xl\:border-grey-2 {
    border-color: #c2c6c8;
  }

  .xl\:border-grey-3 {
    border-color: #6b7375;
  }

  .xl\:border-grey-4 {
    border-color: #465052;
  }

  .xl\:border-grey-5 {
    border-color: #828688;
  }

  .xl\:border-sd-red {
    border-color: #ed1c24;
  }

  .xl\:border-light-blue-1 {
    border-color: #21b8de;
  }

  .xl\:border-dark-blue-1 {
    border-color: #0277bd;
  }

  .xl\:border-dark-orange {
    border-color: #df8403;
  }

  .xl\:border-g-blue {
    border-color: #17214a;
  }

  .xl\:border-g-blue-1 {
    border-color: #556d88;
  }

  .xl\:border-g-blue-2 {
    border-color: #3c4c65;
  }

  .xl\:border-g-blue-3 {
    border-color: #222e4d;
  }

  .xl\:hover\:border-transparent:hover {
    border-color: transparent;
  }

  .xl\:hover\:border-currentColor:hover {
    border-color: currentColor;
  }

  .xl\:hover\:border-black:hover {
    border-color: #222;
  }

  .xl\:hover\:border-black-10:hover {
    border-color: rgba(0, 0, 0, .1);
  }

  .xl\:hover\:border-black-20:hover {
    border-color: rgba(0, 0, 0, .2);
  }

  .xl\:hover\:border-black-30:hover {
    border-color: rgba(0, 0, 0, .3);
  }

  .xl\:hover\:border-black-40:hover {
    border-color: rgba(0, 0, 0, .4);
  }

  .xl\:hover\:border-black-50:hover {
    border-color: rgba(0, 0, 0, .5);
  }

  .xl\:hover\:border-black-60:hover {
    border-color: rgba(0, 0, 0, .6);
  }

  .xl\:hover\:border-black-70:hover {
    border-color: rgba(0, 0, 0, .7);
  }

  .xl\:hover\:border-black-80:hover {
    border-color: rgba(0, 0, 0, .8);
  }

  .xl\:hover\:border-black-90:hover {
    border-color: rgba(0, 0, 0, .9);
  }

  .xl\:hover\:border-black-1:hover {
    border-color: #313131;
  }

  .xl\:hover\:border-white:hover {
    border-color: #fff;
  }

  .xl\:hover\:border-blue:hover {
    border-color: #0277bd;
  }

  .xl\:hover\:border-dark-blue:hover {
    border-color: #0277bd;
  }

  .xl\:hover\:border-blue-1:hover {
    border-color: #17214a;
  }

  .xl\:hover\:border-light-blue:hover {
    border-color: #0277bd;
  }

  .xl\:hover\:border-red:hover {
    border-color: #cb001c;
  }

  .xl\:hover\:border-green:hover {
    border-color: #00bea0;
  }

  .xl\:hover\:border-purple:hover {
    border-color: #5a80d1;
  }

  .xl\:hover\:border-orange:hover {
    border-color: #ff9a0a;
  }

  .xl\:hover\:border-grey:hover {
    border-color: #929a9d;
  }

  .xl\:hover\:border-grey-light:hover {
    border-color: #e2e2e2;
  }

  .xl\:hover\:border-grey-1:hover {
    border-color: #f2f3f3;
  }

  .xl\:hover\:border-grey-2:hover {
    border-color: #c2c6c8;
  }

  .xl\:hover\:border-grey-3:hover {
    border-color: #6b7375;
  }

  .xl\:hover\:border-grey-4:hover {
    border-color: #465052;
  }

  .xl\:hover\:border-grey-5:hover {
    border-color: #828688;
  }

  .xl\:hover\:border-sd-red:hover {
    border-color: #ed1c24;
  }

  .xl\:hover\:border-light-blue-1:hover {
    border-color: #21b8de;
  }

  .xl\:hover\:border-dark-blue-1:hover {
    border-color: #0277bd;
  }

  .xl\:hover\:border-dark-orange:hover {
    border-color: #df8403;
  }

  .xl\:hover\:border-g-blue:hover {
    border-color: #17214a;
  }

  .xl\:hover\:border-g-blue-1:hover {
    border-color: #556d88;
  }

  .xl\:hover\:border-g-blue-2:hover {
    border-color: #3c4c65;
  }

  .xl\:hover\:border-g-blue-3:hover {
    border-color: #222e4d;
  }

  .xl\:rounded-none {
    border-radius: 0;
  }

  .xl\:rounded-sm {
    border-radius: .125rem;
  }

  .xl\:rounded {
    border-radius: .25rem;
  }

  .xl\:rounded-lg {
    border-radius: .5rem;
  }

  .xl\:rounded-full {
    border-radius: 9999px;
  }

  .xl\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .xl\:rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .xl\:rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-t-sm {
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
  }

  .xl\:rounded-r-sm {
    border-top-right-radius: .125rem;
    border-bottom-right-radius: .125rem;
  }

  .xl\:rounded-b-sm {
    border-bottom-right-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .xl\:rounded-l-sm {
    border-top-left-radius: .125rem;
    border-bottom-left-radius: .125rem;
  }

  .xl\:rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
  }

  .xl\:rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }

  .xl\:rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .xl\:rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }

  .xl\:rounded-t-lg {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

  .xl\:rounded-r-lg {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .xl\:rounded-b-lg {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .xl\:rounded-l-lg {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
  }

  .xl\:rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .xl\:rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .xl\:rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xl\:rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .xl\:rounded-tl-none {
    border-top-left-radius: 0;
  }

  .xl\:rounded-tr-none {
    border-top-right-radius: 0;
  }

  .xl\:rounded-br-none {
    border-bottom-right-radius: 0;
  }

  .xl\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }

  .xl\:rounded-tl-sm {
    border-top-left-radius: .125rem;
  }

  .xl\:rounded-tr-sm {
    border-top-right-radius: .125rem;
  }

  .xl\:rounded-br-sm {
    border-bottom-right-radius: .125rem;
  }

  .xl\:rounded-bl-sm {
    border-bottom-left-radius: .125rem;
  }

  .xl\:rounded-tl {
    border-top-left-radius: .25rem;
  }

  .xl\:rounded-tr {
    border-top-right-radius: .25rem;
  }

  .xl\:rounded-br {
    border-bottom-right-radius: .25rem;
  }

  .xl\:rounded-bl {
    border-bottom-left-radius: .25rem;
  }

  .xl\:rounded-tl-lg {
    border-top-left-radius: .5rem;
  }

  .xl\:rounded-tr-lg {
    border-top-right-radius: .5rem;
  }

  .xl\:rounded-br-lg {
    border-bottom-right-radius: .5rem;
  }

  .xl\:rounded-bl-lg {
    border-bottom-left-radius: .5rem;
  }

  .xl\:rounded-tl-full {
    border-top-left-radius: 9999px;
  }

  .xl\:rounded-tr-full {
    border-top-right-radius: 9999px;
  }

  .xl\:rounded-br-full {
    border-bottom-right-radius: 9999px;
  }

  .xl\:rounded-bl-full {
    border-bottom-left-radius: 9999px;
  }

  .xl\:border-solid {
    border-style: solid;
  }

  .xl\:border-dashed {
    border-style: dashed;
  }

  .xl\:border-dotted {
    border-style: dotted;
  }

  .xl\:border-none {
    border-style: none;
  }

  .xl\:border-0 {
    border-width: 0;
  }

  .xl\:border-2 {
    border-width: 2px;
  }

  .xl\:border-3 {
    border-width: 3px;
  }

  .xl\:border-4 {
    border-width: 4px;
  }

  .xl\:border-5 {
    border-width: 5px;
  }

  .xl\:border-6 {
    border-width: 6px;
  }

  .xl\:border-7 {
    border-width: 7px;
  }

  .xl\:border-8 {
    border-width: 8px;
  }

  .xl\:border-9 {
    border-width: 9px;
  }

  .xl\:border-10 {
    border-width: 10px;
  }

  .xl\:border {
    border-width: 1px;
  }

  .xl\:border-t-0 {
    border-top-width: 0;
  }

  .xl\:border-r-0 {
    border-right-width: 0;
  }

  .xl\:border-b-0 {
    border-bottom-width: 0;
  }

  .xl\:border-l-0 {
    border-left-width: 0;
  }

  .xl\:border-t-2 {
    border-top-width: 2px;
  }

  .xl\:border-r-2 {
    border-right-width: 2px;
  }

  .xl\:border-b-2 {
    border-bottom-width: 2px;
  }

  .xl\:border-l-2 {
    border-left-width: 2px;
  }

  .xl\:border-t-3 {
    border-top-width: 3px;
  }

  .xl\:border-r-3 {
    border-right-width: 3px;
  }

  .xl\:border-b-3 {
    border-bottom-width: 3px;
  }

  .xl\:border-l-3 {
    border-left-width: 3px;
  }

  .xl\:border-t-4 {
    border-top-width: 4px;
  }

  .xl\:border-r-4 {
    border-right-width: 4px;
  }

  .xl\:border-b-4 {
    border-bottom-width: 4px;
  }

  .xl\:border-l-4 {
    border-left-width: 4px;
  }

  .xl\:border-t-5 {
    border-top-width: 5px;
  }

  .xl\:border-r-5 {
    border-right-width: 5px;
  }

  .xl\:border-b-5 {
    border-bottom-width: 5px;
  }

  .xl\:border-l-5 {
    border-left-width: 5px;
  }

  .xl\:border-t-6 {
    border-top-width: 6px;
  }

  .xl\:border-r-6 {
    border-right-width: 6px;
  }

  .xl\:border-b-6 {
    border-bottom-width: 6px;
  }

  .xl\:border-l-6 {
    border-left-width: 6px;
  }

  .xl\:border-t-7 {
    border-top-width: 7px;
  }

  .xl\:border-r-7 {
    border-right-width: 7px;
  }

  .xl\:border-b-7 {
    border-bottom-width: 7px;
  }

  .xl\:border-l-7 {
    border-left-width: 7px;
  }

  .xl\:border-t-8 {
    border-top-width: 8px;
  }

  .xl\:border-r-8 {
    border-right-width: 8px;
  }

  .xl\:border-b-8 {
    border-bottom-width: 8px;
  }

  .xl\:border-l-8 {
    border-left-width: 8px;
  }

  .xl\:border-t-9 {
    border-top-width: 9px;
  }

  .xl\:border-r-9 {
    border-right-width: 9px;
  }

  .xl\:border-b-9 {
    border-bottom-width: 9px;
  }

  .xl\:border-l-9 {
    border-left-width: 9px;
  }

  .xl\:border-t-10 {
    border-top-width: 10px;
  }

  .xl\:border-r-10 {
    border-right-width: 10px;
  }

  .xl\:border-b-10 {
    border-bottom-width: 10px;
  }

  .xl\:border-l-10 {
    border-left-width: 10px;
  }

  .xl\:border-t {
    border-top-width: 1px;
  }

  .xl\:border-r {
    border-right-width: 1px;
  }

  .xl\:border-b {
    border-bottom-width: 1px;
  }

  .xl\:border-l {
    border-left-width: 1px;
  }

  .xl\:cursor-auto {
    cursor: auto;
  }

  .xl\:cursor-default {
    cursor: default;
  }

  .xl\:cursor-pointer {
    cursor: pointer;
  }

  .xl\:cursor-wait {
    cursor: wait;
  }

  .xl\:cursor-move {
    cursor: move;
  }

  .xl\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .xl\:block {
    display: block;
  }

  .xl\:inline-block {
    display: inline-block;
  }

  .xl\:inline {
    display: inline;
  }

  .xl\:table {
    display: table;
  }

  .xl\:table-row {
    display: table-row;
  }

  .xl\:table-cell {
    display: table-cell;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:flex {
    display: -webkit-box;
    display: flex;
  }

  .xl\:inline-flex {
    display: -webkit-inline-box;
    display: inline-flex;
  }

  .xl\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .xl\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }

  .xl\:flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .xl\:flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }

  .xl\:flex-wrap {
    flex-wrap: wrap;
  }

  .xl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .xl\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .xl\:items-start {
    -webkit-box-align: start;
            align-items: flex-start;
  }

  .xl\:items-end {
    -webkit-box-align: end;
            align-items: flex-end;
  }

  .xl\:items-center {
    -webkit-box-align: center;
            align-items: center;
  }

  .xl\:items-baseline {
    -webkit-box-align: baseline;
            align-items: baseline;
  }

  .xl\:items-stretch {
    -webkit-box-align: stretch;
            align-items: stretch;
  }

  .xl\:self-auto {
    align-self: auto;
  }

  .xl\:self-start {
    align-self: flex-start;
  }

  .xl\:self-end {
    align-self: flex-end;
  }

  .xl\:self-center {
    align-self: center;
  }

  .xl\:self-stretch {
    align-self: stretch;
  }

  .xl\:justify-start {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }

  .xl\:justify-end {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }

  .xl\:justify-center {
    -webkit-box-pack: center;
            justify-content: center;
  }

  .xl\:justify-between {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }

  .xl\:justify-around {
    justify-content: space-around;
  }

  .xl\:content-center {
    align-content: center;
  }

  .xl\:content-start {
    align-content: flex-start;
  }

  .xl\:content-end {
    align-content: flex-end;
  }

  .xl\:content-between {
    align-content: space-between;
  }

  .xl\:content-around {
    align-content: space-around;
  }

  .xl\:flex-1 {
    -webkit-box-flex: 1;
            flex: 1;
  }

  .xl\:flex-auto {
    -webkit-box-flex: 1;
            flex: auto;
  }

  .xl\:flex-initial {
    -webkit-box-flex: initial;
            flex: initial;
  }

  .xl\:flex-none {
    -webkit-box-flex: 0;
            flex: none;
  }

  .xl\:flex-grow {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }

  .xl\:flex-shrink {
    flex-shrink: 1;
  }

  .xl\:flex-no-grow {
    -webkit-box-flex: 0;
            flex-grow: 0;
  }

  .xl\:flex-no-shrink {
    flex-shrink: 0;
  }

  .xl\:float-right {
    float: right;
  }

  .xl\:float-left {
    float: left;
  }

  .xl\:float-none {
    float: none;
  }

  .xl\:clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  .xl\:font-Roboto {
    font-family: Roboto;
  }

  .xl\:font-light {
    font-weight: 300;
  }

  .xl\:font-normal {
    font-weight: 400;
  }

  .xl\:font-medium {
    font-weight: 500;
  }

  .xl\:font-semibold {
    font-weight: 600;
  }

  .xl\:font-bold {
    font-weight: 700;
  }

  .xl\:font-extrabold {
    font-weight: 800;
  }

  .xl\:font-xxbold {
    font-weight: 900;
  }

  .xl\:hover\:font-light:hover {
    font-weight: 300;
  }

  .xl\:hover\:font-normal:hover {
    font-weight: 400;
  }

  .xl\:hover\:font-medium:hover {
    font-weight: 500;
  }

  .xl\:hover\:font-semibold:hover {
    font-weight: 600;
  }

  .xl\:hover\:font-bold:hover {
    font-weight: 700;
  }

  .xl\:hover\:font-extrabold:hover {
    font-weight: 800;
  }

  .xl\:hover\:font-xxbold:hover {
    font-weight: 900;
  }

  .xl\:h-0 {
    height: 0;
  }

  .xl\:h-1 {
    height: .25rem;
  }

  .xl\:h-2 {
    height: .5rem;
  }

  .xl\:h-3 {
    height: .75rem;
  }

  .xl\:h-4 {
    height: 1rem;
  }

  .xl\:h-5 {
    height: 1.25rem;
  }

  .xl\:h-6 {
    height: 1.5rem;
  }

  .xl\:h-7 {
    height: 1.75rem;
  }

  .xl\:h-8 {
    height: 2rem;
  }

  .xl\:h-9 {
    height: 2.25rem;
  }

  .xl\:h-10 {
    height: 2.5rem;
  }

  .xl\:h-12 {
    height: 3rem;
  }

  .xl\:h-14 {
    height: 3.5rem;
  }

  .xl\:h-16 {
    height: 4rem;
  }

  .xl\:h-18 {
    height: 4.5rem;
  }

  .xl\:h-24 {
    height: 6rem;
  }

  .xl\:h-32 {
    height: 8rem;
  }

  .xl\:h-48 {
    height: 12rem;
  }

  .xl\:h-64 {
    height: 16rem;
  }

  .xl\:h-auto {
    height: auto;
  }

  .xl\:h-px {
    height: 1px;
  }

  .xl\:h-2px {
    height: 2px;
  }

  .xl\:h-42px {
    height: 2.625rem;
  }

  .xl\:h-50px {
    height: 50px;
  }

  .xl\:h-100px {
    height: 100px;
  }

  .xl\:h-125px {
    height: 125px;
  }

  .xl\:h-150px {
    height: 150px;
  }

  .xl\:h-175px {
    height: 175px;
  }

  .xl\:h-200px {
    height: 200px;
  }

  .xl\:h-225px {
    height: 225px;
  }

  .xl\:h-250px {
    height: 250px;
  }

  .xl\:h-275px {
    height: 275px;
  }

  .xl\:h-300px {
    height: 300px;
  }

  .xl\:h-325px {
    height: 325px;
  }

  .xl\:h-350px {
    height: 350px;
  }

  .xl\:h-375px {
    height: 375px;
  }

  .xl\:h-400px {
    height: 400px;
  }

  .xl\:h-500px {
    height: 500px;
  }

  .xl\:h-576px {
    height: 576px;
  }

  .xl\:h-600px {
    height: 600px;
  }

  .xl\:h-700px {
    height: 700px;
  }

  .xl\:h-768px {
    height: 768px;
  }

  .xl\:h-800px {
    height: 800px;
  }

  .xl\:h-900px {
    height: 900px;
  }

  .xl\:h-992px {
    height: 992px;
  }

  .xl\:h-1000px {
    height: 1000px;
  }

  .xl\:h-1140px {
    height: 1140px;
  }

  .xl\:h-1200px {
    height: 1200px;
  }

  .xl\:h-1460px {
    height: 1460px;
  }

  .xl\:h-1600px {
    height: 1600px;
  }

  .xl\:h-screen {
    height: 100vh;
  }

  .xl\:h-half {
    height: 50%;
  }

  .xl\:h-quarter {
    height: 75%;
  }

  .xl\:h-85\% {
    height: 85%;
  }

  .xl\:h-full {
    height: 100%;
  }

  .xl\:hover\:h-0:hover {
    height: 0;
  }

  .xl\:hover\:h-1:hover {
    height: .25rem;
  }

  .xl\:hover\:h-2:hover {
    height: .5rem;
  }

  .xl\:hover\:h-3:hover {
    height: .75rem;
  }

  .xl\:hover\:h-4:hover {
    height: 1rem;
  }

  .xl\:hover\:h-5:hover {
    height: 1.25rem;
  }

  .xl\:hover\:h-6:hover {
    height: 1.5rem;
  }

  .xl\:hover\:h-7:hover {
    height: 1.75rem;
  }

  .xl\:hover\:h-8:hover {
    height: 2rem;
  }

  .xl\:hover\:h-9:hover {
    height: 2.25rem;
  }

  .xl\:hover\:h-10:hover {
    height: 2.5rem;
  }

  .xl\:hover\:h-12:hover {
    height: 3rem;
  }

  .xl\:hover\:h-14:hover {
    height: 3.5rem;
  }

  .xl\:hover\:h-16:hover {
    height: 4rem;
  }

  .xl\:hover\:h-18:hover {
    height: 4.5rem;
  }

  .xl\:hover\:h-24:hover {
    height: 6rem;
  }

  .xl\:hover\:h-32:hover {
    height: 8rem;
  }

  .xl\:hover\:h-48:hover {
    height: 12rem;
  }

  .xl\:hover\:h-64:hover {
    height: 16rem;
  }

  .xl\:hover\:h-auto:hover {
    height: auto;
  }

  .xl\:hover\:h-px:hover {
    height: 1px;
  }

  .xl\:hover\:h-2px:hover {
    height: 2px;
  }

  .xl\:hover\:h-42px:hover {
    height: 2.625rem;
  }

  .xl\:hover\:h-50px:hover {
    height: 50px;
  }

  .xl\:hover\:h-100px:hover {
    height: 100px;
  }

  .xl\:hover\:h-125px:hover {
    height: 125px;
  }

  .xl\:hover\:h-150px:hover {
    height: 150px;
  }

  .xl\:hover\:h-175px:hover {
    height: 175px;
  }

  .xl\:hover\:h-200px:hover {
    height: 200px;
  }

  .xl\:hover\:h-225px:hover {
    height: 225px;
  }

  .xl\:hover\:h-250px:hover {
    height: 250px;
  }

  .xl\:hover\:h-275px:hover {
    height: 275px;
  }

  .xl\:hover\:h-300px:hover {
    height: 300px;
  }

  .xl\:hover\:h-325px:hover {
    height: 325px;
  }

  .xl\:hover\:h-350px:hover {
    height: 350px;
  }

  .xl\:hover\:h-375px:hover {
    height: 375px;
  }

  .xl\:hover\:h-400px:hover {
    height: 400px;
  }

  .xl\:hover\:h-500px:hover {
    height: 500px;
  }

  .xl\:hover\:h-576px:hover {
    height: 576px;
  }

  .xl\:hover\:h-600px:hover {
    height: 600px;
  }

  .xl\:hover\:h-700px:hover {
    height: 700px;
  }

  .xl\:hover\:h-768px:hover {
    height: 768px;
  }

  .xl\:hover\:h-800px:hover {
    height: 800px;
  }

  .xl\:hover\:h-900px:hover {
    height: 900px;
  }

  .xl\:hover\:h-992px:hover {
    height: 992px;
  }

  .xl\:hover\:h-1000px:hover {
    height: 1000px;
  }

  .xl\:hover\:h-1140px:hover {
    height: 1140px;
  }

  .xl\:hover\:h-1200px:hover {
    height: 1200px;
  }

  .xl\:hover\:h-1460px:hover {
    height: 1460px;
  }

  .xl\:hover\:h-1600px:hover {
    height: 1600px;
  }

  .xl\:hover\:h-screen:hover {
    height: 100vh;
  }

  .xl\:hover\:h-half:hover {
    height: 50%;
  }

  .xl\:hover\:h-quarter:hover {
    height: 75%;
  }

  .xl\:hover\:h-85\%:hover {
    height: 85%;
  }

  .xl\:hover\:h-full:hover {
    height: 100%;
  }

  .xl\:leading-none {
    line-height: 1;
  }

  .xl\:leading-heading {
    line-height: 1.1;
  }

  .xl\:leading-tight {
    line-height: 1.2;
  }

  .xl\:leading-normal {
    line-height: 1.5;
  }

  .xl\:leading-loose {
    line-height: 2;
  }

  .xl\:m-0 {
    margin: 0;
  }

  .xl\:m-1 {
    margin: .25rem;
  }

  .xl\:m-2 {
    margin: .5rem;
  }

  .xl\:m-3 {
    margin: .75rem;
  }

  .xl\:m-4 {
    margin: 1rem;
  }

  .xl\:m-5 {
    margin: 1.25rem;
  }

  .xl\:m-6 {
    margin: 1.5rem;
  }

  .xl\:m-7 {
    margin: 1.75rem;
  }

  .xl\:m-8 {
    margin: 2rem;
  }

  .xl\:m-9 {
    margin: 2.25rem;
  }

  .xl\:m-10 {
    margin: 2.5rem;
  }

  .xl\:m-12 {
    margin: 3rem;
  }

  .xl\:m-16 {
    margin: 4rem;
  }

  .xl\:m-20 {
    margin: 5rem;
  }

  .xl\:m-24 {
    margin: 6rem;
  }

  .xl\:m-28 {
    margin: 7rem;
  }

  .xl\:m-32 {
    margin: 8rem;
  }

  .xl\:m-36 {
    margin: 9rem;
  }

  .xl\:m-40 {
    margin: 10rem;
  }

  .xl\:m-44 {
    margin: 11rem;
  }

  .xl\:m-48 {
    margin: 12rem;
  }

  .xl\:m-56 {
    margin: 14rem;
  }

  .xl\:m-60 {
    margin: 15rem;
  }

  .xl\:m-64 {
    margin: 16rem;
  }

  .xl\:m-80 {
    margin: 20rem;
  }

  .xl\:m-96 {
    margin: 24rem;
  }

  .xl\:m-120 {
    margin: 30rem;
  }

  .xl\:m-160 {
    margin: 40rem;
  }

  .xl\:m-auto {
    margin: auto;
  }

  .xl\:m-px {
    margin: 1px;
  }

  .xl\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .xl\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xl\:my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .xl\:mx-1 {
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .xl\:my-2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .xl\:mx-2 {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .xl\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }

  .xl\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .xl\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .xl\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .xl\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .xl\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .xl\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .xl\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .xl\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .xl\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .xl\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .xl\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .xl\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .xl\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .xl\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .xl\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .xl\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .xl\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .xl\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .xl\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .xl\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .xl\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .xl\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .xl\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .xl\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .xl\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .xl\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .xl\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .xl\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .xl\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .xl\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .xl\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .xl\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .xl\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .xl\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .xl\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .xl\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .xl\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .xl\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .xl\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .xl\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .xl\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .xl\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .xl\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .xl\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .xl\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .xl\:my-120 {
    margin-top: 30rem;
    margin-bottom: 30rem;
  }

  .xl\:mx-120 {
    margin-left: 30rem;
    margin-right: 30rem;
  }

  .xl\:my-160 {
    margin-top: 40rem;
    margin-bottom: 40rem;
  }

  .xl\:mx-160 {
    margin-left: 40rem;
    margin-right: 40rem;
  }

  .xl\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .xl\:my-px {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .xl\:mx-px {
    margin-left: 1px;
    margin-right: 1px;
  }

  .xl\:mt-0 {
    margin-top: 0;
  }

  .xl\:mr-0 {
    margin-right: 0;
  }

  .xl\:mb-0 {
    margin-bottom: 0;
  }

  .xl\:ml-0 {
    margin-left: 0;
  }

  .xl\:mt-1 {
    margin-top: .25rem;
  }

  .xl\:mr-1 {
    margin-right: .25rem;
  }

  .xl\:mb-1 {
    margin-bottom: .25rem;
  }

  .xl\:ml-1 {
    margin-left: .25rem;
  }

  .xl\:mt-2 {
    margin-top: .5rem;
  }

  .xl\:mr-2 {
    margin-right: .5rem;
  }

  .xl\:mb-2 {
    margin-bottom: .5rem;
  }

  .xl\:ml-2 {
    margin-left: .5rem;
  }

  .xl\:mt-3 {
    margin-top: .75rem;
  }

  .xl\:mr-3 {
    margin-right: .75rem;
  }

  .xl\:mb-3 {
    margin-bottom: .75rem;
  }

  .xl\:ml-3 {
    margin-left: .75rem;
  }

  .xl\:mt-4 {
    margin-top: 1rem;
  }

  .xl\:mr-4 {
    margin-right: 1rem;
  }

  .xl\:mb-4 {
    margin-bottom: 1rem;
  }

  .xl\:ml-4 {
    margin-left: 1rem;
  }

  .xl\:mt-5 {
    margin-top: 1.25rem;
  }

  .xl\:mr-5 {
    margin-right: 1.25rem;
  }

  .xl\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .xl\:ml-5 {
    margin-left: 1.25rem;
  }

  .xl\:mt-6 {
    margin-top: 1.5rem;
  }

  .xl\:mr-6 {
    margin-right: 1.5rem;
  }

  .xl\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .xl\:ml-6 {
    margin-left: 1.5rem;
  }

  .xl\:mt-7 {
    margin-top: 1.75rem;
  }

  .xl\:mr-7 {
    margin-right: 1.75rem;
  }

  .xl\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .xl\:ml-7 {
    margin-left: 1.75rem;
  }

  .xl\:mt-8 {
    margin-top: 2rem;
  }

  .xl\:mr-8 {
    margin-right: 2rem;
  }

  .xl\:mb-8 {
    margin-bottom: 2rem;
  }

  .xl\:ml-8 {
    margin-left: 2rem;
  }

  .xl\:mt-9 {
    margin-top: 2.25rem;
  }

  .xl\:mr-9 {
    margin-right: 2.25rem;
  }

  .xl\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .xl\:ml-9 {
    margin-left: 2.25rem;
  }

  .xl\:mt-10 {
    margin-top: 2.5rem;
  }

  .xl\:mr-10 {
    margin-right: 2.5rem;
  }

  .xl\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .xl\:ml-10 {
    margin-left: 2.5rem;
  }

  .xl\:mt-12 {
    margin-top: 3rem;
  }

  .xl\:mr-12 {
    margin-right: 3rem;
  }

  .xl\:mb-12 {
    margin-bottom: 3rem;
  }

  .xl\:ml-12 {
    margin-left: 3rem;
  }

  .xl\:mt-16 {
    margin-top: 4rem;
  }

  .xl\:mr-16 {
    margin-right: 4rem;
  }

  .xl\:mb-16 {
    margin-bottom: 4rem;
  }

  .xl\:ml-16 {
    margin-left: 4rem;
  }

  .xl\:mt-20 {
    margin-top: 5rem;
  }

  .xl\:mr-20 {
    margin-right: 5rem;
  }

  .xl\:mb-20 {
    margin-bottom: 5rem;
  }

  .xl\:ml-20 {
    margin-left: 5rem;
  }

  .xl\:mt-24 {
    margin-top: 6rem;
  }

  .xl\:mr-24 {
    margin-right: 6rem;
  }

  .xl\:mb-24 {
    margin-bottom: 6rem;
  }

  .xl\:ml-24 {
    margin-left: 6rem;
  }

  .xl\:mt-28 {
    margin-top: 7rem;
  }

  .xl\:mr-28 {
    margin-right: 7rem;
  }

  .xl\:mb-28 {
    margin-bottom: 7rem;
  }

  .xl\:ml-28 {
    margin-left: 7rem;
  }

  .xl\:mt-32 {
    margin-top: 8rem;
  }

  .xl\:mr-32 {
    margin-right: 8rem;
  }

  .xl\:mb-32 {
    margin-bottom: 8rem;
  }

  .xl\:ml-32 {
    margin-left: 8rem;
  }

  .xl\:mt-36 {
    margin-top: 9rem;
  }

  .xl\:mr-36 {
    margin-right: 9rem;
  }

  .xl\:mb-36 {
    margin-bottom: 9rem;
  }

  .xl\:ml-36 {
    margin-left: 9rem;
  }

  .xl\:mt-40 {
    margin-top: 10rem;
  }

  .xl\:mr-40 {
    margin-right: 10rem;
  }

  .xl\:mb-40 {
    margin-bottom: 10rem;
  }

  .xl\:ml-40 {
    margin-left: 10rem;
  }

  .xl\:mt-44 {
    margin-top: 11rem;
  }

  .xl\:mr-44 {
    margin-right: 11rem;
  }

  .xl\:mb-44 {
    margin-bottom: 11rem;
  }

  .xl\:ml-44 {
    margin-left: 11rem;
  }

  .xl\:mt-48 {
    margin-top: 12rem;
  }

  .xl\:mr-48 {
    margin-right: 12rem;
  }

  .xl\:mb-48 {
    margin-bottom: 12rem;
  }

  .xl\:ml-48 {
    margin-left: 12rem;
  }

  .xl\:mt-56 {
    margin-top: 14rem;
  }

  .xl\:mr-56 {
    margin-right: 14rem;
  }

  .xl\:mb-56 {
    margin-bottom: 14rem;
  }

  .xl\:ml-56 {
    margin-left: 14rem;
  }

  .xl\:mt-60 {
    margin-top: 15rem;
  }

  .xl\:mr-60 {
    margin-right: 15rem;
  }

  .xl\:mb-60 {
    margin-bottom: 15rem;
  }

  .xl\:ml-60 {
    margin-left: 15rem;
  }

  .xl\:mt-64 {
    margin-top: 16rem;
  }

  .xl\:mr-64 {
    margin-right: 16rem;
  }

  .xl\:mb-64 {
    margin-bottom: 16rem;
  }

  .xl\:ml-64 {
    margin-left: 16rem;
  }

  .xl\:mt-80 {
    margin-top: 20rem;
  }

  .xl\:mr-80 {
    margin-right: 20rem;
  }

  .xl\:mb-80 {
    margin-bottom: 20rem;
  }

  .xl\:ml-80 {
    margin-left: 20rem;
  }

  .xl\:mt-96 {
    margin-top: 24rem;
  }

  .xl\:mr-96 {
    margin-right: 24rem;
  }

  .xl\:mb-96 {
    margin-bottom: 24rem;
  }

  .xl\:ml-96 {
    margin-left: 24rem;
  }

  .xl\:mt-120 {
    margin-top: 30rem;
  }

  .xl\:mr-120 {
    margin-right: 30rem;
  }

  .xl\:mb-120 {
    margin-bottom: 30rem;
  }

  .xl\:ml-120 {
    margin-left: 30rem;
  }

  .xl\:mt-160 {
    margin-top: 40rem;
  }

  .xl\:mr-160 {
    margin-right: 40rem;
  }

  .xl\:mb-160 {
    margin-bottom: 40rem;
  }

  .xl\:ml-160 {
    margin-left: 40rem;
  }

  .xl\:mt-auto {
    margin-top: auto;
  }

  .xl\:mr-auto {
    margin-right: auto;
  }

  .xl\:mb-auto {
    margin-bottom: auto;
  }

  .xl\:ml-auto {
    margin-left: auto;
  }

  .xl\:mt-px {
    margin-top: 1px;
  }

  .xl\:mr-px {
    margin-right: 1px;
  }

  .xl\:mb-px {
    margin-bottom: 1px;
  }

  .xl\:ml-px {
    margin-left: 1px;
  }

  .xl\:max-h-0 {
    max-height: 0;
  }

  .xl\:max-h-1 {
    max-height: .25rem;
  }

  .xl\:max-h-2 {
    max-height: .5rem;
  }

  .xl\:max-h-3 {
    max-height: .75rem;
  }

  .xl\:max-h-4 {
    max-height: 1rem;
  }

  .xl\:max-h-5 {
    max-height: 1.25rem;
  }

  .xl\:max-h-6 {
    max-height: 1.5rem;
  }

  .xl\:max-h-7 {
    max-height: 1.75rem;
  }

  .xl\:max-h-8 {
    max-height: 2rem;
  }

  .xl\:max-h-9 {
    max-height: 2.25rem;
  }

  .xl\:max-h-10 {
    max-height: 2.5rem;
  }

  .xl\:max-h-12 {
    max-height: 3rem;
  }

  .xl\:max-h-14 {
    max-height: 3.5rem;
  }

  .xl\:max-h-16 {
    max-height: 4rem;
  }

  .xl\:max-h-24 {
    max-height: 6rem;
  }

  .xl\:max-h-32 {
    max-height: 8rem;
  }

  .xl\:max-h-40 {
    max-height: 10rem;
  }

  .xl\:max-h-48 {
    max-height: 12rem;
  }

  .xl\:max-h-64 {
    max-height: 16rem;
  }

  .xl\:max-h-70 {
    max-height: 18rem;
  }

  .xl\:max-h-80 {
    max-height: 20rem;
  }

  .xl\:max-h-96 {
    max-height: 24rem;
  }

  .xl\:max-h-112 {
    max-height: 28rem;
  }

  .xl\:max-h-128 {
    max-height: 32rem;
  }

  .xl\:max-h-600 {
    max-height: 600px;
  }

  .xl\:max-h-700 {
    max-height: 700px;
  }

  .xl\:max-h-unset {
    max-height: unset;
  }

  .xl\:max-h-none {
    max-height: none;
  }

  .xl\:max-h-px {
    max-height: 1px;
  }

  .xl\:max-h-2px {
    max-height: 2px;
  }

  .xl\:max-h-100px {
    max-height: 100px;
  }

  .xl\:max-h-125px {
    max-height: 125px;
  }

  .xl\:max-h-150px {
    max-height: 150px;
  }

  .xl\:max-h-175px {
    max-height: 175px;
  }

  .xl\:max-h-200px {
    max-height: 200px;
  }

  .xl\:max-h-225px {
    max-height: 225px;
  }

  .xl\:max-h-250px {
    max-height: 250px;
  }

  .xl\:max-h-275px {
    max-height: 275px;
  }

  .xl\:max-h-300px {
    max-height: 300px;
  }

  .xl\:max-h-325px {
    max-height: 325px;
  }

  .xl\:max-h-350px {
    max-height: 350px;
  }

  .xl\:max-h-375px {
    max-height: 375px;
  }

  .xl\:max-h-400px {
    max-height: 400px;
  }

  .xl\:max-h-450px {
    max-height: 450px;
  }

  .xl\:max-h-475px {
    max-height: 475px;
  }

  .xl\:max-h-500px {
    max-height: 500px;
  }

  .xl\:max-h-768px {
    max-height: 768px;
  }

  .xl\:max-h-800px {
    max-height: 800px;
  }

  .xl\:max-h-900px {
    max-height: 900px;
  }

  .xl\:max-h-992px {
    max-height: 992px;
  }

  .xl\:max-h-1000px {
    max-height: 1000px;
  }

  .xl\:max-h-1140px {
    max-height: 1140px;
  }

  .xl\:max-h-1200px {
    max-height: 1200px;
  }

  .xl\:max-h-1460px {
    max-height: 1460px;
  }

  .xl\:max-h-1600px {
    max-height: 1600px;
  }

  .xl\:max-h-screen {
    max-height: 100vw;
  }

  .xl\:max-h-half {
    max-height: 50%;
  }

  .xl\:max-h-quarter {
    max-height: 75%;
  }

  .xl\:max-h-85\% {
    max-height: 85%;
  }

  .xl\:max-h-full {
    max-height: 100%;
  }

  .xl\:max-w-0 {
    max-width: 0;
  }

  .xl\:max-w-1 {
    max-width: .25rem;
  }

  .xl\:max-w-2 {
    max-width: .5rem;
  }

  .xl\:max-w-3 {
    max-width: .75rem;
  }

  .xl\:max-w-4 {
    max-width: 1rem;
  }

  .xl\:max-w-5 {
    max-width: 1.25rem;
  }

  .xl\:max-w-6 {
    max-width: 1.5rem;
  }

  .xl\:max-w-7 {
    max-width: 1.75rem;
  }

  .xl\:max-w-8 {
    max-width: 2rem;
  }

  .xl\:max-w-9 {
    max-width: 2.25rem;
  }

  .xl\:max-w-10 {
    max-width: 2.5rem;
  }

  .xl\:max-w-12 {
    max-width: 3rem;
  }

  .xl\:max-w-14 {
    max-width: 3.5rem;
  }

  .xl\:max-w-16 {
    max-width: 4rem;
  }

  .xl\:max-w-24 {
    max-width: 6rem;
  }

  .xl\:max-w-32 {
    max-width: 8rem;
  }

  .xl\:max-w-40 {
    max-width: 10rem;
  }

  .xl\:max-w-48 {
    max-width: 12rem;
  }

  .xl\:max-w-64 {
    max-width: 16rem;
  }

  .xl\:max-w-70 {
    max-width: 18rem;
  }

  .xl\:max-w-80 {
    max-width: 20rem;
  }

  .xl\:max-w-96 {
    max-width: 24rem;
  }

  .xl\:max-w-112 {
    max-width: 28rem;
  }

  .xl\:max-w-128 {
    max-width: 32rem;
  }

  .xl\:max-w-600 {
    max-width: 600px;
  }

  .xl\:max-w-700 {
    max-width: 700px;
  }

  .xl\:max-w-none {
    max-width: none;
  }

  .xl\:max-w-px {
    max-width: 1px;
  }

  .xl\:max-w-2px {
    max-width: 2px;
  }

  .xl\:max-w-100px {
    max-width: 100px;
  }

  .xl\:max-w-125px {
    max-width: 125px;
  }

  .xl\:max-w-150px {
    max-width: 150px;
  }

  .xl\:max-w-175px {
    max-width: 175px;
  }

  .xl\:max-w-200px {
    max-width: 200px;
  }

  .xl\:max-w-225px {
    max-width: 225px;
  }

  .xl\:max-w-250px {
    max-width: 250px;
  }

  .xl\:max-w-275px {
    max-width: 275px;
  }

  .xl\:max-w-300px {
    max-width: 300px;
  }

  .xl\:max-w-325px {
    max-width: 325px;
  }

  .xl\:max-w-350px {
    max-width: 350px;
  }

  .xl\:max-w-375px {
    max-width: 375px;
  }

  .xl\:max-w-400px {
    max-width: 400px;
  }

  .xl\:max-w-450px {
    max-width: 450px;
  }

  .xl\:max-w-475px {
    max-width: 475px;
  }

  .xl\:max-w-500px {
    max-width: 500px;
  }

  .xl\:max-w-768px {
    max-width: 768px;
  }

  .xl\:max-w-800px {
    max-width: 800px;
  }

  .xl\:max-w-900px {
    max-width: 900px;
  }

  .xl\:max-w-992px {
    max-width: 992px;
  }

  .xl\:max-w-1000px {
    max-width: 1000px;
  }

  .xl\:max-w-1140px {
    max-width: 1140px;
  }

  .xl\:max-w-1200px {
    max-width: 1200px;
  }

  .xl\:max-w-1460px {
    max-width: 1460px;
  }

  .xl\:max-w-1600px {
    max-width: 1600px;
  }

  .xl\:max-w-screen {
    max-width: 100vw;
  }

  .xl\:max-w-half {
    max-width: 50%;
  }

  .xl\:max-w-quarter {
    max-width: 75%;
  }

  .xl\:max-w-85\% {
    max-width: 85%;
  }

  .xl\:max-w-full {
    max-width: 100%;
  }

  .xl\:min-h-0 {
    min-height: 0;
  }

  .xl\:min-h-1 {
    min-height: .25rem;
  }

  .xl\:min-h-2 {
    min-height: .5rem;
  }

  .xl\:min-h-3 {
    min-height: .75rem;
  }

  .xl\:min-h-4 {
    min-height: 1rem;
  }

  .xl\:min-h-5 {
    min-height: 1.25rem;
  }

  .xl\:min-h-6 {
    min-height: 1.5rem;
  }

  .xl\:min-h-7 {
    min-height: 1.75rem;
  }

  .xl\:min-h-8 {
    min-height: 2rem;
  }

  .xl\:min-h-9 {
    min-height: 2.25rem;
  }

  .xl\:min-h-10 {
    min-height: 2.5rem;
  }

  .xl\:min-h-12 {
    min-height: 3rem;
  }

  .xl\:min-h-14 {
    min-height: 3.5rem;
  }

  .xl\:min-h-16 {
    min-height: 4rem;
  }

  .xl\:min-h-24 {
    min-height: 6rem;
  }

  .xl\:min-h-32 {
    min-height: 8rem;
  }

  .xl\:min-h-40 {
    min-height: 10rem;
  }

  .xl\:min-h-48 {
    min-height: 12rem;
  }

  .xl\:min-h-64 {
    min-height: 16rem;
  }

  .xl\:min-h-70 {
    min-height: 18rem;
  }

  .xl\:min-h-80 {
    min-height: 20rem;
  }

  .xl\:min-h-96 {
    min-height: 24rem;
  }

  .xl\:min-h-112 {
    min-height: 28rem;
  }

  .xl\:min-h-128 {
    min-height: 32rem;
  }

  .xl\:min-h-600 {
    min-height: 600px;
  }

  .xl\:min-h-700 {
    min-height: 700px;
  }

  .xl\:min-h-px {
    min-height: 1px;
  }

  .xl\:min-h-2px {
    min-height: 2px;
  }

  .xl\:min-h-100px {
    min-height: 100px;
  }

  .xl\:min-h-125px {
    min-height: 125px;
  }

  .xl\:min-h-150px {
    min-height: 150px;
  }

  .xl\:min-h-175px {
    min-height: 175px;
  }

  .xl\:min-h-200px {
    min-height: 200px;
  }

  .xl\:min-h-225px {
    min-height: 225px;
  }

  .xl\:min-h-250px {
    min-height: 250px;
  }

  .xl\:min-h-275px {
    min-height: 275px;
  }

  .xl\:min-h-300px {
    min-height: 300px;
  }

  .xl\:min-h-325px {
    min-height: 325px;
  }

  .xl\:min-h-350px {
    min-height: 350px;
  }

  .xl\:min-h-375px {
    min-height: 375px;
  }

  .xl\:min-h-400px {
    min-height: 400px;
  }

  .xl\:min-h-450px {
    min-height: 450px;
  }

  .xl\:min-h-475px {
    min-height: 475px;
  }

  .xl\:min-h-500px {
    min-height: 500px;
  }

  .xl\:min-h-768px {
    min-height: 768px;
  }

  .xl\:min-h-800px {
    min-height: 800px;
  }

  .xl\:min-h-900px {
    min-height: 900px;
  }

  .xl\:min-h-992px {
    min-height: 992px;
  }

  .xl\:min-h-1000px {
    min-height: 1000px;
  }

  .xl\:min-h-1140px {
    min-height: 1140px;
  }

  .xl\:min-h-1200px {
    min-height: 1200px;
  }

  .xl\:min-h-1460px {
    min-height: 1460px;
  }

  .xl\:min-h-1600px {
    min-height: 1600px;
  }

  .xl\:min-h-screen {
    min-height: 100vw;
  }

  .xl\:min-h-half {
    min-height: 50%;
  }

  .xl\:min-h-quarter {
    min-height: 75%;
  }

  .xl\:min-h-85\% {
    min-height: 85%;
  }

  .xl\:min-h-full {
    min-height: 100%;
  }

  .xl\:min-w-0 {
    min-width: 0;
  }

  .xl\:min-w-1 {
    min-width: .25rem;
  }

  .xl\:min-w-2 {
    min-width: .5rem;
  }

  .xl\:min-w-3 {
    min-width: .75rem;
  }

  .xl\:min-w-4 {
    min-width: 1rem;
  }

  .xl\:min-w-5 {
    min-width: 1.25rem;
  }

  .xl\:min-w-6 {
    min-width: 1.5rem;
  }

  .xl\:min-w-7 {
    min-width: 1.75rem;
  }

  .xl\:min-w-8 {
    min-width: 2rem;
  }

  .xl\:min-w-9 {
    min-width: 2.25rem;
  }

  .xl\:min-w-10 {
    min-width: 2.5rem;
  }

  .xl\:min-w-12 {
    min-width: 3rem;
  }

  .xl\:min-w-16 {
    min-width: 4rem;
  }

  .xl\:min-w-24 {
    min-width: 6rem;
  }

  .xl\:min-w-32 {
    min-width: 8rem;
  }

  .xl\:min-w-40 {
    min-width: 10rem;
  }

  .xl\:min-w-48 {
    min-width: 12rem;
  }

  .xl\:min-w-64 {
    min-width: 16rem;
  }

  .xl\:min-w-70 {
    min-width: 18rem;
  }

  .xl\:min-w-80 {
    min-width: 20rem;
  }

  .xl\:min-w-96 {
    min-width: 24rem;
  }

  .xl\:min-w-112 {
    min-width: 28rem;
  }

  .xl\:min-w-128 {
    min-width: 32rem;
  }

  .xl\:min-w-auto {
    min-width: auto;
  }

  .xl\:min-w-px {
    min-width: 1px;
  }

  .xl\:min-w-2px {
    min-width: 2px;
  }

  .xl\:min-w-100px {
    min-width: 100px;
  }

  .xl\:min-w-125px {
    min-width: 125px;
  }

  .xl\:min-w-150px {
    min-width: 150px;
  }

  .xl\:min-w-175px {
    min-width: 175px;
  }

  .xl\:min-w-200px {
    min-width: 200px;
  }

  .xl\:min-w-225px {
    min-width: 225px;
  }

  .xl\:min-w-250px {
    min-width: 250px;
  }

  .xl\:min-w-275px {
    min-width: 275px;
  }

  .xl\:min-w-300px {
    min-width: 300px;
  }

  .xl\:min-w-325px {
    min-width: 325px;
  }

  .xl\:min-w-350px {
    min-width: 350px;
  }

  .xl\:min-w-375px {
    min-width: 375px;
  }

  .xl\:min-w-400px {
    min-width: 400px;
  }

  .xl\:min-w-450px {
    min-width: 450px;
  }

  .xl\:min-w-475px {
    min-width: 475px;
  }

  .xl\:min-w-500px {
    min-width: 500px;
  }

  .xl\:min-w-576px {
    min-width: 576px;
  }

  .xl\:min-w-600px {
    min-width: 600px;
  }

  .xl\:min-w-700px {
    min-width: 700px;
  }

  .xl\:min-w-768px {
    min-width: 768px;
  }

  .xl\:min-w-800px {
    min-width: 800px;
  }

  .xl\:min-w-900px {
    min-width: 900px;
  }

  .xl\:min-w-992px {
    min-width: 992px;
  }

  .xl\:min-w-1000px {
    min-width: 1000px;
  }

  .xl\:min-w-1140px {
    min-width: 1140px;
  }

  .xl\:min-w-1200px {
    min-width: 1200px;
  }

  .xl\:min-w-1460px {
    min-width: 1460px;
  }

  .xl\:min-w-1600px {
    min-width: 1600px;
  }

  .xl\:min-w-screen {
    min-width: 100vw;
  }

  .xl\:min-w-half {
    min-width: 50%;
  }

  .xl\:min-w-quarter {
    min-width: 75%;
  }

  .xl\:min-w-85\% {
    min-width: 85%;
  }

  .xl\:min-w-full {
    min-width: 100%;
  }

  .xl\:-m-0 {
    margin: 0;
  }

  .xl\:-m-1 {
    margin: -0.25rem;
  }

  .xl\:-m-2 {
    margin: -0.5rem;
  }

  .xl\:-m-3 {
    margin: -0.75rem;
  }

  .xl\:-m-4 {
    margin: -1rem;
  }

  .xl\:-m-5 {
    margin: -1.25rem;
  }

  .xl\:-m-6 {
    margin: -1.5rem;
  }

  .xl\:-m-7 {
    margin: -1.75rem;
  }

  .xl\:-m-8 {
    margin: -2rem;
  }

  .xl\:-m-9 {
    margin: -2.25rem;
  }

  .xl\:-m-10 {
    margin: -2.5rem;
  }

  .xl\:-m-12 {
    margin: -3rem;
  }

  .xl\:-m-16 {
    margin: -4rem;
  }

  .xl\:-m-20 {
    margin: -5rem;
  }

  .xl\:-m-24 {
    margin: -6rem;
  }

  .xl\:-m-28 {
    margin: -7rem;
  }

  .xl\:-m-32 {
    margin: -8rem;
  }

  .xl\:-m-36 {
    margin: -9rem;
  }

  .xl\:-m-40 {
    margin: -10rem;
  }

  .xl\:-m-44 {
    margin: -11rem;
  }

  .xl\:-m-48 {
    margin: -12rem;
  }

  .xl\:-m-56 {
    margin: -14rem;
  }

  .xl\:-m-60 {
    margin: -15rem;
  }

  .xl\:-m-64 {
    margin: -16rem;
  }

  .xl\:-m-80 {
    margin: -20rem;
  }

  .xl\:-m-96 {
    margin: -24rem;
  }

  .xl\:-m-120 {
    margin: -30rem;
  }

  .xl\:-m-160 {
    margin: -40rem;
  }

  .xl\:-m-auto {
    margin: -auto;
  }

  .xl\:-m-px {
    margin: -1px;
  }

  .xl\:-my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .xl\:-mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .xl\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .xl\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .xl\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .xl\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .xl\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .xl\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .xl\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .xl\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .xl\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .xl\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .xl\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .xl\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .xl\:-my-7 {
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .xl\:-mx-7 {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .xl\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .xl\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .xl\:-my-9 {
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .xl\:-mx-9 {
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .xl\:-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .xl\:-mx-10 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .xl\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .xl\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .xl\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .xl\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .xl\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .xl\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .xl\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .xl\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .xl\:-my-28 {
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .xl\:-mx-28 {
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .xl\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .xl\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .xl\:-my-36 {
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .xl\:-mx-36 {
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .xl\:-my-40 {
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .xl\:-mx-40 {
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .xl\:-my-44 {
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .xl\:-mx-44 {
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .xl\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .xl\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .xl\:-my-56 {
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .xl\:-mx-56 {
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .xl\:-my-60 {
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .xl\:-mx-60 {
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .xl\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .xl\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .xl\:-my-80 {
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .xl\:-mx-80 {
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .xl\:-my-96 {
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .xl\:-mx-96 {
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .xl\:-my-120 {
    margin-top: -30rem;
    margin-bottom: -30rem;
  }

  .xl\:-mx-120 {
    margin-left: -30rem;
    margin-right: -30rem;
  }

  .xl\:-my-160 {
    margin-top: -40rem;
    margin-bottom: -40rem;
  }

  .xl\:-mx-160 {
    margin-left: -40rem;
    margin-right: -40rem;
  }

  .xl\:-my-auto {
    margin-top: -auto;
    margin-bottom: -auto;
  }

  .xl\:-mx-auto {
    margin-left: -auto;
    margin-right: -auto;
  }

  .xl\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .xl\:-mx-px {
    margin-left: -1px;
    margin-right: -1px;
  }

  .xl\:-mt-0 {
    margin-top: 0;
  }

  .xl\:-mr-0 {
    margin-right: 0;
  }

  .xl\:-mb-0 {
    margin-bottom: 0;
  }

  .xl\:-ml-0 {
    margin-left: 0;
  }

  .xl\:-mt-1 {
    margin-top: -0.25rem;
  }

  .xl\:-mr-1 {
    margin-right: -0.25rem;
  }

  .xl\:-mb-1 {
    margin-bottom: -0.25rem;
  }

  .xl\:-ml-1 {
    margin-left: -0.25rem;
  }

  .xl\:-mt-2 {
    margin-top: -0.5rem;
  }

  .xl\:-mr-2 {
    margin-right: -0.5rem;
  }

  .xl\:-mb-2 {
    margin-bottom: -0.5rem;
  }

  .xl\:-ml-2 {
    margin-left: -0.5rem;
  }

  .xl\:-mt-3 {
    margin-top: -0.75rem;
  }

  .xl\:-mr-3 {
    margin-right: -0.75rem;
  }

  .xl\:-mb-3 {
    margin-bottom: -0.75rem;
  }

  .xl\:-ml-3 {
    margin-left: -0.75rem;
  }

  .xl\:-mt-4 {
    margin-top: -1rem;
  }

  .xl\:-mr-4 {
    margin-right: -1rem;
  }

  .xl\:-mb-4 {
    margin-bottom: -1rem;
  }

  .xl\:-ml-4 {
    margin-left: -1rem;
  }

  .xl\:-mt-5 {
    margin-top: -1.25rem;
  }

  .xl\:-mr-5 {
    margin-right: -1.25rem;
  }

  .xl\:-mb-5 {
    margin-bottom: -1.25rem;
  }

  .xl\:-ml-5 {
    margin-left: -1.25rem;
  }

  .xl\:-mt-6 {
    margin-top: -1.5rem;
  }

  .xl\:-mr-6 {
    margin-right: -1.5rem;
  }

  .xl\:-mb-6 {
    margin-bottom: -1.5rem;
  }

  .xl\:-ml-6 {
    margin-left: -1.5rem;
  }

  .xl\:-mt-7 {
    margin-top: -1.75rem;
  }

  .xl\:-mr-7 {
    margin-right: -1.75rem;
  }

  .xl\:-mb-7 {
    margin-bottom: -1.75rem;
  }

  .xl\:-ml-7 {
    margin-left: -1.75rem;
  }

  .xl\:-mt-8 {
    margin-top: -2rem;
  }

  .xl\:-mr-8 {
    margin-right: -2rem;
  }

  .xl\:-mb-8 {
    margin-bottom: -2rem;
  }

  .xl\:-ml-8 {
    margin-left: -2rem;
  }

  .xl\:-mt-9 {
    margin-top: -2.25rem;
  }

  .xl\:-mr-9 {
    margin-right: -2.25rem;
  }

  .xl\:-mb-9 {
    margin-bottom: -2.25rem;
  }

  .xl\:-ml-9 {
    margin-left: -2.25rem;
  }

  .xl\:-mt-10 {
    margin-top: -2.5rem;
  }

  .xl\:-mr-10 {
    margin-right: -2.5rem;
  }

  .xl\:-mb-10 {
    margin-bottom: -2.5rem;
  }

  .xl\:-ml-10 {
    margin-left: -2.5rem;
  }

  .xl\:-mt-12 {
    margin-top: -3rem;
  }

  .xl\:-mr-12 {
    margin-right: -3rem;
  }

  .xl\:-mb-12 {
    margin-bottom: -3rem;
  }

  .xl\:-ml-12 {
    margin-left: -3rem;
  }

  .xl\:-mt-16 {
    margin-top: -4rem;
  }

  .xl\:-mr-16 {
    margin-right: -4rem;
  }

  .xl\:-mb-16 {
    margin-bottom: -4rem;
  }

  .xl\:-ml-16 {
    margin-left: -4rem;
  }

  .xl\:-mt-20 {
    margin-top: -5rem;
  }

  .xl\:-mr-20 {
    margin-right: -5rem;
  }

  .xl\:-mb-20 {
    margin-bottom: -5rem;
  }

  .xl\:-ml-20 {
    margin-left: -5rem;
  }

  .xl\:-mt-24 {
    margin-top: -6rem;
  }

  .xl\:-mr-24 {
    margin-right: -6rem;
  }

  .xl\:-mb-24 {
    margin-bottom: -6rem;
  }

  .xl\:-ml-24 {
    margin-left: -6rem;
  }

  .xl\:-mt-28 {
    margin-top: -7rem;
  }

  .xl\:-mr-28 {
    margin-right: -7rem;
  }

  .xl\:-mb-28 {
    margin-bottom: -7rem;
  }

  .xl\:-ml-28 {
    margin-left: -7rem;
  }

  .xl\:-mt-32 {
    margin-top: -8rem;
  }

  .xl\:-mr-32 {
    margin-right: -8rem;
  }

  .xl\:-mb-32 {
    margin-bottom: -8rem;
  }

  .xl\:-ml-32 {
    margin-left: -8rem;
  }

  .xl\:-mt-36 {
    margin-top: -9rem;
  }

  .xl\:-mr-36 {
    margin-right: -9rem;
  }

  .xl\:-mb-36 {
    margin-bottom: -9rem;
  }

  .xl\:-ml-36 {
    margin-left: -9rem;
  }

  .xl\:-mt-40 {
    margin-top: -10rem;
  }

  .xl\:-mr-40 {
    margin-right: -10rem;
  }

  .xl\:-mb-40 {
    margin-bottom: -10rem;
  }

  .xl\:-ml-40 {
    margin-left: -10rem;
  }

  .xl\:-mt-44 {
    margin-top: -11rem;
  }

  .xl\:-mr-44 {
    margin-right: -11rem;
  }

  .xl\:-mb-44 {
    margin-bottom: -11rem;
  }

  .xl\:-ml-44 {
    margin-left: -11rem;
  }

  .xl\:-mt-48 {
    margin-top: -12rem;
  }

  .xl\:-mr-48 {
    margin-right: -12rem;
  }

  .xl\:-mb-48 {
    margin-bottom: -12rem;
  }

  .xl\:-ml-48 {
    margin-left: -12rem;
  }

  .xl\:-mt-56 {
    margin-top: -14rem;
  }

  .xl\:-mr-56 {
    margin-right: -14rem;
  }

  .xl\:-mb-56 {
    margin-bottom: -14rem;
  }

  .xl\:-ml-56 {
    margin-left: -14rem;
  }

  .xl\:-mt-60 {
    margin-top: -15rem;
  }

  .xl\:-mr-60 {
    margin-right: -15rem;
  }

  .xl\:-mb-60 {
    margin-bottom: -15rem;
  }

  .xl\:-ml-60 {
    margin-left: -15rem;
  }

  .xl\:-mt-64 {
    margin-top: -16rem;
  }

  .xl\:-mr-64 {
    margin-right: -16rem;
  }

  .xl\:-mb-64 {
    margin-bottom: -16rem;
  }

  .xl\:-ml-64 {
    margin-left: -16rem;
  }

  .xl\:-mt-80 {
    margin-top: -20rem;
  }

  .xl\:-mr-80 {
    margin-right: -20rem;
  }

  .xl\:-mb-80 {
    margin-bottom: -20rem;
  }

  .xl\:-ml-80 {
    margin-left: -20rem;
  }

  .xl\:-mt-96 {
    margin-top: -24rem;
  }

  .xl\:-mr-96 {
    margin-right: -24rem;
  }

  .xl\:-mb-96 {
    margin-bottom: -24rem;
  }

  .xl\:-ml-96 {
    margin-left: -24rem;
  }

  .xl\:-mt-120 {
    margin-top: -30rem;
  }

  .xl\:-mr-120 {
    margin-right: -30rem;
  }

  .xl\:-mb-120 {
    margin-bottom: -30rem;
  }

  .xl\:-ml-120 {
    margin-left: -30rem;
  }

  .xl\:-mt-160 {
    margin-top: -40rem;
  }

  .xl\:-mr-160 {
    margin-right: -40rem;
  }

  .xl\:-mb-160 {
    margin-bottom: -40rem;
  }

  .xl\:-ml-160 {
    margin-left: -40rem;
  }

  .xl\:-mt-auto {
    margin-top: -auto;
  }

  .xl\:-mr-auto {
    margin-right: -auto;
  }

  .xl\:-mb-auto {
    margin-bottom: -auto;
  }

  .xl\:-ml-auto {
    margin-left: -auto;
  }

  .xl\:-mt-px {
    margin-top: -1px;
  }

  .xl\:-mr-px {
    margin-right: -1px;
  }

  .xl\:-mb-px {
    margin-bottom: -1px;
  }

  .xl\:-ml-px {
    margin-left: -1px;
  }

  .xl\:opacity-0 {
    opacity: 0;
  }

  .xl\:opacity-25 {
    opacity: .25;
  }

  .xl\:opacity-50 {
    opacity: .5;
  }

  .xl\:opacity-75 {
    opacity: .75;
  }

  .xl\:opacity-100 {
    opacity: 1;
  }

  .xl\:overflow-auto {
    overflow: auto;
  }

  .xl\:overflow-hidden {
    overflow: hidden;
  }

  .xl\:overflow-visible {
    overflow: visible;
  }

  .xl\:overflow-scroll {
    overflow: scroll;
  }

  .xl\:overflow-x-auto {
    overflow-x: auto;
  }

  .xl\:overflow-y-auto {
    overflow-y: auto;
  }

  .xl\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .xl\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .xl\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .xl\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .xl\:p-0 {
    padding: 0;
  }

  .xl\:p-1 {
    padding: .25rem;
  }

  .xl\:p-2 {
    padding: .5rem;
  }

  .xl\:p-3 {
    padding: .75rem;
  }

  .xl\:p-4 {
    padding: 1rem;
  }

  .xl\:p-5 {
    padding: 1.25rem;
  }

  .xl\:p-6 {
    padding: 1.5rem;
  }

  .xl\:p-7 {
    padding: 1.75rem;
  }

  .xl\:p-8 {
    padding: 2rem;
  }

  .xl\:p-9 {
    padding: 2.25rem;
  }

  .xl\:p-10 {
    padding: 2.5rem;
  }

  .xl\:p-12 {
    padding: 3rem;
  }

  .xl\:p-16 {
    padding: 4rem;
  }

  .xl\:p-20 {
    padding: 5rem;
  }

  .xl\:p-24 {
    padding: 6rem;
  }

  .xl\:p-28 {
    padding: 7rem;
  }

  .xl\:p-32 {
    padding: 8rem;
  }

  .xl\:p-36 {
    padding: 9rem;
  }

  .xl\:p-40 {
    padding: 10rem;
  }

  .xl\:p-44 {
    padding: 11rem;
  }

  .xl\:p-48 {
    padding: 12rem;
  }

  .xl\:p-56 {
    padding: 14rem;
  }

  .xl\:p-60 {
    padding: 15rem;
  }

  .xl\:p-64 {
    padding: 16rem;
  }

  .xl\:p-80 {
    padding: 20rem;
  }

  .xl\:p-96 {
    padding: 24rem;
  }

  .xl\:p-120 {
    padding: 30rem;
  }

  .xl\:p-160 {
    padding: 40rem;
  }

  .xl\:p-px {
    padding: 1px;
  }

  .xl\:p-10\% {
    padding: 10%;
  }

  .xl\:p-20\% {
    padding: 20%;
  }

  .xl\:p-30\% {
    padding: 30%;
  }

  .xl\:p-40\% {
    padding: 40%;
  }

  .xl\:p-50\% {
    padding: 50%;
  }

  .xl\:p-60\% {
    padding: 60%;
  }

  .xl\:p-70\% {
    padding: 70%;
  }

  .xl\:p-80\% {
    padding: 80%;
  }

  .xl\:p-90\% {
    padding: 90%;
  }

  .xl\:p-1vw {
    padding: 1vw;
  }

  .xl\:p-2vw {
    padding: 2vw;
  }

  .xl\:p-3vw {
    padding: 3vw;
  }

  .xl\:p-4vw {
    padding: 4vw;
  }

  .xl\:p-5vw {
    padding: 5vw;
  }

  .xl\:p-6vw {
    padding: 6vw;
  }

  .xl\:p-7vw {
    padding: 7vw;
  }

  .xl\:p-8vw {
    padding: 8vw;
  }

  .xl\:p-9vw {
    padding: 9vw;
  }

  .xl\:p-10vw {
    padding: 10vw;
  }

  .xl\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .xl\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .xl\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .xl\:px-1 {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .xl\:py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .xl\:px-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .xl\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .xl\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .xl\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xl\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xl\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xl\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xl\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xl\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xl\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .xl\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .xl\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xl\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xl\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .xl\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .xl\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xl\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xl\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xl\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xl\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xl\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xl\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xl\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xl\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xl\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xl\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .xl\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .xl\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .xl\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .xl\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .xl\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .xl\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .xl\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .xl\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .xl\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .xl\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .xl\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xl\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .xl\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .xl\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .xl\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .xl\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .xl\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .xl\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .xl\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .xl\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .xl\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .xl\:py-120 {
    padding-top: 30rem;
    padding-bottom: 30rem;
  }

  .xl\:px-120 {
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .xl\:py-160 {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }

  .xl\:px-160 {
    padding-left: 40rem;
    padding-right: 40rem;
  }

  .xl\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xl\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .xl\:py-10\% {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .xl\:px-10\% {
    padding-left: 10%;
    padding-right: 10%;
  }

  .xl\:py-20\% {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .xl\:px-20\% {
    padding-left: 20%;
    padding-right: 20%;
  }

  .xl\:py-30\% {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  .xl\:px-30\% {
    padding-left: 30%;
    padding-right: 30%;
  }

  .xl\:py-40\% {
    padding-top: 40%;
    padding-bottom: 40%;
  }

  .xl\:px-40\% {
    padding-left: 40%;
    padding-right: 40%;
  }

  .xl\:py-50\% {
    padding-top: 50%;
    padding-bottom: 50%;
  }

  .xl\:px-50\% {
    padding-left: 50%;
    padding-right: 50%;
  }

  .xl\:py-60\% {
    padding-top: 60%;
    padding-bottom: 60%;
  }

  .xl\:px-60\% {
    padding-left: 60%;
    padding-right: 60%;
  }

  .xl\:py-70\% {
    padding-top: 70%;
    padding-bottom: 70%;
  }

  .xl\:px-70\% {
    padding-left: 70%;
    padding-right: 70%;
  }

  .xl\:py-80\% {
    padding-top: 80%;
    padding-bottom: 80%;
  }

  .xl\:px-80\% {
    padding-left: 80%;
    padding-right: 80%;
  }

  .xl\:py-90\% {
    padding-top: 90%;
    padding-bottom: 90%;
  }

  .xl\:px-90\% {
    padding-left: 90%;
    padding-right: 90%;
  }

  .xl\:py-1vw {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .xl\:px-1vw {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .xl\:py-2vw {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .xl\:px-2vw {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .xl\:py-3vw {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .xl\:px-3vw {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .xl\:py-4vw {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .xl\:px-4vw {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .xl\:py-5vw {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .xl\:px-5vw {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .xl\:py-6vw {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .xl\:px-6vw {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .xl\:py-7vw {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .xl\:px-7vw {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .xl\:py-8vw {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .xl\:px-8vw {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .xl\:py-9vw {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .xl\:px-9vw {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .xl\:py-10vw {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .xl\:px-10vw {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .xl\:pt-0 {
    padding-top: 0;
  }

  .xl\:pr-0 {
    padding-right: 0;
  }

  .xl\:pb-0 {
    padding-bottom: 0;
  }

  .xl\:pl-0 {
    padding-left: 0;
  }

  .xl\:pt-1 {
    padding-top: .25rem;
  }

  .xl\:pr-1 {
    padding-right: .25rem;
  }

  .xl\:pb-1 {
    padding-bottom: .25rem;
  }

  .xl\:pl-1 {
    padding-left: .25rem;
  }

  .xl\:pt-2 {
    padding-top: .5rem;
  }

  .xl\:pr-2 {
    padding-right: .5rem;
  }

  .xl\:pb-2 {
    padding-bottom: .5rem;
  }

  .xl\:pl-2 {
    padding-left: .5rem;
  }

  .xl\:pt-3 {
    padding-top: .75rem;
  }

  .xl\:pr-3 {
    padding-right: .75rem;
  }

  .xl\:pb-3 {
    padding-bottom: .75rem;
  }

  .xl\:pl-3 {
    padding-left: .75rem;
  }

  .xl\:pt-4 {
    padding-top: 1rem;
  }

  .xl\:pr-4 {
    padding-right: 1rem;
  }

  .xl\:pb-4 {
    padding-bottom: 1rem;
  }

  .xl\:pl-4 {
    padding-left: 1rem;
  }

  .xl\:pt-5 {
    padding-top: 1.25rem;
  }

  .xl\:pr-5 {
    padding-right: 1.25rem;
  }

  .xl\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .xl\:pl-5 {
    padding-left: 1.25rem;
  }

  .xl\:pt-6 {
    padding-top: 1.5rem;
  }

  .xl\:pr-6 {
    padding-right: 1.5rem;
  }

  .xl\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .xl\:pl-6 {
    padding-left: 1.5rem;
  }

  .xl\:pt-7 {
    padding-top: 1.75rem;
  }

  .xl\:pr-7 {
    padding-right: 1.75rem;
  }

  .xl\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .xl\:pl-7 {
    padding-left: 1.75rem;
  }

  .xl\:pt-8 {
    padding-top: 2rem;
  }

  .xl\:pr-8 {
    padding-right: 2rem;
  }

  .xl\:pb-8 {
    padding-bottom: 2rem;
  }

  .xl\:pl-8 {
    padding-left: 2rem;
  }

  .xl\:pt-9 {
    padding-top: 2.25rem;
  }

  .xl\:pr-9 {
    padding-right: 2.25rem;
  }

  .xl\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .xl\:pl-9 {
    padding-left: 2.25rem;
  }

  .xl\:pt-10 {
    padding-top: 2.5rem;
  }

  .xl\:pr-10 {
    padding-right: 2.5rem;
  }

  .xl\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .xl\:pl-10 {
    padding-left: 2.5rem;
  }

  .xl\:pt-12 {
    padding-top: 3rem;
  }

  .xl\:pr-12 {
    padding-right: 3rem;
  }

  .xl\:pb-12 {
    padding-bottom: 3rem;
  }

  .xl\:pl-12 {
    padding-left: 3rem;
  }

  .xl\:pt-16 {
    padding-top: 4rem;
  }

  .xl\:pr-16 {
    padding-right: 4rem;
  }

  .xl\:pb-16 {
    padding-bottom: 4rem;
  }

  .xl\:pl-16 {
    padding-left: 4rem;
  }

  .xl\:pt-20 {
    padding-top: 5rem;
  }

  .xl\:pr-20 {
    padding-right: 5rem;
  }

  .xl\:pb-20 {
    padding-bottom: 5rem;
  }

  .xl\:pl-20 {
    padding-left: 5rem;
  }

  .xl\:pt-24 {
    padding-top: 6rem;
  }

  .xl\:pr-24 {
    padding-right: 6rem;
  }

  .xl\:pb-24 {
    padding-bottom: 6rem;
  }

  .xl\:pl-24 {
    padding-left: 6rem;
  }

  .xl\:pt-28 {
    padding-top: 7rem;
  }

  .xl\:pr-28 {
    padding-right: 7rem;
  }

  .xl\:pb-28 {
    padding-bottom: 7rem;
  }

  .xl\:pl-28 {
    padding-left: 7rem;
  }

  .xl\:pt-32 {
    padding-top: 8rem;
  }

  .xl\:pr-32 {
    padding-right: 8rem;
  }

  .xl\:pb-32 {
    padding-bottom: 8rem;
  }

  .xl\:pl-32 {
    padding-left: 8rem;
  }

  .xl\:pt-36 {
    padding-top: 9rem;
  }

  .xl\:pr-36 {
    padding-right: 9rem;
  }

  .xl\:pb-36 {
    padding-bottom: 9rem;
  }

  .xl\:pl-36 {
    padding-left: 9rem;
  }

  .xl\:pt-40 {
    padding-top: 10rem;
  }

  .xl\:pr-40 {
    padding-right: 10rem;
  }

  .xl\:pb-40 {
    padding-bottom: 10rem;
  }

  .xl\:pl-40 {
    padding-left: 10rem;
  }

  .xl\:pt-44 {
    padding-top: 11rem;
  }

  .xl\:pr-44 {
    padding-right: 11rem;
  }

  .xl\:pb-44 {
    padding-bottom: 11rem;
  }

  .xl\:pl-44 {
    padding-left: 11rem;
  }

  .xl\:pt-48 {
    padding-top: 12rem;
  }

  .xl\:pr-48 {
    padding-right: 12rem;
  }

  .xl\:pb-48 {
    padding-bottom: 12rem;
  }

  .xl\:pl-48 {
    padding-left: 12rem;
  }

  .xl\:pt-56 {
    padding-top: 14rem;
  }

  .xl\:pr-56 {
    padding-right: 14rem;
  }

  .xl\:pb-56 {
    padding-bottom: 14rem;
  }

  .xl\:pl-56 {
    padding-left: 14rem;
  }

  .xl\:pt-60 {
    padding-top: 15rem;
  }

  .xl\:pr-60 {
    padding-right: 15rem;
  }

  .xl\:pb-60 {
    padding-bottom: 15rem;
  }

  .xl\:pl-60 {
    padding-left: 15rem;
  }

  .xl\:pt-64 {
    padding-top: 16rem;
  }

  .xl\:pr-64 {
    padding-right: 16rem;
  }

  .xl\:pb-64 {
    padding-bottom: 16rem;
  }

  .xl\:pl-64 {
    padding-left: 16rem;
  }

  .xl\:pt-80 {
    padding-top: 20rem;
  }

  .xl\:pr-80 {
    padding-right: 20rem;
  }

  .xl\:pb-80 {
    padding-bottom: 20rem;
  }

  .xl\:pl-80 {
    padding-left: 20rem;
  }

  .xl\:pt-96 {
    padding-top: 24rem;
  }

  .xl\:pr-96 {
    padding-right: 24rem;
  }

  .xl\:pb-96 {
    padding-bottom: 24rem;
  }

  .xl\:pl-96 {
    padding-left: 24rem;
  }

  .xl\:pt-120 {
    padding-top: 30rem;
  }

  .xl\:pr-120 {
    padding-right: 30rem;
  }

  .xl\:pb-120 {
    padding-bottom: 30rem;
  }

  .xl\:pl-120 {
    padding-left: 30rem;
  }

  .xl\:pt-160 {
    padding-top: 40rem;
  }

  .xl\:pr-160 {
    padding-right: 40rem;
  }

  .xl\:pb-160 {
    padding-bottom: 40rem;
  }

  .xl\:pl-160 {
    padding-left: 40rem;
  }

  .xl\:pt-px {
    padding-top: 1px;
  }

  .xl\:pr-px {
    padding-right: 1px;
  }

  .xl\:pb-px {
    padding-bottom: 1px;
  }

  .xl\:pl-px {
    padding-left: 1px;
  }

  .xl\:pt-10\% {
    padding-top: 10%;
  }

  .xl\:pr-10\% {
    padding-right: 10%;
  }

  .xl\:pb-10\% {
    padding-bottom: 10%;
  }

  .xl\:pl-10\% {
    padding-left: 10%;
  }

  .xl\:pt-20\% {
    padding-top: 20%;
  }

  .xl\:pr-20\% {
    padding-right: 20%;
  }

  .xl\:pb-20\% {
    padding-bottom: 20%;
  }

  .xl\:pl-20\% {
    padding-left: 20%;
  }

  .xl\:pt-30\% {
    padding-top: 30%;
  }

  .xl\:pr-30\% {
    padding-right: 30%;
  }

  .xl\:pb-30\% {
    padding-bottom: 30%;
  }

  .xl\:pl-30\% {
    padding-left: 30%;
  }

  .xl\:pt-40\% {
    padding-top: 40%;
  }

  .xl\:pr-40\% {
    padding-right: 40%;
  }

  .xl\:pb-40\% {
    padding-bottom: 40%;
  }

  .xl\:pl-40\% {
    padding-left: 40%;
  }

  .xl\:pt-50\% {
    padding-top: 50%;
  }

  .xl\:pr-50\% {
    padding-right: 50%;
  }

  .xl\:pb-50\% {
    padding-bottom: 50%;
  }

  .xl\:pl-50\% {
    padding-left: 50%;
  }

  .xl\:pt-60\% {
    padding-top: 60%;
  }

  .xl\:pr-60\% {
    padding-right: 60%;
  }

  .xl\:pb-60\% {
    padding-bottom: 60%;
  }

  .xl\:pl-60\% {
    padding-left: 60%;
  }

  .xl\:pt-70\% {
    padding-top: 70%;
  }

  .xl\:pr-70\% {
    padding-right: 70%;
  }

  .xl\:pb-70\% {
    padding-bottom: 70%;
  }

  .xl\:pl-70\% {
    padding-left: 70%;
  }

  .xl\:pt-80\% {
    padding-top: 80%;
  }

  .xl\:pr-80\% {
    padding-right: 80%;
  }

  .xl\:pb-80\% {
    padding-bottom: 80%;
  }

  .xl\:pl-80\% {
    padding-left: 80%;
  }

  .xl\:pt-90\% {
    padding-top: 90%;
  }

  .xl\:pr-90\% {
    padding-right: 90%;
  }

  .xl\:pb-90\% {
    padding-bottom: 90%;
  }

  .xl\:pl-90\% {
    padding-left: 90%;
  }

  .xl\:pt-1vw {
    padding-top: 1vw;
  }

  .xl\:pr-1vw {
    padding-right: 1vw;
  }

  .xl\:pb-1vw {
    padding-bottom: 1vw;
  }

  .xl\:pl-1vw {
    padding-left: 1vw;
  }

  .xl\:pt-2vw {
    padding-top: 2vw;
  }

  .xl\:pr-2vw {
    padding-right: 2vw;
  }

  .xl\:pb-2vw {
    padding-bottom: 2vw;
  }

  .xl\:pl-2vw {
    padding-left: 2vw;
  }

  .xl\:pt-3vw {
    padding-top: 3vw;
  }

  .xl\:pr-3vw {
    padding-right: 3vw;
  }

  .xl\:pb-3vw {
    padding-bottom: 3vw;
  }

  .xl\:pl-3vw {
    padding-left: 3vw;
  }

  .xl\:pt-4vw {
    padding-top: 4vw;
  }

  .xl\:pr-4vw {
    padding-right: 4vw;
  }

  .xl\:pb-4vw {
    padding-bottom: 4vw;
  }

  .xl\:pl-4vw {
    padding-left: 4vw;
  }

  .xl\:pt-5vw {
    padding-top: 5vw;
  }

  .xl\:pr-5vw {
    padding-right: 5vw;
  }

  .xl\:pb-5vw {
    padding-bottom: 5vw;
  }

  .xl\:pl-5vw {
    padding-left: 5vw;
  }

  .xl\:pt-6vw {
    padding-top: 6vw;
  }

  .xl\:pr-6vw {
    padding-right: 6vw;
  }

  .xl\:pb-6vw {
    padding-bottom: 6vw;
  }

  .xl\:pl-6vw {
    padding-left: 6vw;
  }

  .xl\:pt-7vw {
    padding-top: 7vw;
  }

  .xl\:pr-7vw {
    padding-right: 7vw;
  }

  .xl\:pb-7vw {
    padding-bottom: 7vw;
  }

  .xl\:pl-7vw {
    padding-left: 7vw;
  }

  .xl\:pt-8vw {
    padding-top: 8vw;
  }

  .xl\:pr-8vw {
    padding-right: 8vw;
  }

  .xl\:pb-8vw {
    padding-bottom: 8vw;
  }

  .xl\:pl-8vw {
    padding-left: 8vw;
  }

  .xl\:pt-9vw {
    padding-top: 9vw;
  }

  .xl\:pr-9vw {
    padding-right: 9vw;
  }

  .xl\:pb-9vw {
    padding-bottom: 9vw;
  }

  .xl\:pl-9vw {
    padding-left: 9vw;
  }

  .xl\:pt-10vw {
    padding-top: 10vw;
  }

  .xl\:pr-10vw {
    padding-right: 10vw;
  }

  .xl\:pb-10vw {
    padding-bottom: 10vw;
  }

  .xl\:pl-10vw {
    padding-left: 10vw;
  }

  .xl\:hover\:p-0:hover {
    padding: 0;
  }

  .xl\:hover\:p-1:hover {
    padding: .25rem;
  }

  .xl\:hover\:p-2:hover {
    padding: .5rem;
  }

  .xl\:hover\:p-3:hover {
    padding: .75rem;
  }

  .xl\:hover\:p-4:hover {
    padding: 1rem;
  }

  .xl\:hover\:p-5:hover {
    padding: 1.25rem;
  }

  .xl\:hover\:p-6:hover {
    padding: 1.5rem;
  }

  .xl\:hover\:p-7:hover {
    padding: 1.75rem;
  }

  .xl\:hover\:p-8:hover {
    padding: 2rem;
  }

  .xl\:hover\:p-9:hover {
    padding: 2.25rem;
  }

  .xl\:hover\:p-10:hover {
    padding: 2.5rem;
  }

  .xl\:hover\:p-12:hover {
    padding: 3rem;
  }

  .xl\:hover\:p-16:hover {
    padding: 4rem;
  }

  .xl\:hover\:p-20:hover {
    padding: 5rem;
  }

  .xl\:hover\:p-24:hover {
    padding: 6rem;
  }

  .xl\:hover\:p-28:hover {
    padding: 7rem;
  }

  .xl\:hover\:p-32:hover {
    padding: 8rem;
  }

  .xl\:hover\:p-36:hover {
    padding: 9rem;
  }

  .xl\:hover\:p-40:hover {
    padding: 10rem;
  }

  .xl\:hover\:p-44:hover {
    padding: 11rem;
  }

  .xl\:hover\:p-48:hover {
    padding: 12rem;
  }

  .xl\:hover\:p-56:hover {
    padding: 14rem;
  }

  .xl\:hover\:p-60:hover {
    padding: 15rem;
  }

  .xl\:hover\:p-64:hover {
    padding: 16rem;
  }

  .xl\:hover\:p-80:hover {
    padding: 20rem;
  }

  .xl\:hover\:p-96:hover {
    padding: 24rem;
  }

  .xl\:hover\:p-120:hover {
    padding: 30rem;
  }

  .xl\:hover\:p-160:hover {
    padding: 40rem;
  }

  .xl\:hover\:p-px:hover {
    padding: 1px;
  }

  .xl\:hover\:p-10\%:hover {
    padding: 10%;
  }

  .xl\:hover\:p-20\%:hover {
    padding: 20%;
  }

  .xl\:hover\:p-30\%:hover {
    padding: 30%;
  }

  .xl\:hover\:p-40\%:hover {
    padding: 40%;
  }

  .xl\:hover\:p-50\%:hover {
    padding: 50%;
  }

  .xl\:hover\:p-60\%:hover {
    padding: 60%;
  }

  .xl\:hover\:p-70\%:hover {
    padding: 70%;
  }

  .xl\:hover\:p-80\%:hover {
    padding: 80%;
  }

  .xl\:hover\:p-90\%:hover {
    padding: 90%;
  }

  .xl\:hover\:p-1vw:hover {
    padding: 1vw;
  }

  .xl\:hover\:p-2vw:hover {
    padding: 2vw;
  }

  .xl\:hover\:p-3vw:hover {
    padding: 3vw;
  }

  .xl\:hover\:p-4vw:hover {
    padding: 4vw;
  }

  .xl\:hover\:p-5vw:hover {
    padding: 5vw;
  }

  .xl\:hover\:p-6vw:hover {
    padding: 6vw;
  }

  .xl\:hover\:p-7vw:hover {
    padding: 7vw;
  }

  .xl\:hover\:p-8vw:hover {
    padding: 8vw;
  }

  .xl\:hover\:p-9vw:hover {
    padding: 9vw;
  }

  .xl\:hover\:p-10vw:hover {
    padding: 10vw;
  }

  .xl\:hover\:py-0:hover {
    padding-top: 0;
    padding-bottom: 0;
  }

  .xl\:hover\:px-0:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .xl\:hover\:py-1:hover {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .xl\:hover\:px-1:hover {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .xl\:hover\:py-2:hover {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .xl\:hover\:px-2:hover {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .xl\:hover\:py-3:hover {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .xl\:hover\:px-3:hover {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .xl\:hover\:py-4:hover {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .xl\:hover\:px-4:hover {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .xl\:hover\:py-5:hover {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .xl\:hover\:px-5:hover {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .xl\:hover\:py-6:hover {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .xl\:hover\:px-6:hover {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .xl\:hover\:py-7:hover {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .xl\:hover\:px-7:hover {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .xl\:hover\:py-8:hover {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .xl\:hover\:px-8:hover {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xl\:hover\:py-9:hover {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .xl\:hover\:px-9:hover {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .xl\:hover\:py-10:hover {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .xl\:hover\:px-10:hover {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xl\:hover\:py-12:hover {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .xl\:hover\:px-12:hover {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .xl\:hover\:py-16:hover {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .xl\:hover\:px-16:hover {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xl\:hover\:py-20:hover {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xl\:hover\:px-20:hover {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xl\:hover\:py-24:hover {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .xl\:hover\:px-24:hover {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xl\:hover\:py-28:hover {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .xl\:hover\:px-28:hover {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .xl\:hover\:py-32:hover {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .xl\:hover\:px-32:hover {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .xl\:hover\:py-36:hover {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .xl\:hover\:px-36:hover {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .xl\:hover\:py-40:hover {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .xl\:hover\:px-40:hover {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .xl\:hover\:py-44:hover {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .xl\:hover\:px-44:hover {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .xl\:hover\:py-48:hover {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .xl\:hover\:px-48:hover {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xl\:hover\:py-56:hover {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .xl\:hover\:px-56:hover {
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .xl\:hover\:py-60:hover {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .xl\:hover\:px-60:hover {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .xl\:hover\:py-64:hover {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .xl\:hover\:px-64:hover {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .xl\:hover\:py-80:hover {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .xl\:hover\:px-80:hover {
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .xl\:hover\:py-96:hover {
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .xl\:hover\:px-96:hover {
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .xl\:hover\:py-120:hover {
    padding-top: 30rem;
    padding-bottom: 30rem;
  }

  .xl\:hover\:px-120:hover {
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .xl\:hover\:py-160:hover {
    padding-top: 40rem;
    padding-bottom: 40rem;
  }

  .xl\:hover\:px-160:hover {
    padding-left: 40rem;
    padding-right: 40rem;
  }

  .xl\:hover\:py-px:hover {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xl\:hover\:px-px:hover {
    padding-left: 1px;
    padding-right: 1px;
  }

  .xl\:hover\:py-10\%:hover {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .xl\:hover\:px-10\%:hover {
    padding-left: 10%;
    padding-right: 10%;
  }

  .xl\:hover\:py-20\%:hover {
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .xl\:hover\:px-20\%:hover {
    padding-left: 20%;
    padding-right: 20%;
  }

  .xl\:hover\:py-30\%:hover {
    padding-top: 30%;
    padding-bottom: 30%;
  }

  .xl\:hover\:px-30\%:hover {
    padding-left: 30%;
    padding-right: 30%;
  }

  .xl\:hover\:py-40\%:hover {
    padding-top: 40%;
    padding-bottom: 40%;
  }

  .xl\:hover\:px-40\%:hover {
    padding-left: 40%;
    padding-right: 40%;
  }

  .xl\:hover\:py-50\%:hover {
    padding-top: 50%;
    padding-bottom: 50%;
  }

  .xl\:hover\:px-50\%:hover {
    padding-left: 50%;
    padding-right: 50%;
  }

  .xl\:hover\:py-60\%:hover {
    padding-top: 60%;
    padding-bottom: 60%;
  }

  .xl\:hover\:px-60\%:hover {
    padding-left: 60%;
    padding-right: 60%;
  }

  .xl\:hover\:py-70\%:hover {
    padding-top: 70%;
    padding-bottom: 70%;
  }

  .xl\:hover\:px-70\%:hover {
    padding-left: 70%;
    padding-right: 70%;
  }

  .xl\:hover\:py-80\%:hover {
    padding-top: 80%;
    padding-bottom: 80%;
  }

  .xl\:hover\:px-80\%:hover {
    padding-left: 80%;
    padding-right: 80%;
  }

  .xl\:hover\:py-90\%:hover {
    padding-top: 90%;
    padding-bottom: 90%;
  }

  .xl\:hover\:px-90\%:hover {
    padding-left: 90%;
    padding-right: 90%;
  }

  .xl\:hover\:py-1vw:hover {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .xl\:hover\:px-1vw:hover {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .xl\:hover\:py-2vw:hover {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .xl\:hover\:px-2vw:hover {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .xl\:hover\:py-3vw:hover {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .xl\:hover\:px-3vw:hover {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .xl\:hover\:py-4vw:hover {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .xl\:hover\:px-4vw:hover {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .xl\:hover\:py-5vw:hover {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .xl\:hover\:px-5vw:hover {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .xl\:hover\:py-6vw:hover {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .xl\:hover\:px-6vw:hover {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .xl\:hover\:py-7vw:hover {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .xl\:hover\:px-7vw:hover {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .xl\:hover\:py-8vw:hover {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .xl\:hover\:px-8vw:hover {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .xl\:hover\:py-9vw:hover {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .xl\:hover\:px-9vw:hover {
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .xl\:hover\:py-10vw:hover {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .xl\:hover\:px-10vw:hover {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .xl\:hover\:pt-0:hover {
    padding-top: 0;
  }

  .xl\:hover\:pr-0:hover {
    padding-right: 0;
  }

  .xl\:hover\:pb-0:hover {
    padding-bottom: 0;
  }

  .xl\:hover\:pl-0:hover {
    padding-left: 0;
  }

  .xl\:hover\:pt-1:hover {
    padding-top: .25rem;
  }

  .xl\:hover\:pr-1:hover {
    padding-right: .25rem;
  }

  .xl\:hover\:pb-1:hover {
    padding-bottom: .25rem;
  }

  .xl\:hover\:pl-1:hover {
    padding-left: .25rem;
  }

  .xl\:hover\:pt-2:hover {
    padding-top: .5rem;
  }

  .xl\:hover\:pr-2:hover {
    padding-right: .5rem;
  }

  .xl\:hover\:pb-2:hover {
    padding-bottom: .5rem;
  }

  .xl\:hover\:pl-2:hover {
    padding-left: .5rem;
  }

  .xl\:hover\:pt-3:hover {
    padding-top: .75rem;
  }

  .xl\:hover\:pr-3:hover {
    padding-right: .75rem;
  }

  .xl\:hover\:pb-3:hover {
    padding-bottom: .75rem;
  }

  .xl\:hover\:pl-3:hover {
    padding-left: .75rem;
  }

  .xl\:hover\:pt-4:hover {
    padding-top: 1rem;
  }

  .xl\:hover\:pr-4:hover {
    padding-right: 1rem;
  }

  .xl\:hover\:pb-4:hover {
    padding-bottom: 1rem;
  }

  .xl\:hover\:pl-4:hover {
    padding-left: 1rem;
  }

  .xl\:hover\:pt-5:hover {
    padding-top: 1.25rem;
  }

  .xl\:hover\:pr-5:hover {
    padding-right: 1.25rem;
  }

  .xl\:hover\:pb-5:hover {
    padding-bottom: 1.25rem;
  }

  .xl\:hover\:pl-5:hover {
    padding-left: 1.25rem;
  }

  .xl\:hover\:pt-6:hover {
    padding-top: 1.5rem;
  }

  .xl\:hover\:pr-6:hover {
    padding-right: 1.5rem;
  }

  .xl\:hover\:pb-6:hover {
    padding-bottom: 1.5rem;
  }

  .xl\:hover\:pl-6:hover {
    padding-left: 1.5rem;
  }

  .xl\:hover\:pt-7:hover {
    padding-top: 1.75rem;
  }

  .xl\:hover\:pr-7:hover {
    padding-right: 1.75rem;
  }

  .xl\:hover\:pb-7:hover {
    padding-bottom: 1.75rem;
  }

  .xl\:hover\:pl-7:hover {
    padding-left: 1.75rem;
  }

  .xl\:hover\:pt-8:hover {
    padding-top: 2rem;
  }

  .xl\:hover\:pr-8:hover {
    padding-right: 2rem;
  }

  .xl\:hover\:pb-8:hover {
    padding-bottom: 2rem;
  }

  .xl\:hover\:pl-8:hover {
    padding-left: 2rem;
  }

  .xl\:hover\:pt-9:hover {
    padding-top: 2.25rem;
  }

  .xl\:hover\:pr-9:hover {
    padding-right: 2.25rem;
  }

  .xl\:hover\:pb-9:hover {
    padding-bottom: 2.25rem;
  }

  .xl\:hover\:pl-9:hover {
    padding-left: 2.25rem;
  }

  .xl\:hover\:pt-10:hover {
    padding-top: 2.5rem;
  }

  .xl\:hover\:pr-10:hover {
    padding-right: 2.5rem;
  }

  .xl\:hover\:pb-10:hover {
    padding-bottom: 2.5rem;
  }

  .xl\:hover\:pl-10:hover {
    padding-left: 2.5rem;
  }

  .xl\:hover\:pt-12:hover {
    padding-top: 3rem;
  }

  .xl\:hover\:pr-12:hover {
    padding-right: 3rem;
  }

  .xl\:hover\:pb-12:hover {
    padding-bottom: 3rem;
  }

  .xl\:hover\:pl-12:hover {
    padding-left: 3rem;
  }

  .xl\:hover\:pt-16:hover {
    padding-top: 4rem;
  }

  .xl\:hover\:pr-16:hover {
    padding-right: 4rem;
  }

  .xl\:hover\:pb-16:hover {
    padding-bottom: 4rem;
  }

  .xl\:hover\:pl-16:hover {
    padding-left: 4rem;
  }

  .xl\:hover\:pt-20:hover {
    padding-top: 5rem;
  }

  .xl\:hover\:pr-20:hover {
    padding-right: 5rem;
  }

  .xl\:hover\:pb-20:hover {
    padding-bottom: 5rem;
  }

  .xl\:hover\:pl-20:hover {
    padding-left: 5rem;
  }

  .xl\:hover\:pt-24:hover {
    padding-top: 6rem;
  }

  .xl\:hover\:pr-24:hover {
    padding-right: 6rem;
  }

  .xl\:hover\:pb-24:hover {
    padding-bottom: 6rem;
  }

  .xl\:hover\:pl-24:hover {
    padding-left: 6rem;
  }

  .xl\:hover\:pt-28:hover {
    padding-top: 7rem;
  }

  .xl\:hover\:pr-28:hover {
    padding-right: 7rem;
  }

  .xl\:hover\:pb-28:hover {
    padding-bottom: 7rem;
  }

  .xl\:hover\:pl-28:hover {
    padding-left: 7rem;
  }

  .xl\:hover\:pt-32:hover {
    padding-top: 8rem;
  }

  .xl\:hover\:pr-32:hover {
    padding-right: 8rem;
  }

  .xl\:hover\:pb-32:hover {
    padding-bottom: 8rem;
  }

  .xl\:hover\:pl-32:hover {
    padding-left: 8rem;
  }

  .xl\:hover\:pt-36:hover {
    padding-top: 9rem;
  }

  .xl\:hover\:pr-36:hover {
    padding-right: 9rem;
  }

  .xl\:hover\:pb-36:hover {
    padding-bottom: 9rem;
  }

  .xl\:hover\:pl-36:hover {
    padding-left: 9rem;
  }

  .xl\:hover\:pt-40:hover {
    padding-top: 10rem;
  }

  .xl\:hover\:pr-40:hover {
    padding-right: 10rem;
  }

  .xl\:hover\:pb-40:hover {
    padding-bottom: 10rem;
  }

  .xl\:hover\:pl-40:hover {
    padding-left: 10rem;
  }

  .xl\:hover\:pt-44:hover {
    padding-top: 11rem;
  }

  .xl\:hover\:pr-44:hover {
    padding-right: 11rem;
  }

  .xl\:hover\:pb-44:hover {
    padding-bottom: 11rem;
  }

  .xl\:hover\:pl-44:hover {
    padding-left: 11rem;
  }

  .xl\:hover\:pt-48:hover {
    padding-top: 12rem;
  }

  .xl\:hover\:pr-48:hover {
    padding-right: 12rem;
  }

  .xl\:hover\:pb-48:hover {
    padding-bottom: 12rem;
  }

  .xl\:hover\:pl-48:hover {
    padding-left: 12rem;
  }

  .xl\:hover\:pt-56:hover {
    padding-top: 14rem;
  }

  .xl\:hover\:pr-56:hover {
    padding-right: 14rem;
  }

  .xl\:hover\:pb-56:hover {
    padding-bottom: 14rem;
  }

  .xl\:hover\:pl-56:hover {
    padding-left: 14rem;
  }

  .xl\:hover\:pt-60:hover {
    padding-top: 15rem;
  }

  .xl\:hover\:pr-60:hover {
    padding-right: 15rem;
  }

  .xl\:hover\:pb-60:hover {
    padding-bottom: 15rem;
  }

  .xl\:hover\:pl-60:hover {
    padding-left: 15rem;
  }

  .xl\:hover\:pt-64:hover {
    padding-top: 16rem;
  }

  .xl\:hover\:pr-64:hover {
    padding-right: 16rem;
  }

  .xl\:hover\:pb-64:hover {
    padding-bottom: 16rem;
  }

  .xl\:hover\:pl-64:hover {
    padding-left: 16rem;
  }

  .xl\:hover\:pt-80:hover {
    padding-top: 20rem;
  }

  .xl\:hover\:pr-80:hover {
    padding-right: 20rem;
  }

  .xl\:hover\:pb-80:hover {
    padding-bottom: 20rem;
  }

  .xl\:hover\:pl-80:hover {
    padding-left: 20rem;
  }

  .xl\:hover\:pt-96:hover {
    padding-top: 24rem;
  }

  .xl\:hover\:pr-96:hover {
    padding-right: 24rem;
  }

  .xl\:hover\:pb-96:hover {
    padding-bottom: 24rem;
  }

  .xl\:hover\:pl-96:hover {
    padding-left: 24rem;
  }

  .xl\:hover\:pt-120:hover {
    padding-top: 30rem;
  }

  .xl\:hover\:pr-120:hover {
    padding-right: 30rem;
  }

  .xl\:hover\:pb-120:hover {
    padding-bottom: 30rem;
  }

  .xl\:hover\:pl-120:hover {
    padding-left: 30rem;
  }

  .xl\:hover\:pt-160:hover {
    padding-top: 40rem;
  }

  .xl\:hover\:pr-160:hover {
    padding-right: 40rem;
  }

  .xl\:hover\:pb-160:hover {
    padding-bottom: 40rem;
  }

  .xl\:hover\:pl-160:hover {
    padding-left: 40rem;
  }

  .xl\:hover\:pt-px:hover {
    padding-top: 1px;
  }

  .xl\:hover\:pr-px:hover {
    padding-right: 1px;
  }

  .xl\:hover\:pb-px:hover {
    padding-bottom: 1px;
  }

  .xl\:hover\:pl-px:hover {
    padding-left: 1px;
  }

  .xl\:hover\:pt-10\%:hover {
    padding-top: 10%;
  }

  .xl\:hover\:pr-10\%:hover {
    padding-right: 10%;
  }

  .xl\:hover\:pb-10\%:hover {
    padding-bottom: 10%;
  }

  .xl\:hover\:pl-10\%:hover {
    padding-left: 10%;
  }

  .xl\:hover\:pt-20\%:hover {
    padding-top: 20%;
  }

  .xl\:hover\:pr-20\%:hover {
    padding-right: 20%;
  }

  .xl\:hover\:pb-20\%:hover {
    padding-bottom: 20%;
  }

  .xl\:hover\:pl-20\%:hover {
    padding-left: 20%;
  }

  .xl\:hover\:pt-30\%:hover {
    padding-top: 30%;
  }

  .xl\:hover\:pr-30\%:hover {
    padding-right: 30%;
  }

  .xl\:hover\:pb-30\%:hover {
    padding-bottom: 30%;
  }

  .xl\:hover\:pl-30\%:hover {
    padding-left: 30%;
  }

  .xl\:hover\:pt-40\%:hover {
    padding-top: 40%;
  }

  .xl\:hover\:pr-40\%:hover {
    padding-right: 40%;
  }

  .xl\:hover\:pb-40\%:hover {
    padding-bottom: 40%;
  }

  .xl\:hover\:pl-40\%:hover {
    padding-left: 40%;
  }

  .xl\:hover\:pt-50\%:hover {
    padding-top: 50%;
  }

  .xl\:hover\:pr-50\%:hover {
    padding-right: 50%;
  }

  .xl\:hover\:pb-50\%:hover {
    padding-bottom: 50%;
  }

  .xl\:hover\:pl-50\%:hover {
    padding-left: 50%;
  }

  .xl\:hover\:pt-60\%:hover {
    padding-top: 60%;
  }

  .xl\:hover\:pr-60\%:hover {
    padding-right: 60%;
  }

  .xl\:hover\:pb-60\%:hover {
    padding-bottom: 60%;
  }

  .xl\:hover\:pl-60\%:hover {
    padding-left: 60%;
  }

  .xl\:hover\:pt-70\%:hover {
    padding-top: 70%;
  }

  .xl\:hover\:pr-70\%:hover {
    padding-right: 70%;
  }

  .xl\:hover\:pb-70\%:hover {
    padding-bottom: 70%;
  }

  .xl\:hover\:pl-70\%:hover {
    padding-left: 70%;
  }

  .xl\:hover\:pt-80\%:hover {
    padding-top: 80%;
  }

  .xl\:hover\:pr-80\%:hover {
    padding-right: 80%;
  }

  .xl\:hover\:pb-80\%:hover {
    padding-bottom: 80%;
  }

  .xl\:hover\:pl-80\%:hover {
    padding-left: 80%;
  }

  .xl\:hover\:pt-90\%:hover {
    padding-top: 90%;
  }

  .xl\:hover\:pr-90\%:hover {
    padding-right: 90%;
  }

  .xl\:hover\:pb-90\%:hover {
    padding-bottom: 90%;
  }

  .xl\:hover\:pl-90\%:hover {
    padding-left: 90%;
  }

  .xl\:hover\:pt-1vw:hover {
    padding-top: 1vw;
  }

  .xl\:hover\:pr-1vw:hover {
    padding-right: 1vw;
  }

  .xl\:hover\:pb-1vw:hover {
    padding-bottom: 1vw;
  }

  .xl\:hover\:pl-1vw:hover {
    padding-left: 1vw;
  }

  .xl\:hover\:pt-2vw:hover {
    padding-top: 2vw;
  }

  .xl\:hover\:pr-2vw:hover {
    padding-right: 2vw;
  }

  .xl\:hover\:pb-2vw:hover {
    padding-bottom: 2vw;
  }

  .xl\:hover\:pl-2vw:hover {
    padding-left: 2vw;
  }

  .xl\:hover\:pt-3vw:hover {
    padding-top: 3vw;
  }

  .xl\:hover\:pr-3vw:hover {
    padding-right: 3vw;
  }

  .xl\:hover\:pb-3vw:hover {
    padding-bottom: 3vw;
  }

  .xl\:hover\:pl-3vw:hover {
    padding-left: 3vw;
  }

  .xl\:hover\:pt-4vw:hover {
    padding-top: 4vw;
  }

  .xl\:hover\:pr-4vw:hover {
    padding-right: 4vw;
  }

  .xl\:hover\:pb-4vw:hover {
    padding-bottom: 4vw;
  }

  .xl\:hover\:pl-4vw:hover {
    padding-left: 4vw;
  }

  .xl\:hover\:pt-5vw:hover {
    padding-top: 5vw;
  }

  .xl\:hover\:pr-5vw:hover {
    padding-right: 5vw;
  }

  .xl\:hover\:pb-5vw:hover {
    padding-bottom: 5vw;
  }

  .xl\:hover\:pl-5vw:hover {
    padding-left: 5vw;
  }

  .xl\:hover\:pt-6vw:hover {
    padding-top: 6vw;
  }

  .xl\:hover\:pr-6vw:hover {
    padding-right: 6vw;
  }

  .xl\:hover\:pb-6vw:hover {
    padding-bottom: 6vw;
  }

  .xl\:hover\:pl-6vw:hover {
    padding-left: 6vw;
  }

  .xl\:hover\:pt-7vw:hover {
    padding-top: 7vw;
  }

  .xl\:hover\:pr-7vw:hover {
    padding-right: 7vw;
  }

  .xl\:hover\:pb-7vw:hover {
    padding-bottom: 7vw;
  }

  .xl\:hover\:pl-7vw:hover {
    padding-left: 7vw;
  }

  .xl\:hover\:pt-8vw:hover {
    padding-top: 8vw;
  }

  .xl\:hover\:pr-8vw:hover {
    padding-right: 8vw;
  }

  .xl\:hover\:pb-8vw:hover {
    padding-bottom: 8vw;
  }

  .xl\:hover\:pl-8vw:hover {
    padding-left: 8vw;
  }

  .xl\:hover\:pt-9vw:hover {
    padding-top: 9vw;
  }

  .xl\:hover\:pr-9vw:hover {
    padding-right: 9vw;
  }

  .xl\:hover\:pb-9vw:hover {
    padding-bottom: 9vw;
  }

  .xl\:hover\:pl-9vw:hover {
    padding-left: 9vw;
  }

  .xl\:hover\:pt-10vw:hover {
    padding-top: 10vw;
  }

  .xl\:hover\:pr-10vw:hover {
    padding-right: 10vw;
  }

  .xl\:hover\:pb-10vw:hover {
    padding-bottom: 10vw;
  }

  .xl\:hover\:pl-10vw:hover {
    padding-left: 10vw;
  }

  .xl\:pointer-events-none {
    pointer-events: none;
  }

  .xl\:pointer-events-auto {
    pointer-events: auto;
  }

  .xl\:static {
    position: static;
  }

  .xl\:fixed {
    position: fixed;
  }

  .xl\:absolute {
    position: absolute;
  }

  .xl\:relative {
    position: relative;
  }

  .xl\:sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .xl\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .xl\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .xl\:pin-y {
    top: 0;
    bottom: 0;
  }

  .xl\:pin-x {
    right: 0;
    left: 0;
  }

  .xl\:pin-t {
    top: 0;
  }

  .xl\:pin-r {
    right: 0;
  }

  .xl\:pin-b {
    bottom: 0;
  }

  .xl\:pin-l {
    left: 0;
  }

  .xl\:hover\:static:hover {
    position: static;
  }

  .xl\:hover\:fixed:hover {
    position: fixed;
  }

  .xl\:hover\:absolute:hover {
    position: absolute;
  }

  .xl\:hover\:relative:hover {
    position: relative;
  }

  .xl\:hover\:sticky:hover {
    position: -webkit-sticky;
    position: sticky;
  }

  .xl\:hover\:pin-none:hover {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .xl\:hover\:pin:hover {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .xl\:hover\:pin-y:hover {
    top: 0;
    bottom: 0;
  }

  .xl\:hover\:pin-x:hover {
    right: 0;
    left: 0;
  }

  .xl\:hover\:pin-t:hover {
    top: 0;
  }

  .xl\:hover\:pin-r:hover {
    right: 0;
  }

  .xl\:hover\:pin-b:hover {
    bottom: 0;
  }

  .xl\:hover\:pin-l:hover {
    left: 0;
  }

  .xl\:resize-none {
    resize: none;
  }

  .xl\:resize-y {
    resize: vertical;
  }

  .xl\:resize-x {
    resize: horizontal;
  }

  .xl\:resize {
    resize: both;
  }

  .xl\:shadow {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  }

  .xl\:shadow-md {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  }

  .xl\:shadow-lg {
    box-shadow: 0 0 100px rgba(0, 0, 0, .15);
  }

  .xl\:shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
  }

  .xl\:shadow-none {
    box-shadow: none;
  }

  .xl\:hover\:shadow:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  }

  .xl\:hover\:shadow-md:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
  }

  .xl\:hover\:shadow-lg:hover {
    box-shadow: 0 0 100px rgba(0, 0, 0, .15);
  }

  .xl\:hover\:shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
  }

  .xl\:hover\:shadow-none:hover {
    box-shadow: none;
  }

  .xl\:text-left {
    text-align: left;
  }

  .xl\:text-center {
    text-align: center;
  }

  .xl\:text-right {
    text-align: right;
  }

  .xl\:text-justify {
    text-align: justify;
  }

  .xl\:text-transparent {
    color: transparent;
  }

  .xl\:text-currentColor {
    color: currentColor;
  }

  .xl\:text-black {
    color: #222;
  }

  .xl\:text-black-10 {
    color: rgba(0, 0, 0, .1);
  }

  .xl\:text-black-20 {
    color: rgba(0, 0, 0, .2);
  }

  .xl\:text-black-30 {
    color: rgba(0, 0, 0, .3);
  }

  .xl\:text-black-40 {
    color: rgba(0, 0, 0, .4);
  }

  .xl\:text-black-50 {
    color: rgba(0, 0, 0, .5);
  }

  .xl\:text-black-60 {
    color: rgba(0, 0, 0, .6);
  }

  .xl\:text-black-70 {
    color: rgba(0, 0, 0, .7);
  }

  .xl\:text-black-80 {
    color: rgba(0, 0, 0, .8);
  }

  .xl\:text-black-90 {
    color: rgba(0, 0, 0, .9);
  }

  .xl\:text-black-1 {
    color: #313131;
  }

  .xl\:text-white {
    color: #fff;
  }

  .xl\:text-blue {
    color: #0277bd;
  }

  .xl\:text-dark-blue {
    color: #0277bd;
  }

  .xl\:text-blue-1 {
    color: #17214a;
  }

  .xl\:text-light-blue {
    color: #0277bd;
  }

  .xl\:text-red {
    color: #cb001c;
  }

  .xl\:text-green {
    color: #00bea0;
  }

  .xl\:text-purple {
    color: #5a80d1;
  }

  .xl\:text-orange {
    color: #ff9a0a;
  }

  .xl\:text-grey {
    color: #929a9d;
  }

  .xl\:text-grey-light {
    color: #e2e2e2;
  }

  .xl\:text-grey-1 {
    color: #f2f3f3;
  }

  .xl\:text-grey-2 {
    color: #c2c6c8;
  }

  .xl\:text-grey-3 {
    color: #6b7375;
  }

  .xl\:text-grey-4 {
    color: #465052;
  }

  .xl\:text-grey-5 {
    color: #828688;
  }

  .xl\:text-sd-red {
    color: #ed1c24;
  }

  .xl\:text-light-blue-1 {
    color: #21b8de;
  }

  .xl\:text-dark-blue-1 {
    color: #0277bd;
  }

  .xl\:text-dark-orange {
    color: #df8403;
  }

  .xl\:text-g-blue {
    color: #17214a;
  }

  .xl\:text-g-blue-1 {
    color: #556d88;
  }

  .xl\:text-g-blue-2 {
    color: #3c4c65;
  }

  .xl\:text-g-blue-3 {
    color: #222e4d;
  }

  .xl\:hover\:text-transparent:hover {
    color: transparent;
  }

  .xl\:hover\:text-currentColor:hover {
    color: currentColor;
  }

  .xl\:hover\:text-black:hover {
    color: #222;
  }

  .xl\:hover\:text-black-10:hover {
    color: rgba(0, 0, 0, .1);
  }

  .xl\:hover\:text-black-20:hover {
    color: rgba(0, 0, 0, .2);
  }

  .xl\:hover\:text-black-30:hover {
    color: rgba(0, 0, 0, .3);
  }

  .xl\:hover\:text-black-40:hover {
    color: rgba(0, 0, 0, .4);
  }

  .xl\:hover\:text-black-50:hover {
    color: rgba(0, 0, 0, .5);
  }

  .xl\:hover\:text-black-60:hover {
    color: rgba(0, 0, 0, .6);
  }

  .xl\:hover\:text-black-70:hover {
    color: rgba(0, 0, 0, .7);
  }

  .xl\:hover\:text-black-80:hover {
    color: rgba(0, 0, 0, .8);
  }

  .xl\:hover\:text-black-90:hover {
    color: rgba(0, 0, 0, .9);
  }

  .xl\:hover\:text-black-1:hover {
    color: #313131;
  }

  .xl\:hover\:text-white:hover {
    color: #fff;
  }

  .xl\:hover\:text-blue:hover {
    color: #0277bd;
  }

  .xl\:hover\:text-dark-blue:hover {
    color: #0277bd;
  }

  .xl\:hover\:text-blue-1:hover {
    color: #17214a;
  }

  .xl\:hover\:text-light-blue:hover {
    color: #0277bd;
  }

  .xl\:hover\:text-red:hover {
    color: #cb001c;
  }

  .xl\:hover\:text-green:hover {
    color: #00bea0;
  }

  .xl\:hover\:text-purple:hover {
    color: #5a80d1;
  }

  .xl\:hover\:text-orange:hover {
    color: #ff9a0a;
  }

  .xl\:hover\:text-grey:hover {
    color: #929a9d;
  }

  .xl\:hover\:text-grey-light:hover {
    color: #e2e2e2;
  }

  .xl\:hover\:text-grey-1:hover {
    color: #f2f3f3;
  }

  .xl\:hover\:text-grey-2:hover {
    color: #c2c6c8;
  }

  .xl\:hover\:text-grey-3:hover {
    color: #6b7375;
  }

  .xl\:hover\:text-grey-4:hover {
    color: #465052;
  }

  .xl\:hover\:text-grey-5:hover {
    color: #828688;
  }

  .xl\:hover\:text-sd-red:hover {
    color: #ed1c24;
  }

  .xl\:hover\:text-light-blue-1:hover {
    color: #21b8de;
  }

  .xl\:hover\:text-dark-blue-1:hover {
    color: #0277bd;
  }

  .xl\:hover\:text-dark-orange:hover {
    color: #df8403;
  }

  .xl\:hover\:text-g-blue:hover {
    color: #17214a;
  }

  .xl\:hover\:text-g-blue-1:hover {
    color: #556d88;
  }

  .xl\:hover\:text-g-blue-2:hover {
    color: #3c4c65;
  }

  .xl\:hover\:text-g-blue-3:hover {
    color: #222e4d;
  }

  .xl\:text-xxxs {
    font-size: .625rem;;
  }

  .xl\:text-xxs {
    font-size: .75rem;
  }

  .xl\:text-xs {
    font-size: .875rem;
  }

  .xl\:text-sm {
    font-size: 1rem;
  }

  .xl\:text-base {
    font-size: 1.125rem;
  }

  .xl\:text-lg {
    font-size: 1.25rem;
  }

  .xl\:text-2lg {
    font-size: 1.25rem;
  }

  .xl\:text-xl {
    font-size: 1.5rem;
  }

  .xl\:text-1-5xl {
    font-size: 1.625rem;
  }

  .xl\:text-2xl {
    font-size: 1.75rem;
  }

  .xl\:text-2-5xl {
    font-size: 1.875rem;
  }

  .xl\:text-3xl {
    font-size: 2rem;
  }

  .xl\:text-4xl {
    font-size: 2.125rem;
  }

  .xl\:text-5xl {
    font-size: 2.25rem;
  }

  .xl\:text-6xl {
    font-size: 3.375rem;
  }

  .xl\:text-7xl {
    font-size: 4.125rem;
  }

  .xl\:italic {
    font-style: italic;
  }

  .xl\:roman {
    font-style: normal;
  }

  .xl\:uppercase {
    text-transform: uppercase;
  }

  .xl\:lowercase {
    text-transform: lowercase;
  }

  .xl\:capitalize {
    text-transform: capitalize;
  }

  .xl\:normal-case {
    text-transform: none;
  }

  .xl\:underline {
    text-decoration: underline;
  }

  .xl\:line-through {
    text-decoration: line-through;
  }

  .xl\:no-underline {
    text-decoration: none;
  }

  .xl\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xl\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xl\:hover\:italic:hover {
    font-style: italic;
  }

  .xl\:hover\:roman:hover {
    font-style: normal;
  }

  .xl\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .xl\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .xl\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .xl\:hover\:normal-case:hover {
    text-transform: none;
  }

  .xl\:hover\:underline:hover {
    text-decoration: underline;
  }

  .xl\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .xl\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .xl\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xl\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .xl\:tracking-tight {
    letter-spacing: -0.05em;
  }

  .xl\:tracking-normal {
    letter-spacing: 0;
  }

  .xl\:tracking-wide {
    letter-spacing: .05em;
  }

  .xl\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .xl\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .xl\:align-baseline {
    vertical-align: baseline;
  }

  .xl\:align-top {
    vertical-align: top;
  }

  .xl\:align-middle {
    vertical-align: middle;
  }

  .xl\:align-bottom {
    vertical-align: bottom;
  }

  .xl\:align-text-top {
    vertical-align: text-top;
  }

  .xl\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .xl\:visible {
    visibility: visible;
  }

  .xl\:invisible {
    visibility: hidden;
  }

  .xl\:whitespace-normal {
    white-space: normal;
  }

  .xl\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .xl\:whitespace-pre {
    white-space: pre;
  }

  .xl\:whitespace-pre-line {
    white-space: pre-line;
  }

  .xl\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .xl\:break-words {
    word-wrap: break-word;
  }

  .xl\:break-normal {
    word-wrap: normal;
  }

  .xl\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .xl\:w-0 {
    width: 0;
  }

  .xl\:w-1 {
    width: .25rem;
  }

  .xl\:w-2 {
    width: .5rem;
  }

  .xl\:w-3 {
    width: .75rem;
  }

  .xl\:w-4 {
    width: 1rem;
  }

  .xl\:w-5 {
    width: 1.25rem;
  }

  .xl\:w-6 {
    width: 1.5rem;
  }

  .xl\:w-7 {
    width: 1.75rem;
  }

  .xl\:w-8 {
    width: 2rem;
  }

  .xl\:w-9 {
    width: 2.25rem;
  }

  .xl\:w-10 {
    width: 2.5rem;
  }

  .xl\:w-12 {
    width: 3rem;
  }

  .xl\:w-14 {
    width: 3.5rem;
  }

  .xl\:w-16 {
    width: 4rem;
  }

  .xl\:w-24 {
    width: 6rem;
  }

  .xl\:w-32 {
    width: 8rem;
  }

  .xl\:w-40 {
    width: 10rem;
  }

  .xl\:w-48 {
    width: 12rem;
  }

  .xl\:w-64 {
    width: 16rem;
  }

  .xl\:w-70 {
    width: 18rem;
  }

  .xl\:w-80 {
    width: 20rem;
  }

  .xl\:w-96 {
    width: 24rem;
  }

  .xl\:w-112 {
    width: 28rem;
  }

  .xl\:w-128 {
    width: 32rem;
  }

  .xl\:w-auto {
    width: auto;
  }

  .xl\:w-px {
    width: 1px;
  }

  .xl\:w-full {
    width: 100%;
  }

  .xl\:w-half {
    width: 50%;
  }

  .xl\:w-100px {
    width: 100px;
  }

  .xl\:w-200px {
    width: 200px;
  }

  .xl\:w-300px {
    width: 300px;
  }

  .xl\:w-400px {
    width: 400px;
  }

  .xl\:w-500px {
    width: 500px;
  }

  .xl\:w-576px {
    width: 576px;
  }

  .xl\:w-600px {
    width: 600px;
  }

  .xl\:w-700px {
    width: 700px;
  }

  .xl\:w-768px {
    width: 768px;
  }

  .xl\:w-800px {
    width: 800px;
  }

  .xl\:w-900px {
    width: 900px;
  }

  .xl\:w-992px {
    width: 992px;
  }

  .xl\:w-1000px {
    width: 1000px;
  }

  .xl\:w-1140px {
    width: 1140px;
  }

  .xl\:w-1200px {
    width: 1200px;
  }

  .xl\:w-1460px {
    width: 1460px;
  }

  .xl\:w-1600px {
    width: 1600px;
  }

  .xl\:w-screen {
    width: 100vw;
  }

  .xl\:z-0 {
    z-index: 0;
  }

  .xl\:z-1 {
    z-index: 1;
  }

  .xl\:z-4 {
    z-index: 4;
  }

  .xl\:z-10 {
    z-index: 10;
  }

  .xl\:z-20 {
    z-index: 20;
  }

  .xl\:z-30 {
    z-index: 30;
  }

  .xl\:z-40 {
    z-index: 40;
  }

  .xl\:z-50 {
    z-index: 50;
  }

  .xl\:z-60 {
    z-index: 60;
  }

  .xl\:z-70 {
    z-index: 70;
  }

  .xl\:z-80 {
    z-index: 80;
  }

  .xl\:z-90 {
    z-index: 90;
  }

  .xl\:z-100 {
    z-index: 100;
  }

  .xl\:z-auto {
    z-index: auto;
  }

  .xl\:hover\:z-0:hover {
    z-index: 0;
  }

  .xl\:hover\:z-1:hover {
    z-index: 1;
  }

  .xl\:hover\:z-4:hover {
    z-index: 4;
  }

  .xl\:hover\:z-10:hover {
    z-index: 10;
  }

  .xl\:hover\:z-20:hover {
    z-index: 20;
  }

  .xl\:hover\:z-30:hover {
    z-index: 30;
  }

  .xl\:hover\:z-40:hover {
    z-index: 40;
  }

  .xl\:hover\:z-50:hover {
    z-index: 50;
  }

  .xl\:hover\:z-60:hover {
    z-index: 60;
  }

  .xl\:hover\:z-70:hover {
    z-index: 70;
  }

  .xl\:hover\:z-80:hover {
    z-index: 80;
  }

  .xl\:hover\:z-90:hover {
    z-index: 90;
  }

  .xl\:hover\:z-100:hover {
    z-index: 100;
  }

  .xl\:hover\:z-auto:hover {
    z-index: auto;
  }

  .xl\:pin-t-0 {
    top: 0;
  }

  .xl\:pin-r-0 {
    right: 0;
  }

  .xl\:pin-b-0 {
    bottom: 0;
  }

  .xl\:pin-l-0 {
    left: 0;
  }

  .xl\:pin-t-1 {
    top: 1px;
  }

  .xl\:pin-r-1 {
    right: 1px;
  }

  .xl\:pin-b-1 {
    bottom: 1px;
  }

  .xl\:pin-l-1 {
    left: 1px;
  }

  .xl\:pin-t-3 {
    top: 3px;
  }

  .xl\:pin-r-3 {
    right: 3px;
  }

  .xl\:pin-b-3 {
    bottom: 3px;
  }

  .xl\:pin-l-3 {
    left: 3px;
  }

  .xl\:pin-t-5 {
    top: 5px;
  }

  .xl\:pin-r-5 {
    right: 5px;
  }

  .xl\:pin-b-5 {
    bottom: 5px;
  }

  .xl\:pin-l-5 {
    left: 5px;
  }

  .xl\:pin-t-6 {
    top: 6px;
  }

  .xl\:pin-r-6 {
    right: 6px;
  }

  .xl\:pin-b-6 {
    bottom: 6px;
  }

  .xl\:pin-l-6 {
    left: 6px;
  }

  .xl\:pin-t-10 {
    top: 10px;
  }

  .xl\:pin-r-10 {
    right: 10px;
  }

  .xl\:pin-b-10 {
    bottom: 10px;
  }

  .xl\:pin-l-10 {
    left: 10px;
  }

  .xl\:pin-t-11 {
    top: 11px;
  }

  .xl\:pin-r-11 {
    right: 11px;
  }

  .xl\:pin-b-11 {
    bottom: 11px;
  }

  .xl\:pin-l-11 {
    left: 11px;
  }

  .xl\:pin-t-12 {
    top: 3rem;
  }

  .xl\:pin-r-12 {
    right: 3rem;
  }

  .xl\:pin-b-12 {
    bottom: 3rem;
  }

  .xl\:pin-l-12 {
    left: 3rem;
  }

  .xl\:pin-t-15 {
    top: 15px;
  }

  .xl\:pin-r-15 {
    right: 15px;
  }

  .xl\:pin-b-15 {
    bottom: 15px;
  }

  .xl\:pin-l-15 {
    left: 15px;
  }

  .xl\:pin-t-16 {
    top: 4rem;
  }

  .xl\:pin-r-16 {
    right: 4rem;
  }

  .xl\:pin-b-16 {
    bottom: 4rem;
  }

  .xl\:pin-l-16 {
    left: 4rem;
  }

  .xl\:pin-t-20 {
    top: 20px;
  }

  .xl\:pin-r-20 {
    right: 20px;
  }

  .xl\:pin-b-20 {
    bottom: 20px;
  }

  .xl\:pin-l-20 {
    left: 20px;
  }

  .xl\:pin-t-25 {
    top: 25px;
  }

  .xl\:pin-r-25 {
    right: 25px;
  }

  .xl\:pin-b-25 {
    bottom: 25px;
  }

  .xl\:pin-l-25 {
    left: 25px;
  }

  .xl\:pin-t-50 {
    top: 50px;
  }

  .xl\:pin-r-50 {
    right: 50px;
  }

  .xl\:pin-b-50 {
    bottom: 50px;
  }

  .xl\:pin-l-50 {
    left: 50px;
  }

  .xl\:pin-t-64 {
    top: 64px;
  }

  .xl\:pin-r-64 {
    right: 64px;
  }

  .xl\:pin-b-64 {
    bottom: 64px;
  }

  .xl\:pin-l-64 {
    left: 64px;
  }

  .xl\:pin-t-75 {
    top: 75px;
  }

  .xl\:pin-r-75 {
    right: 75px;
  }

  .xl\:pin-b-75 {
    bottom: 75px;
  }

  .xl\:pin-l-75 {
    left: 75px;
  }

  .xl\:pin-t-80 {
    top: 80px;
  }

  .xl\:pin-r-80 {
    right: 80px;
  }

  .xl\:pin-b-80 {
    bottom: 80px;
  }

  .xl\:pin-l-80 {
    left: 80px;
  }

  .xl\:pin-t-100 {
    top: 100px;
  }

  .xl\:pin-r-100 {
    right: 100px;
  }

  .xl\:pin-b-100 {
    bottom: 100px;
  }

  .xl\:pin-l-100 {
    left: 100px;
  }

  .xl\:pin-t-150 {
    top: 150px;
  }

  .xl\:pin-r-150 {
    right: 150px;
  }

  .xl\:pin-b-150 {
    bottom: 150px;
  }

  .xl\:pin-l-150 {
    left: 150px;
  }

  .xl\:pin-t-200 {
    top: 150px;
  }

  .xl\:pin-r-200 {
    right: 150px;
  }

  .xl\:pin-b-200 {
    bottom: 150px;
  }

  .xl\:pin-l-200 {
    left: 150px;
  }

  .xl\:pin-t-250 {
    top: 250px;
  }

  .xl\:pin-r-250 {
    right: 250px;
  }

  .xl\:pin-b-250 {
    bottom: 250px;
  }

  .xl\:pin-l-250 {
    left: 250px;
  }

  .xl\:pin-t-300 {
    top: 300px;
  }

  .xl\:pin-r-300 {
    right: 300px;
  }

  .xl\:pin-b-300 {
    bottom: 300px;
  }

  .xl\:pin-l-300 {
    left: 300px;
  }

  .xl\:pin-t-400 {
    top: 400px;
  }

  .xl\:pin-r-400 {
    right: 400px;
  }

  .xl\:pin-b-400 {
    bottom: 400px;
  }

  .xl\:pin-l-400 {
    left: 400px;
  }

  .xl\:pin-t-500 {
    top: 500px;
  }

  .xl\:pin-r-500 {
    right: 500px;
  }

  .xl\:pin-b-500 {
    bottom: 500px;
  }

  .xl\:pin-l-500 {
    left: 500px;
  }

  .xl\:-pin-t-5 {
    top: -5px;
  }

  .xl\:-pin-r-5 {
    right: -5px;
  }

  .xl\:-pin-b-5 {
    bottom: -5px;
  }

  .xl\:-pin-l-5 {
    left: -5px;
  }

  .xl\:-pin-t-6 {
    top: -6px;
  }

  .xl\:-pin-r-6 {
    right: -6px;
  }

  .xl\:-pin-b-6 {
    bottom: -6px;
  }

  .xl\:-pin-l-6 {
    left: -6px;
  }

  .xl\:-pin-t-10 {
    top: -10px;
  }

  .xl\:-pin-r-10 {
    right: -10px;
  }

  .xl\:-pin-b-10 {
    bottom: -10px;
  }

  .xl\:-pin-l-10 {
    left: -10px;
  }

  .xl\:-pin-t-15 {
    top: -15px;
  }

  .xl\:-pin-r-15 {
    right: -15px;
  }

  .xl\:-pin-b-15 {
    bottom: -15px;
  }

  .xl\:-pin-l-15 {
    left: -15px;
  }

  .xl\:-pin-t-20 {
    top: -20px;
  }

  .xl\:-pin-r-20 {
    right: -20px;
  }

  .xl\:-pin-b-20 {
    bottom: -20px;
  }

  .xl\:-pin-l-20 {
    left: -20px;
  }

  .xl\:-pin-t-12 {
    top: -3rem;
  }

  .xl\:-pin-r-12 {
    right: -3rem;
  }

  .xl\:-pin-b-12 {
    bottom: -3rem;
  }

  .xl\:-pin-l-12 {
    left: -3rem;
  }

  .xl\:-pin-t-16 {
    top: -4rem;
  }

  .xl\:-pin-r-16 {
    right: -4rem;
  }

  .xl\:-pin-b-16 {
    bottom: -4rem;
  }

  .xl\:-pin-l-16 {
    left: -4rem;
  }

  .xl\:-pin-t-25 {
    top: -25px;
  }

  .xl\:-pin-r-25 {
    right: -25px;
  }

  .xl\:-pin-b-25 {
    bottom: -25px;
  }

  .xl\:-pin-l-25 {
    left: -25px;
  }

  .xl\:-pin-t-50 {
    top: -50px;
  }

  .xl\:-pin-r-50 {
    right: -50px;
  }

  .xl\:-pin-b-50 {
    bottom: -50px;
  }

  .xl\:-pin-l-50 {
    left: -50px;
  }

  .xl\:-pin-t-75 {
    top: 75px;
  }

  .xl\:-pin-r-75 {
    right: 75px;
  }

  .xl\:-pin-b-75 {
    bottom: 75px;
  }

  .xl\:-pin-l-75 {
    left: 75px;
  }

  .xl\:-pin-t-80 {
    top: -80px;
  }

  .xl\:-pin-r-80 {
    right: -80px;
  }

  .xl\:-pin-b-80 {
    bottom: -80px;
  }

  .xl\:-pin-l-80 {
    left: -80px;
  }

  .xl\:-pin-t-100 {
    top: -100px;
  }

  .xl\:-pin-r-100 {
    right: -100px;
  }

  .xl\:-pin-b-100 {
    bottom: -100px;
  }

  .xl\:-pin-l-100 {
    left: -100px;
  }

  .xl\:-pin-t-150 {
    top: -150px;
  }

  .xl\:-pin-r-150 {
    right: -150px;
  }

  .xl\:-pin-b-150 {
    bottom: -150px;
  }

  .xl\:-pin-l-150 {
    left: -150px;
  }

  .xl\:-pin-t-200 {
    top: -200px;
  }

  .xl\:-pin-r-200 {
    right: -200px;
  }

  .xl\:-pin-b-200 {
    bottom: -200px;
  }

  .xl\:-pin-l-200 {
    left: -200px;
  }

  .xl\:-pin-t-250 {
    top: -250px;
  }

  .xl\:-pin-r-250 {
    right: -250px;
  }

  .xl\:-pin-b-250 {
    bottom: -250px;
  }

  .xl\:-pin-l-250 {
    left: -250px;
  }

  .xl\:-pin-t-300 {
    top: -300px;
  }

  .xl\:-pin-r-300 {
    right: -300px;
  }

  .xl\:-pin-b-300 {
    bottom: -300px;
  }

  .xl\:-pin-l-300 {
    left: -300px;
  }

  .xl\:-pin-t-400 {
    top: -400px;
  }

  .xl\:-pin-r-400 {
    right: -400px;
  }

  .xl\:-pin-b-400 {
    bottom: -400px;
  }

  .xl\:-pin-l-400 {
    left: -400px;
  }

  .xl\:-pin-t-500 {
    top: -500px;
  }

  .xl\:-pin-r-500 {
    right: -500px;
  }

  .xl\:-pin-b-500 {
    bottom: -500px;
  }

  .xl\:-pin-l-500 {
    left: -500px;
  }

  .xl\:pin-t-half {
    top: 50%;
  }

  .xl\:pin-r-half {
    right: 50%;
  }

  .xl\:pin-b-half {
    bottom: 50%;
  }

  .xl\:pin-l-half {
    left: 50%;
  }

  .xl\:-pin-t-half {
    top: -50%;
  }

  .xl\:-pin-r-half {
    right: -50%;
  }

  .xl\:-pin-b-half {
    bottom: -50%;
  }

  .xl\:-pin-l-half {
    left: -50%;
  }

  .xl\:rotate-45 {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .xl\:rotate-90 {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .xl\:rotate-180 {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .xl\:-rotate-45 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .xl\:-rotate-90 {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .xl\:-rotate-180 {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .xl\:-translateX-50 {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .xl\:-translateY-50 {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .xl\:hover\:rotate-45:hover {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .xl\:hover\:rotate-90:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .xl\:hover\:rotate-180:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .xl\:hover\:-rotate-45:hover {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .xl\:hover\:-rotate-90:hover {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .xl\:hover\:-rotate-180:hover {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .xl\:hover\:-translateX-50:hover {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .xl\:hover\:-translateY-50:hover {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
