/**
 * 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 preflight; */

/*
* Futura
*/

/*
* Legal
* This CSS resource incorporates links to font software which is the valuable copyrighted property of Monotype and/or its suppliers.
* You may not attempt to copy, install, redistribute, convert, modify or reverse engineer this font software. Please contact Monotype
* with any questions regarding Web Fonts: http://www.fontshop.com
*/

@font-face {
  font-family: "Futura";
  src: url("../assets/fonts/1475810/0a41510f-c527-4001-89c5-d66d2c9ed34b.eot?#iefix");
  src: url("../assets/fonts/1475810/0a41510f-c527-4001-89c5-d66d2c9ed34b.eot?#iefix") format("eot"), url("../assets/fonts/1475810/e17c7943-8db2-4470-9e2a-74a8d01f6776.woff2") format("woff2"), url("../assets/fonts/1475810/6c72b0cb-89a1-4da9-8574-9244967bd9d6.woff") format("woff"), url("../assets/fonts/1475810/dd79c75a-b0c9-4d70-a5a7-bdde1d5449fd.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Futura";
  src: url("../assets/fonts/1475816/9d0eacce-0f74-4687-8e3e-25a2a9d507be.eot?#iefix");
  src: url("../assets/fonts/1475816/9d0eacce-0f74-4687-8e3e-25a2a9d507be.eot?#iefix") format("eot"), url("../assets/fonts/1475816/4a6ce888-0fa9-4d97-883d-55dbadc64ac0.woff2") format("woff2"), url("../assets/fonts/1475816/5329204a-825b-4502-b125-f2708d2d30c0.woff") format("woff"), url("../assets/fonts/1475816/af888eb2-1bde-4c44-b483-b11db932a8ad.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Futura";
  src: url("../assets/fonts/1475822/87f56fc1-ab05-4355-90af-9e83740663af.eot?#iefix");
  src: url("../assets/fonts/1475822/87f56fc1-ab05-4355-90af-9e83740663af.eot?#iefix") format("eot"), url("../assets/fonts/1475822/3cf9e1e8-63a2-497f-86ed-6b63d6de1986.woff2") format("woff2"), url("../assets/fonts/1475822/184895ac-545b-450b-9d3a-c0a0a7620977.woff") format("woff"), url("../assets/fonts/1475822/bf8628d2-1ae0-4645-ba3f-3ce62d8d907c.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Futura";
  src: url("../assets/fonts/1475798/cf053eae-ba1f-44f3-940c-a34b68ccbbdf.eot?#iefix");
  src: url("../assets/fonts/1475798/cf053eae-ba1f-44f3-940c-a34b68ccbbdf.eot?#iefix") format("eot"), url("../assets/fonts/1475798/8bf38806-3423-4080-b38f-d08542f7e4ac.woff2") format("woff2"), url("../assets/fonts/1475798/e2b9cbeb-fa8e-41cd-8a6a-46044b29ba52.woff") format("woff"), url("../assets/fonts/1475798/c2a69697-4f06-4764-abd4-625031a84e31.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Futura";
  src: url("../assets/fonts/1475804/834e05b5-87ff-453f-9d74-a93eb930e1ec.eot?#iefix");
  src: url("../assets/fonts/1475804/834e05b5-87ff-453f-9d74-a93eb930e1ec.eot?#iefix") format("eot"), url("../assets/fonts/1475804/159c40d5-d5b5-4d06-b7ba-7762c03ce985.woff2") format("woff2"), url("../assets/fonts/1475804/03937062-17d3-443d-809c-d51e0397aaa3.woff") format("woff"), url("../assets/fonts/1475804/19124b27-09ee-4d4c-b213-ec1c114d2945.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

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

/**
 * 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-black-50 {
  background-color: rgba(0, 0, 0, .5);
}

.bg-dark-gray {
  background-color: #3e3e3e;
}

.bg-light-gray {
  background-color: #f5f5f5;
}

.bg-meta-gray {
  background-color: #595959;
}

.bg-purple-dark {
  background-color: #45247f;
}

.bg-red-dark {
  background-color: #cd1936;
}

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

.bg-blue {
  background-color: #42b6da;
}

.bg-facebook {
  background-color: #3b5998;
}

.bg-gray {
  background-color: #e5e5e5;
}

.bg-green {
  background-color: #63c29e;
}

.bg-linkedin {
  background-color: #0077b5;
}

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

.bg-pink {
  background-color: #e85e9c;
}

.bg-purple {
  background-color: #7a6cb2;
}

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

.bg-rss {
  background-color: #fb9f1c;
}

.bg-twitter {
  background-color: #1da1f2;
}

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

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

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

.hover\:bg-dark-gray:hover {
  background-color: #3e3e3e;
}

.hover\:bg-light-gray:hover {
  background-color: #f5f5f5;
}

.hover\:bg-meta-gray:hover {
  background-color: #595959;
}

.hover\:bg-purple-dark:hover {
  background-color: #45247f;
}

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

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

.hover\:bg-blue:hover {
  background-color: #42b6da;
}

.hover\:bg-facebook:hover {
  background-color: #3b5998;
}

.hover\:bg-gray:hover {
  background-color: #e5e5e5;
}

.hover\:bg-green:hover {
  background-color: #63c29e;
}

.hover\:bg-linkedin:hover {
  background-color: #0077b5;
}

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

.hover\:bg-pink:hover {
  background-color: #e85e9c;
}

.hover\:bg-purple:hover {
  background-color: #7a6cb2;
}

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

.hover\:bg-rss:hover {
  background-color: #fb9f1c;
}

.hover\:bg-twitter:hover {
  background-color: #1da1f2;
}

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

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

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

.focus\:bg-dark-gray:focus {
  background-color: #3e3e3e;
}

.focus\:bg-light-gray:focus {
  background-color: #f5f5f5;
}

.focus\:bg-meta-gray:focus {
  background-color: #595959;
}

.focus\:bg-purple-dark:focus {
  background-color: #45247f;
}

.focus\:bg-red-dark:focus {
  background-color: #cd1936;
}

.focus\:bg-black:focus {
  background-color: #000;
}

.focus\:bg-blue:focus {
  background-color: #42b6da;
}

.focus\:bg-facebook:focus {
  background-color: #3b5998;
}

.focus\:bg-gray:focus {
  background-color: #e5e5e5;
}

.focus\:bg-green:focus {
  background-color: #63c29e;
}

.focus\:bg-linkedin:focus {
  background-color: #0077b5;
}

.focus\:bg-orange:focus {
  background-color: #ed8123;
}

.focus\:bg-pink:focus {
  background-color: #e85e9c;
}

.focus\:bg-purple:focus {
  background-color: #7a6cb2;
}

.focus\:bg-red:focus {
  background-color: #e31d3c;
}

.focus\:bg-rss:focus {
  background-color: #fb9f1c;
}

.focus\:bg-twitter:focus {
  background-color: #1da1f2;
}

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

.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-collapse {
  border-collapse: collapse;
}

.border-separate {
  border-collapse: separate;
}

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

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

.border-dark-gray {
  border-color: #3e3e3e;
}

.border-light-gray {
  border-color: #f5f5f5;
}

.border-meta-gray {
  border-color: #595959;
}

.border-purple-dark {
  border-color: #45247f;
}

.border-red-dark {
  border-color: #cd1936;
}

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

.border-blue {
  border-color: #42b6da;
}

.border-facebook {
  border-color: #3b5998;
}

.border-gray {
  border-color: #e5e5e5;
}

.border-green {
  border-color: #63c29e;
}

.border-linkedin {
  border-color: #0077b5;
}

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

.border-pink {
  border-color: #e85e9c;
}

.border-purple {
  border-color: #7a6cb2;
}

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

.border-rss {
  border-color: #fb9f1c;
}

.border-twitter {
  border-color: #1da1f2;
}

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

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

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

.hover\:border-dark-gray:hover {
  border-color: #3e3e3e;
}

.hover\:border-light-gray:hover {
  border-color: #f5f5f5;
}

.hover\:border-meta-gray:hover {
  border-color: #595959;
}

.hover\:border-purple-dark:hover {
  border-color: #45247f;
}

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

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

.hover\:border-blue:hover {
  border-color: #42b6da;
}

.hover\:border-facebook:hover {
  border-color: #3b5998;
}

.hover\:border-gray:hover {
  border-color: #e5e5e5;
}

.hover\:border-green:hover {
  border-color: #63c29e;
}

.hover\:border-linkedin:hover {
  border-color: #0077b5;
}

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

.hover\:border-pink:hover {
  border-color: #e85e9c;
}

.hover\:border-purple:hover {
  border-color: #7a6cb2;
}

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

.hover\:border-rss:hover {
  border-color: #fb9f1c;
}

.hover\:border-twitter:hover {
  border-color: #1da1f2;
}

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

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

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

.focus\:border-dark-gray:focus {
  border-color: #3e3e3e;
}

.focus\:border-light-gray:focus {
  border-color: #f5f5f5;
}

.focus\:border-meta-gray:focus {
  border-color: #595959;
}

.focus\:border-purple-dark:focus {
  border-color: #45247f;
}

.focus\:border-red-dark:focus {
  border-color: #cd1936;
}

.focus\:border-black:focus {
  border-color: #000;
}

.focus\:border-blue:focus {
  border-color: #42b6da;
}

.focus\:border-facebook:focus {
  border-color: #3b5998;
}

.focus\:border-gray:focus {
  border-color: #e5e5e5;
}

.focus\:border-green:focus {
  border-color: #63c29e;
}

.focus\:border-linkedin:focus {
  border-color: #0077b5;
}

.focus\:border-orange:focus {
  border-color: #ed8123;
}

.focus\:border-pink:focus {
  border-color: #e85e9c;
}

.focus\:border-purple:focus {
  border-color: #7a6cb2;
}

.focus\:border-red:focus {
  border-color: #e31d3c;
}

.focus\:border-rss:focus {
  border-color: #fb9f1c;
}

.focus\:border-twitter:focus {
  border-color: #1da1f2;
}

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

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

.rounded {
  border-radius: 8px;
}

.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 {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

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

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

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

.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 {
  border-top-left-radius: 8px;
}

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

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

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

.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-4 {
  border-width: 4px;
}

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

.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-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-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 {
  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: flex;
}

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

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

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

.flex-col {
  flex-direction: column;
}

.flex-col-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 {
  align-items: flex-start;
}

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

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

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

.items-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 {
  justify-content: flex-start;
}

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

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

.justify-between {
  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 {
  flex: 1 1 0%;
}

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

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

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

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

.flex-no-grow {
  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-futura {
  font-family: Futura, Helvetica Neue, Helvetica, sans-serif;
}

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

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

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

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

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

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

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

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

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

.hover\:font-hairline:hover {
  font-weight: 100;
}

.hover\:font-thin:hover {
  font-weight: 200;
}

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

.focus\:font-hairline:focus {
  font-weight: 100;
}

.focus\:font-thin:focus {
  font-weight: 200;
}

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

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

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

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

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

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

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

.h-0 {
  height: 0;
}

.h-auto {
  height: auto;
}

.h-px {
  height: 1px;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

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

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

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

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

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 4px;
}

.m-2 {
  margin: 8px;
}

.m-3 {
  margin: 12px;
}

.m-4 {
  margin: 16px;
}

.m-5 {
  margin: 20px;
}

.m-6 {
  margin: 24px;
}

.m-8 {
  margin: 32px;
}

.m-10 {
  margin: 40px;
}

.m-12 {
  margin: 48px;
}

.m-16 {
  margin: 64px;
}

.m-20 {
  margin: 80px;
}

.m-24 {
  margin: 96px;
}

.m-32 {
  margin: 128px;
}

.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: 4px;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-32 {
  margin-top: 128px;
  margin-bottom: 128px;
}

.mx-32 {
  margin-left: 128px;
  margin-right: 128px;
}

.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: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-32 {
  margin-top: 128px;
}

.mr-32 {
  margin-right: 128px;
}

.mb-32 {
  margin-bottom: 128px;
}

.ml-32 {
  margin-left: 128px;
}

.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-100 {
  max-height: 100px;
}

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

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

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

.max-w-xs {
  max-width: 640px;
}

.max-w-sm {
  max-width: 720px;
}

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

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

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

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

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

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

.-m-1 {
  margin: -4px;
}

.-m-2 {
  margin: -8px;
}

.-m-3 {
  margin: -12px;
}

.-m-4 {
  margin: -16px;
}

.-m-5 {
  margin: -20px;
}

.-m-6 {
  margin: -24px;
}

.-m-8 {
  margin: -32px;
}

.-m-10 {
  margin: -40px;
}

.-m-12 {
  margin: -48px;
}

.-m-16 {
  margin: -64px;
}

.-m-20 {
  margin: -80px;
}

.-m-24 {
  margin: -96px;
}

.-m-32 {
  margin: -128px;
}

.-m-px {
  margin: -1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.-my-32 {
  margin-top: -128px;
  margin-bottom: -128px;
}

.-mx-32 {
  margin-left: -128px;
  margin-right: -128px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.-mt-32 {
  margin-top: -128px;
}

.-mr-32 {
  margin-right: -128px;
}

.-mb-32 {
  margin-bottom: -128px;
}

.-ml-32 {
  margin-left: -128px;
}

.-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;
}

.outline-none {
  outline: 0;
}

.focus\:outline-none:focus {
  outline: 0;
}

.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-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-x-visible {
  overflow-x: visible;
}

.overflow-y-visible {
  overflow-y: visible;
}

.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: 4px;
}

.p-2 {
  padding: 8px;
}

.p-3 {
  padding: 12px;
}

.p-4 {
  padding: 16px;
}

.p-5 {
  padding: 20px;
}

.p-6 {
  padding: 24px;
}

.p-8 {
  padding: 32px;
}

.p-10 {
  padding: 40px;
}

.p-12 {
  padding: 48px;
}

.p-16 {
  padding: 64px;
}

.p-20 {
  padding: 80px;
}

.p-24 {
  padding: 96px;
}

.p-32 {
  padding: 128px;
}

.p-px {
  padding: 1px;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

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

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

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

.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

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

.py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

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

.py-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}

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

.py-10 {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.py-12 {
  padding-top: 48px;
  padding-bottom: 48px;
}

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

.py-16 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.px-16 {
  padding-left: 64px;
  padding-right: 64px;
}

.py-20 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.px-20 {
  padding-left: 80px;
  padding-right: 80px;
}

.py-24 {
  padding-top: 96px;
  padding-bottom: 96px;
}

.px-24 {
  padding-left: 96px;
  padding-right: 96px;
}

.py-32 {
  padding-top: 128px;
  padding-bottom: 128px;
}

.px-32 {
  padding-left: 128px;
  padding-right: 128px;
}

.py-px {
  padding-top: 1px;
  padding-bottom: 1px;
}

.px-px {
  padding-left: 1px;
  padding-right: 1px;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pt-1 {
  padding-top: 4px;
}

.pr-1 {
  padding-right: 4px;
}

.pb-1 {
  padding-bottom: 4px;
}

.pl-1 {
  padding-left: 4px;
}

.pt-2 {
  padding-top: 8px;
}

.pr-2 {
  padding-right: 8px;
}

.pb-2 {
  padding-bottom: 8px;
}

.pl-2 {
  padding-left: 8px;
}

.pt-3 {
  padding-top: 12px;
}

.pr-3 {
  padding-right: 12px;
}

.pb-3 {
  padding-bottom: 12px;
}

.pl-3 {
  padding-left: 12px;
}

.pt-4 {
  padding-top: 16px;
}

.pr-4 {
  padding-right: 16px;
}

.pb-4 {
  padding-bottom: 16px;
}

.pl-4 {
  padding-left: 16px;
}

.pt-5 {
  padding-top: 20px;
}

.pr-5 {
  padding-right: 20px;
}

.pb-5 {
  padding-bottom: 20px;
}

.pl-5 {
  padding-left: 20px;
}

.pt-6 {
  padding-top: 24px;
}

.pr-6 {
  padding-right: 24px;
}

.pb-6 {
  padding-bottom: 24px;
}

.pl-6 {
  padding-left: 24px;
}

.pt-8 {
  padding-top: 32px;
}

.pr-8 {
  padding-right: 32px;
}

.pb-8 {
  padding-bottom: 32px;
}

.pl-8 {
  padding-left: 32px;
}

.pt-10 {
  padding-top: 40px;
}

.pr-10 {
  padding-right: 40px;
}

.pb-10 {
  padding-bottom: 40px;
}

.pl-10 {
  padding-left: 40px;
}

.pt-12 {
  padding-top: 48px;
}

.pr-12 {
  padding-right: 48px;
}

.pb-12 {
  padding-bottom: 48px;
}

.pl-12 {
  padding-left: 48px;
}

.pt-16 {
  padding-top: 64px;
}

.pr-16 {
  padding-right: 64px;
}

.pb-16 {
  padding-bottom: 64px;
}

.pl-16 {
  padding-left: 64px;
}

.pt-20 {
  padding-top: 80px;
}

.pr-20 {
  padding-right: 80px;
}

.pb-20 {
  padding-bottom: 80px;
}

.pl-20 {
  padding-left: 80px;
}

.pt-24 {
  padding-top: 96px;
}

.pr-24 {
  padding-right: 96px;
}

.pb-24 {
  padding-bottom: 96px;
}

.pl-24 {
  padding-left: 96px;
}

.pt-32 {
  padding-top: 128px;
}

.pr-32 {
  padding-right: 128px;
}

.pb-32 {
  padding-bottom: 128px;
}

.pl-32 {
  padding-left: 128px;
}

.pt-px {
  padding-top: 1px;
}

.pr-px {
  padding-right: 1px;
}

.pb-px {
  padding-bottom: 1px;
}

.pl-px {
  padding-left: 1px;
}

.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;
}

.resize-none {
  resize: none;
}

.resize-y {
  resize: vertical;
}

.resize-x {
  resize: horizontal;
}

.resize {
  resize: both;
}

.shadow-outline-transparent {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
}

.shadow-outline-black-50 {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
}

.shadow-outline-dark-gray {
  box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
}

.shadow-outline-light-gray {
  box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
}

.shadow-outline-meta-gray {
  box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
}

.shadow-outline-purple-dark {
  box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
}

.shadow-outline-red-dark {
  box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
}

.shadow-outline-black {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
}

.shadow-outline-blue {
  box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
}

.shadow-outline-facebook {
  box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
}

.shadow-outline-gray {
  box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
}

.shadow-outline-green {
  box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
}

.shadow-outline-linkedin {
  box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
}

.shadow-outline-orange {
  box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
}

.shadow-outline-pink {
  box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
}

.shadow-outline-purple {
  box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
}

.shadow-outline-red {
  box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
}

.shadow-outline-rss {
  box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
}

.shadow-outline-twitter {
  box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
}

.shadow-outline-white {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
}

.shadow-darken {
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
}

.hover\:shadow-outline-transparent:hover {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
}

.hover\:shadow-outline-black-50:hover {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
}

.hover\:shadow-outline-dark-gray:hover {
  box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
}

.hover\:shadow-outline-light-gray:hover {
  box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
}

.hover\:shadow-outline-meta-gray:hover {
  box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
}

.hover\:shadow-outline-purple-dark:hover {
  box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
}

.hover\:shadow-outline-red-dark:hover {
  box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
}

.hover\:shadow-outline-black:hover {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
}

.hover\:shadow-outline-blue:hover {
  box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
}

.hover\:shadow-outline-facebook:hover {
  box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
}

.hover\:shadow-outline-gray:hover {
  box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
}

.hover\:shadow-outline-green:hover {
  box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
}

.hover\:shadow-outline-linkedin:hover {
  box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
}

.hover\:shadow-outline-orange:hover {
  box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
}

.hover\:shadow-outline-pink:hover {
  box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
}

.hover\:shadow-outline-purple:hover {
  box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
}

.hover\:shadow-outline-red:hover {
  box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
}

.hover\:shadow-outline-rss:hover {
  box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
}

.hover\:shadow-outline-twitter:hover {
  box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
}

.hover\:shadow-outline-white:hover {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
}

.hover\:shadow-darken:hover {
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
}

.focus\:shadow-outline-transparent:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
}

.focus\:shadow-outline-black-50:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
}

.focus\:shadow-outline-dark-gray:focus {
  box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
}

.focus\:shadow-outline-light-gray:focus {
  box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
}

.focus\:shadow-outline-meta-gray:focus {
  box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
}

.focus\:shadow-outline-purple-dark:focus {
  box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
}

.focus\:shadow-outline-red-dark:focus {
  box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
}

.focus\:shadow-outline-black:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
}

.focus\:shadow-outline-blue:focus {
  box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
}

.focus\:shadow-outline-facebook:focus {
  box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
}

.focus\:shadow-outline-gray:focus {
  box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
}

.focus\:shadow-outline-green:focus {
  box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
}

.focus\:shadow-outline-linkedin:focus {
  box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
}

.focus\:shadow-outline-orange:focus {
  box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
}

.focus\:shadow-outline-pink:focus {
  box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
}

.focus\:shadow-outline-purple:focus {
  box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
}

.focus\:shadow-outline-red:focus {
  box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
}

.focus\:shadow-outline-rss:focus {
  box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
}

.focus\:shadow-outline-twitter:focus {
  box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
}

.focus\:shadow-outline-white:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
}

.focus\:shadow-darken:focus {
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
}

.fill-current {
  fill: currentColor;
}

.stroke-current {
  stroke: currentColor;
}

.table-auto {
  table-layout: auto;
}

.table-fixed {
  table-layout: fixed;
}

.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-black-50 {
  color: rgba(0, 0, 0, .5);
}

.text-dark-gray {
  color: #3e3e3e;
}

.text-light-gray {
  color: #f5f5f5;
}

.text-meta-gray {
  color: #595959;
}

.text-purple-dark {
  color: #45247f;
}

.text-red-dark {
  color: #cd1936;
}

.text-black {
  color: #000;
}

.text-blue {
  color: #42b6da;
}

.text-facebook {
  color: #3b5998;
}

.text-gray {
  color: #e5e5e5;
}

.text-green {
  color: #63c29e;
}

.text-linkedin {
  color: #0077b5;
}

.text-orange {
  color: #ed8123;
}

.text-pink {
  color: #e85e9c;
}

.text-purple {
  color: #7a6cb2;
}

.text-red {
  color: #e31d3c;
}

.text-rss {
  color: #fb9f1c;
}

.text-twitter {
  color: #1da1f2;
}

.text-white {
  color: #fff;
}

.text-inherit {
  color: inherit;
}

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

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

.hover\:text-dark-gray:hover {
  color: #3e3e3e;
}

.hover\:text-light-gray:hover {
  color: #f5f5f5;
}

.hover\:text-meta-gray:hover {
  color: #595959;
}

.hover\:text-purple-dark:hover {
  color: #45247f;
}

.hover\:text-red-dark:hover {
  color: #cd1936;
}

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

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

.hover\:text-facebook:hover {
  color: #3b5998;
}

.hover\:text-gray:hover {
  color: #e5e5e5;
}

.hover\:text-green:hover {
  color: #63c29e;
}

.hover\:text-linkedin:hover {
  color: #0077b5;
}

.hover\:text-orange:hover {
  color: #ed8123;
}

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

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

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

.hover\:text-rss:hover {
  color: #fb9f1c;
}

.hover\:text-twitter:hover {
  color: #1da1f2;
}

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

.hover\:text-inherit:hover {
  color: inherit;
}

.focus\:text-transparent:focus {
  color: transparent;
}

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

.focus\:text-dark-gray:focus {
  color: #3e3e3e;
}

.focus\:text-light-gray:focus {
  color: #f5f5f5;
}

.focus\:text-meta-gray:focus {
  color: #595959;
}

.focus\:text-purple-dark:focus {
  color: #45247f;
}

.focus\:text-red-dark:focus {
  color: #cd1936;
}

.focus\:text-black:focus {
  color: #000;
}

.focus\:text-blue:focus {
  color: #42b6da;
}

.focus\:text-facebook:focus {
  color: #3b5998;
}

.focus\:text-gray:focus {
  color: #e5e5e5;
}

.focus\:text-green:focus {
  color: #63c29e;
}

.focus\:text-linkedin:focus {
  color: #0077b5;
}

.focus\:text-orange:focus {
  color: #ed8123;
}

.focus\:text-pink:focus {
  color: #e85e9c;
}

.focus\:text-purple:focus {
  color: #7a6cb2;
}

.focus\:text-red:focus {
  color: #e31d3c;
}

.focus\:text-rss:focus {
  color: #fb9f1c;
}

.focus\:text-twitter:focus {
  color: #1da1f2;
}

.focus\:text-white:focus {
  color: #fff;
}

.focus\:text-inherit:focus {
  color: inherit;
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 16px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 20px;
}

.text-2xl {
  font-size: 22px;
}

.text-3xl {
  font-size: 24px;
}

.text-4xl {
  font-size: 26px;
}

.text-5xl {
  font-size: 30px;
}

.text-6xl {
  font-size: 36px;
}

.text-7xl {
  font-size: 48px;
}

.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;
}

.focus\:italic:focus {
  font-style: italic;
}

.focus\:roman:focus {
  font-style: normal;
}

.focus\:uppercase:focus {
  text-transform: uppercase;
}

.focus\:lowercase:focus {
  text-transform: lowercase;
}

.focus\:capitalize:focus {
  text-transform: capitalize;
}

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

.focus\:underline:focus {
  text-decoration: underline;
}

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

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

.focus\:antialiased:focus {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.focus\:subpixel-antialiased:focus {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.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-1 {
  width: 4px;
}

.w-2 {
  width: 8px;
}

.w-3 {
  width: 12px;
}

.w-4 {
  width: 16px;
}

.w-5 {
  width: 20px;
}

.w-6 {
  width: 24px;
}

.w-8 {
  width: 32px;
}

.w-10 {
  width: 40px;
}

.w-12 {
  width: 48px;
}

.w-14 {
  width: 56px;
}

.w-16 {
  width: 64px;
}

.w-24 {
  width: 96px;
}

.w-32 {
  width: 128px;
}

.w-48 {
  width: 192px;
}

.w-64 {
  width: 256px;
}

.w-auto {
  width: auto;
}

.w-px {
  width: 1px;
}

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

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

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

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

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

.w-1\/5 {
  width: 20%;
}

.w-2\/5 {
  width: 40%;
}

.w-3\/5 {
  width: 60%;
}

.w-4\/5 {
  width: 80%;
}

.w-1\/6 {
  width: 16.66667%;
}

.w-1\/10 {
  width: 10%;
}

.w-5\/6 {
  width: 83.33333%;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-auto {
  z-index: auto;
}

/**
 * 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";
 */

.border-box {
  box-sizing: border-box;
}

.underline {
  text-decoration: underline;
}

.text-preamble {
  font-size: 22px;
}

@media (min-width: 960px) {
  .text-preamble {
    font-size: 26px;
  }
}

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

.transition-all {
  transition: all .15s ease-in-out;
}

@media (min-width: 320px) {
  .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-black-50 {
    background-color: rgba(0, 0, 0, .5);
  }

  .sm\:bg-dark-gray {
    background-color: #3e3e3e;
  }

  .sm\:bg-light-gray {
    background-color: #f5f5f5;
  }

  .sm\:bg-meta-gray {
    background-color: #595959;
  }

  .sm\:bg-purple-dark {
    background-color: #45247f;
  }

  .sm\:bg-red-dark {
    background-color: #cd1936;
  }

  .sm\:bg-black {
    background-color: #000;
  }

  .sm\:bg-blue {
    background-color: #42b6da;
  }

  .sm\:bg-facebook {
    background-color: #3b5998;
  }

  .sm\:bg-gray {
    background-color: #e5e5e5;
  }

  .sm\:bg-green {
    background-color: #63c29e;
  }

  .sm\:bg-linkedin {
    background-color: #0077b5;
  }

  .sm\:bg-orange {
    background-color: #ed8123;
  }

  .sm\:bg-pink {
    background-color: #e85e9c;
  }

  .sm\:bg-purple {
    background-color: #7a6cb2;
  }

  .sm\:bg-red {
    background-color: #e31d3c;
  }

  .sm\:bg-rss {
    background-color: #fb9f1c;
  }

  .sm\:bg-twitter {
    background-color: #1da1f2;
  }

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

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

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

  .sm\:hover\:bg-dark-gray:hover {
    background-color: #3e3e3e;
  }

  .sm\:hover\:bg-light-gray:hover {
    background-color: #f5f5f5;
  }

  .sm\:hover\:bg-meta-gray:hover {
    background-color: #595959;
  }

  .sm\:hover\:bg-purple-dark:hover {
    background-color: #45247f;
  }

  .sm\:hover\:bg-red-dark:hover {
    background-color: #cd1936;
  }

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

  .sm\:hover\:bg-blue:hover {
    background-color: #42b6da;
  }

  .sm\:hover\:bg-facebook:hover {
    background-color: #3b5998;
  }

  .sm\:hover\:bg-gray:hover {
    background-color: #e5e5e5;
  }

  .sm\:hover\:bg-green:hover {
    background-color: #63c29e;
  }

  .sm\:hover\:bg-linkedin:hover {
    background-color: #0077b5;
  }

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

  .sm\:hover\:bg-pink:hover {
    background-color: #e85e9c;
  }

  .sm\:hover\:bg-purple:hover {
    background-color: #7a6cb2;
  }

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

  .sm\:hover\:bg-rss:hover {
    background-color: #fb9f1c;
  }

  .sm\:hover\:bg-twitter:hover {
    background-color: #1da1f2;
  }

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

  .sm\:focus\:bg-transparent:focus {
    background-color: transparent;
  }

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

  .sm\:focus\:bg-dark-gray:focus {
    background-color: #3e3e3e;
  }

  .sm\:focus\:bg-light-gray:focus {
    background-color: #f5f5f5;
  }

  .sm\:focus\:bg-meta-gray:focus {
    background-color: #595959;
  }

  .sm\:focus\:bg-purple-dark:focus {
    background-color: #45247f;
  }

  .sm\:focus\:bg-red-dark:focus {
    background-color: #cd1936;
  }

  .sm\:focus\:bg-black:focus {
    background-color: #000;
  }

  .sm\:focus\:bg-blue:focus {
    background-color: #42b6da;
  }

  .sm\:focus\:bg-facebook:focus {
    background-color: #3b5998;
  }

  .sm\:focus\:bg-gray:focus {
    background-color: #e5e5e5;
  }

  .sm\:focus\:bg-green:focus {
    background-color: #63c29e;
  }

  .sm\:focus\:bg-linkedin:focus {
    background-color: #0077b5;
  }

  .sm\:focus\:bg-orange:focus {
    background-color: #ed8123;
  }

  .sm\:focus\:bg-pink:focus {
    background-color: #e85e9c;
  }

  .sm\:focus\:bg-purple:focus {
    background-color: #7a6cb2;
  }

  .sm\:focus\:bg-red:focus {
    background-color: #e31d3c;
  }

  .sm\:focus\:bg-rss:focus {
    background-color: #fb9f1c;
  }

  .sm\:focus\:bg-twitter:focus {
    background-color: #1da1f2;
  }

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

  .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-black-50 {
    border-color: rgba(0, 0, 0, .5);
  }

  .sm\:border-dark-gray {
    border-color: #3e3e3e;
  }

  .sm\:border-light-gray {
    border-color: #f5f5f5;
  }

  .sm\:border-meta-gray {
    border-color: #595959;
  }

  .sm\:border-purple-dark {
    border-color: #45247f;
  }

  .sm\:border-red-dark {
    border-color: #cd1936;
  }

  .sm\:border-black {
    border-color: #000;
  }

  .sm\:border-blue {
    border-color: #42b6da;
  }

  .sm\:border-facebook {
    border-color: #3b5998;
  }

  .sm\:border-gray {
    border-color: #e5e5e5;
  }

  .sm\:border-green {
    border-color: #63c29e;
  }

  .sm\:border-linkedin {
    border-color: #0077b5;
  }

  .sm\:border-orange {
    border-color: #ed8123;
  }

  .sm\:border-pink {
    border-color: #e85e9c;
  }

  .sm\:border-purple {
    border-color: #7a6cb2;
  }

  .sm\:border-red {
    border-color: #e31d3c;
  }

  .sm\:border-rss {
    border-color: #fb9f1c;
  }

  .sm\:border-twitter {
    border-color: #1da1f2;
  }

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

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

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

  .sm\:hover\:border-dark-gray:hover {
    border-color: #3e3e3e;
  }

  .sm\:hover\:border-light-gray:hover {
    border-color: #f5f5f5;
  }

  .sm\:hover\:border-meta-gray:hover {
    border-color: #595959;
  }

  .sm\:hover\:border-purple-dark:hover {
    border-color: #45247f;
  }

  .sm\:hover\:border-red-dark:hover {
    border-color: #cd1936;
  }

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

  .sm\:hover\:border-blue:hover {
    border-color: #42b6da;
  }

  .sm\:hover\:border-facebook:hover {
    border-color: #3b5998;
  }

  .sm\:hover\:border-gray:hover {
    border-color: #e5e5e5;
  }

  .sm\:hover\:border-green:hover {
    border-color: #63c29e;
  }

  .sm\:hover\:border-linkedin:hover {
    border-color: #0077b5;
  }

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

  .sm\:hover\:border-pink:hover {
    border-color: #e85e9c;
  }

  .sm\:hover\:border-purple:hover {
    border-color: #7a6cb2;
  }

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

  .sm\:hover\:border-rss:hover {
    border-color: #fb9f1c;
  }

  .sm\:hover\:border-twitter:hover {
    border-color: #1da1f2;
  }

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

  .sm\:focus\:border-transparent:focus {
    border-color: transparent;
  }

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

  .sm\:focus\:border-dark-gray:focus {
    border-color: #3e3e3e;
  }

  .sm\:focus\:border-light-gray:focus {
    border-color: #f5f5f5;
  }

  .sm\:focus\:border-meta-gray:focus {
    border-color: #595959;
  }

  .sm\:focus\:border-purple-dark:focus {
    border-color: #45247f;
  }

  .sm\:focus\:border-red-dark:focus {
    border-color: #cd1936;
  }

  .sm\:focus\:border-black:focus {
    border-color: #000;
  }

  .sm\:focus\:border-blue:focus {
    border-color: #42b6da;
  }

  .sm\:focus\:border-facebook:focus {
    border-color: #3b5998;
  }

  .sm\:focus\:border-gray:focus {
    border-color: #e5e5e5;
  }

  .sm\:focus\:border-green:focus {
    border-color: #63c29e;
  }

  .sm\:focus\:border-linkedin:focus {
    border-color: #0077b5;
  }

  .sm\:focus\:border-orange:focus {
    border-color: #ed8123;
  }

  .sm\:focus\:border-pink:focus {
    border-color: #e85e9c;
  }

  .sm\:focus\:border-purple:focus {
    border-color: #7a6cb2;
  }

  .sm\:focus\:border-red:focus {
    border-color: #e31d3c;
  }

  .sm\:focus\:border-rss:focus {
    border-color: #fb9f1c;
  }

  .sm\:focus\:border-twitter:focus {
    border-color: #1da1f2;
  }

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

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

  .sm\:rounded {
    border-radius: 8px;
  }

  .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 {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .sm\:rounded-r {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .sm\:rounded-b {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .sm\:rounded-l {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .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 {
    border-top-left-radius: 8px;
  }

  .sm\:rounded-tr {
    border-top-right-radius: 8px;
  }

  .sm\:rounded-br {
    border-bottom-right-radius: 8px;
  }

  .sm\:rounded-bl {
    border-bottom-left-radius: 8px;
  }

  .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-4 {
    border-width: 4px;
  }

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

  .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-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-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 {
    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: flex;
  }

  .sm\:inline-flex {
    display: inline-flex;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:flex-col-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 {
    align-items: flex-start;
  }

  .sm\:items-end {
    align-items: flex-end;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:items-baseline {
    align-items: baseline;
  }

  .sm\:items-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 {
    justify-content: flex-start;
  }

  .sm\:justify-end {
    justify-content: flex-end;
  }

  .sm\:justify-center {
    justify-content: center;
  }

  .sm\:justify-between {
    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 {
    flex: 1 1 0%;
  }

  .sm\:flex-auto {
    flex: 1 1 auto;
  }

  .sm\:flex-initial {
    flex: 0 1 auto;
  }

  .sm\:flex-none {
    flex: none;
  }

  .sm\:flex-grow {
    flex-grow: 1;
  }

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

  .sm\:flex-no-grow {
    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-futura {
    font-family: Futura, Helvetica Neue, Helvetica, sans-serif;
  }

  .sm\:font-hairline {
    font-weight: 100;
  }

  .sm\:font-thin {
    font-weight: 200;
  }

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

  .sm\:hover\:font-hairline:hover {
    font-weight: 100;
  }

  .sm\:hover\:font-thin:hover {
    font-weight: 200;
  }

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

  .sm\:focus\:font-hairline:focus {
    font-weight: 100;
  }

  .sm\:focus\:font-thin:focus {
    font-weight: 200;
  }

  .sm\:focus\:font-light:focus {
    font-weight: 300;
  }

  .sm\:focus\:font-normal:focus {
    font-weight: 400;
  }

  .sm\:focus\:font-medium:focus {
    font-weight: 500;
  }

  .sm\:focus\:font-semibold:focus {
    font-weight: 600;
  }

  .sm\:focus\:font-bold:focus {
    font-weight: 700;
  }

  .sm\:focus\:font-extrabold:focus {
    font-weight: 800;
  }

  .sm\:focus\:font-black:focus {
    font-weight: 900;
  }

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

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

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

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

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

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

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

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

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

  .sm\:m-0 {
    margin: 0;
  }

  .sm\:m-1 {
    margin: 4px;
  }

  .sm\:m-2 {
    margin: 8px;
  }

  .sm\:m-3 {
    margin: 12px;
  }

  .sm\:m-4 {
    margin: 16px;
  }

  .sm\:m-5 {
    margin: 20px;
  }

  .sm\:m-6 {
    margin: 24px;
  }

  .sm\:m-8 {
    margin: 32px;
  }

  .sm\:m-10 {
    margin: 40px;
  }

  .sm\:m-12 {
    margin: 48px;
  }

  .sm\:m-16 {
    margin: 64px;
  }

  .sm\:m-20 {
    margin: 80px;
  }

  .sm\:m-24 {
    margin: 96px;
  }

  .sm\:m-32 {
    margin: 128px;
  }

  .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: 4px;
    margin-bottom: 4px;
  }

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

  .sm\:my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .sm\:mx-2 {
    margin-left: 8px;
    margin-right: 8px;
  }

  .sm\:my-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .sm\:mx-3 {
    margin-left: 12px;
    margin-right: 12px;
  }

  .sm\:my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .sm\:mx-4 {
    margin-left: 16px;
    margin-right: 16px;
  }

  .sm\:my-5 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .sm\:mx-5 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .sm\:my-6 {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .sm\:mx-6 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .sm\:my-8 {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .sm\:mx-8 {
    margin-left: 32px;
    margin-right: 32px;
  }

  .sm\:my-10 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .sm\:mx-10 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .sm\:my-12 {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .sm\:mx-12 {
    margin-left: 48px;
    margin-right: 48px;
  }

  .sm\:my-16 {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .sm\:mx-16 {
    margin-left: 64px;
    margin-right: 64px;
  }

  .sm\:my-20 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .sm\:mx-20 {
    margin-left: 80px;
    margin-right: 80px;
  }

  .sm\:my-24 {
    margin-top: 96px;
    margin-bottom: 96px;
  }

  .sm\:mx-24 {
    margin-left: 96px;
    margin-right: 96px;
  }

  .sm\:my-32 {
    margin-top: 128px;
    margin-bottom: 128px;
  }

  .sm\:mx-32 {
    margin-left: 128px;
    margin-right: 128px;
  }

  .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: 4px;
  }

  .sm\:mr-1 {
    margin-right: 4px;
  }

  .sm\:mb-1 {
    margin-bottom: 4px;
  }

  .sm\:ml-1 {
    margin-left: 4px;
  }

  .sm\:mt-2 {
    margin-top: 8px;
  }

  .sm\:mr-2 {
    margin-right: 8px;
  }

  .sm\:mb-2 {
    margin-bottom: 8px;
  }

  .sm\:ml-2 {
    margin-left: 8px;
  }

  .sm\:mt-3 {
    margin-top: 12px;
  }

  .sm\:mr-3 {
    margin-right: 12px;
  }

  .sm\:mb-3 {
    margin-bottom: 12px;
  }

  .sm\:ml-3 {
    margin-left: 12px;
  }

  .sm\:mt-4 {
    margin-top: 16px;
  }

  .sm\:mr-4 {
    margin-right: 16px;
  }

  .sm\:mb-4 {
    margin-bottom: 16px;
  }

  .sm\:ml-4 {
    margin-left: 16px;
  }

  .sm\:mt-5 {
    margin-top: 20px;
  }

  .sm\:mr-5 {
    margin-right: 20px;
  }

  .sm\:mb-5 {
    margin-bottom: 20px;
  }

  .sm\:ml-5 {
    margin-left: 20px;
  }

  .sm\:mt-6 {
    margin-top: 24px;
  }

  .sm\:mr-6 {
    margin-right: 24px;
  }

  .sm\:mb-6 {
    margin-bottom: 24px;
  }

  .sm\:ml-6 {
    margin-left: 24px;
  }

  .sm\:mt-8 {
    margin-top: 32px;
  }

  .sm\:mr-8 {
    margin-right: 32px;
  }

  .sm\:mb-8 {
    margin-bottom: 32px;
  }

  .sm\:ml-8 {
    margin-left: 32px;
  }

  .sm\:mt-10 {
    margin-top: 40px;
  }

  .sm\:mr-10 {
    margin-right: 40px;
  }

  .sm\:mb-10 {
    margin-bottom: 40px;
  }

  .sm\:ml-10 {
    margin-left: 40px;
  }

  .sm\:mt-12 {
    margin-top: 48px;
  }

  .sm\:mr-12 {
    margin-right: 48px;
  }

  .sm\:mb-12 {
    margin-bottom: 48px;
  }

  .sm\:ml-12 {
    margin-left: 48px;
  }

  .sm\:mt-16 {
    margin-top: 64px;
  }

  .sm\:mr-16 {
    margin-right: 64px;
  }

  .sm\:mb-16 {
    margin-bottom: 64px;
  }

  .sm\:ml-16 {
    margin-left: 64px;
  }

  .sm\:mt-20 {
    margin-top: 80px;
  }

  .sm\:mr-20 {
    margin-right: 80px;
  }

  .sm\:mb-20 {
    margin-bottom: 80px;
  }

  .sm\:ml-20 {
    margin-left: 80px;
  }

  .sm\:mt-24 {
    margin-top: 96px;
  }

  .sm\:mr-24 {
    margin-right: 96px;
  }

  .sm\:mb-24 {
    margin-bottom: 96px;
  }

  .sm\:ml-24 {
    margin-left: 96px;
  }

  .sm\:mt-32 {
    margin-top: 128px;
  }

  .sm\:mr-32 {
    margin-right: 128px;
  }

  .sm\:mb-32 {
    margin-bottom: 128px;
  }

  .sm\:ml-32 {
    margin-left: 128px;
  }

  .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-100 {
    max-height: 100px;
  }

  .sm\:max-h-120 {
    max-height: 120px;
  }

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

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

  .sm\:max-w-xs {
    max-width: 640px;
  }

  .sm\:max-w-sm {
    max-width: 720px;
  }

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

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

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

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

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

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

  .sm\:-m-1 {
    margin: -4px;
  }

  .sm\:-m-2 {
    margin: -8px;
  }

  .sm\:-m-3 {
    margin: -12px;
  }

  .sm\:-m-4 {
    margin: -16px;
  }

  .sm\:-m-5 {
    margin: -20px;
  }

  .sm\:-m-6 {
    margin: -24px;
  }

  .sm\:-m-8 {
    margin: -32px;
  }

  .sm\:-m-10 {
    margin: -40px;
  }

  .sm\:-m-12 {
    margin: -48px;
  }

  .sm\:-m-16 {
    margin: -64px;
  }

  .sm\:-m-20 {
    margin: -80px;
  }

  .sm\:-m-24 {
    margin: -96px;
  }

  .sm\:-m-32 {
    margin: -128px;
  }

  .sm\:-m-px {
    margin: -1px;
  }

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

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

  .sm\:-my-2 {
    margin-top: -8px;
    margin-bottom: -8px;
  }

  .sm\:-mx-2 {
    margin-left: -8px;
    margin-right: -8px;
  }

  .sm\:-my-3 {
    margin-top: -12px;
    margin-bottom: -12px;
  }

  .sm\:-mx-3 {
    margin-left: -12px;
    margin-right: -12px;
  }

  .sm\:-my-4 {
    margin-top: -16px;
    margin-bottom: -16px;
  }

  .sm\:-mx-4 {
    margin-left: -16px;
    margin-right: -16px;
  }

  .sm\:-my-5 {
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .sm\:-mx-5 {
    margin-left: -20px;
    margin-right: -20px;
  }

  .sm\:-my-6 {
    margin-top: -24px;
    margin-bottom: -24px;
  }

  .sm\:-mx-6 {
    margin-left: -24px;
    margin-right: -24px;
  }

  .sm\:-my-8 {
    margin-top: -32px;
    margin-bottom: -32px;
  }

  .sm\:-mx-8 {
    margin-left: -32px;
    margin-right: -32px;
  }

  .sm\:-my-10 {
    margin-top: -40px;
    margin-bottom: -40px;
  }

  .sm\:-mx-10 {
    margin-left: -40px;
    margin-right: -40px;
  }

  .sm\:-my-12 {
    margin-top: -48px;
    margin-bottom: -48px;
  }

  .sm\:-mx-12 {
    margin-left: -48px;
    margin-right: -48px;
  }

  .sm\:-my-16 {
    margin-top: -64px;
    margin-bottom: -64px;
  }

  .sm\:-mx-16 {
    margin-left: -64px;
    margin-right: -64px;
  }

  .sm\:-my-20 {
    margin-top: -80px;
    margin-bottom: -80px;
  }

  .sm\:-mx-20 {
    margin-left: -80px;
    margin-right: -80px;
  }

  .sm\:-my-24 {
    margin-top: -96px;
    margin-bottom: -96px;
  }

  .sm\:-mx-24 {
    margin-left: -96px;
    margin-right: -96px;
  }

  .sm\:-my-32 {
    margin-top: -128px;
    margin-bottom: -128px;
  }

  .sm\:-mx-32 {
    margin-left: -128px;
    margin-right: -128px;
  }

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

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

  .sm\:-mt-1 {
    margin-top: -4px;
  }

  .sm\:-mr-1 {
    margin-right: -4px;
  }

  .sm\:-mb-1 {
    margin-bottom: -4px;
  }

  .sm\:-ml-1 {
    margin-left: -4px;
  }

  .sm\:-mt-2 {
    margin-top: -8px;
  }

  .sm\:-mr-2 {
    margin-right: -8px;
  }

  .sm\:-mb-2 {
    margin-bottom: -8px;
  }

  .sm\:-ml-2 {
    margin-left: -8px;
  }

  .sm\:-mt-3 {
    margin-top: -12px;
  }

  .sm\:-mr-3 {
    margin-right: -12px;
  }

  .sm\:-mb-3 {
    margin-bottom: -12px;
  }

  .sm\:-ml-3 {
    margin-left: -12px;
  }

  .sm\:-mt-4 {
    margin-top: -16px;
  }

  .sm\:-mr-4 {
    margin-right: -16px;
  }

  .sm\:-mb-4 {
    margin-bottom: -16px;
  }

  .sm\:-ml-4 {
    margin-left: -16px;
  }

  .sm\:-mt-5 {
    margin-top: -20px;
  }

  .sm\:-mr-5 {
    margin-right: -20px;
  }

  .sm\:-mb-5 {
    margin-bottom: -20px;
  }

  .sm\:-ml-5 {
    margin-left: -20px;
  }

  .sm\:-mt-6 {
    margin-top: -24px;
  }

  .sm\:-mr-6 {
    margin-right: -24px;
  }

  .sm\:-mb-6 {
    margin-bottom: -24px;
  }

  .sm\:-ml-6 {
    margin-left: -24px;
  }

  .sm\:-mt-8 {
    margin-top: -32px;
  }

  .sm\:-mr-8 {
    margin-right: -32px;
  }

  .sm\:-mb-8 {
    margin-bottom: -32px;
  }

  .sm\:-ml-8 {
    margin-left: -32px;
  }

  .sm\:-mt-10 {
    margin-top: -40px;
  }

  .sm\:-mr-10 {
    margin-right: -40px;
  }

  .sm\:-mb-10 {
    margin-bottom: -40px;
  }

  .sm\:-ml-10 {
    margin-left: -40px;
  }

  .sm\:-mt-12 {
    margin-top: -48px;
  }

  .sm\:-mr-12 {
    margin-right: -48px;
  }

  .sm\:-mb-12 {
    margin-bottom: -48px;
  }

  .sm\:-ml-12 {
    margin-left: -48px;
  }

  .sm\:-mt-16 {
    margin-top: -64px;
  }

  .sm\:-mr-16 {
    margin-right: -64px;
  }

  .sm\:-mb-16 {
    margin-bottom: -64px;
  }

  .sm\:-ml-16 {
    margin-left: -64px;
  }

  .sm\:-mt-20 {
    margin-top: -80px;
  }

  .sm\:-mr-20 {
    margin-right: -80px;
  }

  .sm\:-mb-20 {
    margin-bottom: -80px;
  }

  .sm\:-ml-20 {
    margin-left: -80px;
  }

  .sm\:-mt-24 {
    margin-top: -96px;
  }

  .sm\:-mr-24 {
    margin-right: -96px;
  }

  .sm\:-mb-24 {
    margin-bottom: -96px;
  }

  .sm\:-ml-24 {
    margin-left: -96px;
  }

  .sm\:-mt-32 {
    margin-top: -128px;
  }

  .sm\:-mr-32 {
    margin-right: -128px;
  }

  .sm\:-mb-32 {
    margin-bottom: -128px;
  }

  .sm\:-ml-32 {
    margin-left: -128px;
  }

  .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-hidden {
    overflow-x: hidden;
  }

  .sm\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .sm\:overflow-x-visible {
    overflow-x: visible;
  }

  .sm\:overflow-y-visible {
    overflow-y: visible;
  }

  .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: 4px;
  }

  .sm\:p-2 {
    padding: 8px;
  }

  .sm\:p-3 {
    padding: 12px;
  }

  .sm\:p-4 {
    padding: 16px;
  }

  .sm\:p-5 {
    padding: 20px;
  }

  .sm\:p-6 {
    padding: 24px;
  }

  .sm\:p-8 {
    padding: 32px;
  }

  .sm\:p-10 {
    padding: 40px;
  }

  .sm\:p-12 {
    padding: 48px;
  }

  .sm\:p-16 {
    padding: 64px;
  }

  .sm\:p-20 {
    padding: 80px;
  }

  .sm\:p-24 {
    padding: 96px;
  }

  .sm\:p-32 {
    padding: 128px;
  }

  .sm\:p-px {
    padding: 1px;
  }

  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .sm\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .sm\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .sm\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .sm\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .sm\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sm\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .sm\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sm\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sm\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sm\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .sm\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sm\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .sm\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .sm\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sm\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sm\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .sm\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .sm\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .sm\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .sm\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sm\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .sm\:py-24 {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .sm\:px-24 {
    padding-left: 96px;
    padding-right: 96px;
  }

  .sm\:py-32 {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .sm\:px-32 {
    padding-left: 128px;
    padding-right: 128px;
  }

  .sm\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .sm\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .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: 4px;
  }

  .sm\:pr-1 {
    padding-right: 4px;
  }

  .sm\:pb-1 {
    padding-bottom: 4px;
  }

  .sm\:pl-1 {
    padding-left: 4px;
  }

  .sm\:pt-2 {
    padding-top: 8px;
  }

  .sm\:pr-2 {
    padding-right: 8px;
  }

  .sm\:pb-2 {
    padding-bottom: 8px;
  }

  .sm\:pl-2 {
    padding-left: 8px;
  }

  .sm\:pt-3 {
    padding-top: 12px;
  }

  .sm\:pr-3 {
    padding-right: 12px;
  }

  .sm\:pb-3 {
    padding-bottom: 12px;
  }

  .sm\:pl-3 {
    padding-left: 12px;
  }

  .sm\:pt-4 {
    padding-top: 16px;
  }

  .sm\:pr-4 {
    padding-right: 16px;
  }

  .sm\:pb-4 {
    padding-bottom: 16px;
  }

  .sm\:pl-4 {
    padding-left: 16px;
  }

  .sm\:pt-5 {
    padding-top: 20px;
  }

  .sm\:pr-5 {
    padding-right: 20px;
  }

  .sm\:pb-5 {
    padding-bottom: 20px;
  }

  .sm\:pl-5 {
    padding-left: 20px;
  }

  .sm\:pt-6 {
    padding-top: 24px;
  }

  .sm\:pr-6 {
    padding-right: 24px;
  }

  .sm\:pb-6 {
    padding-bottom: 24px;
  }

  .sm\:pl-6 {
    padding-left: 24px;
  }

  .sm\:pt-8 {
    padding-top: 32px;
  }

  .sm\:pr-8 {
    padding-right: 32px;
  }

  .sm\:pb-8 {
    padding-bottom: 32px;
  }

  .sm\:pl-8 {
    padding-left: 32px;
  }

  .sm\:pt-10 {
    padding-top: 40px;
  }

  .sm\:pr-10 {
    padding-right: 40px;
  }

  .sm\:pb-10 {
    padding-bottom: 40px;
  }

  .sm\:pl-10 {
    padding-left: 40px;
  }

  .sm\:pt-12 {
    padding-top: 48px;
  }

  .sm\:pr-12 {
    padding-right: 48px;
  }

  .sm\:pb-12 {
    padding-bottom: 48px;
  }

  .sm\:pl-12 {
    padding-left: 48px;
  }

  .sm\:pt-16 {
    padding-top: 64px;
  }

  .sm\:pr-16 {
    padding-right: 64px;
  }

  .sm\:pb-16 {
    padding-bottom: 64px;
  }

  .sm\:pl-16 {
    padding-left: 64px;
  }

  .sm\:pt-20 {
    padding-top: 80px;
  }

  .sm\:pr-20 {
    padding-right: 80px;
  }

  .sm\:pb-20 {
    padding-bottom: 80px;
  }

  .sm\:pl-20 {
    padding-left: 80px;
  }

  .sm\:pt-24 {
    padding-top: 96px;
  }

  .sm\:pr-24 {
    padding-right: 96px;
  }

  .sm\:pb-24 {
    padding-bottom: 96px;
  }

  .sm\:pl-24 {
    padding-left: 96px;
  }

  .sm\:pt-32 {
    padding-top: 128px;
  }

  .sm\:pr-32 {
    padding-right: 128px;
  }

  .sm\:pb-32 {
    padding-bottom: 128px;
  }

  .sm\:pl-32 {
    padding-left: 128px;
  }

  .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\: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\:resize-none {
    resize: none;
  }

  .sm\:resize-y {
    resize: vertical;
  }

  .sm\:resize-x {
    resize: horizontal;
  }

  .sm\:resize {
    resize: both;
  }

  .sm\:shadow-outline-transparent {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .sm\:shadow-outline-black-50 {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .sm\:shadow-outline-dark-gray {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .sm\:shadow-outline-light-gray {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .sm\:shadow-outline-meta-gray {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .sm\:shadow-outline-purple-dark {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .sm\:shadow-outline-red-dark {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .sm\:shadow-outline-black {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .sm\:shadow-outline-blue {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .sm\:shadow-outline-facebook {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .sm\:shadow-outline-gray {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .sm\:shadow-outline-green {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .sm\:shadow-outline-linkedin {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .sm\:shadow-outline-orange {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .sm\:shadow-outline-pink {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .sm\:shadow-outline-purple {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .sm\:shadow-outline-red {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .sm\:shadow-outline-rss {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .sm\:shadow-outline-twitter {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .sm\:shadow-outline-white {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .sm\:shadow-darken {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .sm\:hover\:shadow-outline-transparent:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .sm\:hover\:shadow-outline-black-50:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .sm\:hover\:shadow-outline-dark-gray:hover {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .sm\:hover\:shadow-outline-light-gray:hover {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .sm\:hover\:shadow-outline-meta-gray:hover {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .sm\:hover\:shadow-outline-purple-dark:hover {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .sm\:hover\:shadow-outline-red-dark:hover {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .sm\:hover\:shadow-outline-black:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .sm\:hover\:shadow-outline-blue:hover {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .sm\:hover\:shadow-outline-facebook:hover {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .sm\:hover\:shadow-outline-gray:hover {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .sm\:hover\:shadow-outline-green:hover {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .sm\:hover\:shadow-outline-linkedin:hover {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .sm\:hover\:shadow-outline-orange:hover {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .sm\:hover\:shadow-outline-pink:hover {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .sm\:hover\:shadow-outline-purple:hover {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .sm\:hover\:shadow-outline-red:hover {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .sm\:hover\:shadow-outline-rss:hover {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .sm\:hover\:shadow-outline-twitter:hover {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .sm\:hover\:shadow-outline-white:hover {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .sm\:hover\:shadow-darken:hover {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .sm\:focus\:shadow-outline-transparent:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .sm\:focus\:shadow-outline-black-50:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .sm\:focus\:shadow-outline-dark-gray:focus {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .sm\:focus\:shadow-outline-light-gray:focus {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .sm\:focus\:shadow-outline-meta-gray:focus {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .sm\:focus\:shadow-outline-purple-dark:focus {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .sm\:focus\:shadow-outline-red-dark:focus {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .sm\:focus\:shadow-outline-black:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .sm\:focus\:shadow-outline-blue:focus {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .sm\:focus\:shadow-outline-facebook:focus {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .sm\:focus\:shadow-outline-gray:focus {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .sm\:focus\:shadow-outline-green:focus {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .sm\:focus\:shadow-outline-linkedin:focus {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .sm\:focus\:shadow-outline-orange:focus {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .sm\:focus\:shadow-outline-pink:focus {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .sm\:focus\:shadow-outline-purple:focus {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .sm\:focus\:shadow-outline-red:focus {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .sm\:focus\:shadow-outline-rss:focus {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .sm\:focus\:shadow-outline-twitter:focus {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .sm\:focus\:shadow-outline-white:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .sm\:focus\:shadow-darken:focus {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .sm\:table-auto {
    table-layout: auto;
  }

  .sm\:table-fixed {
    table-layout: fixed;
  }

  .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-black-50 {
    color: rgba(0, 0, 0, .5);
  }

  .sm\:text-dark-gray {
    color: #3e3e3e;
  }

  .sm\:text-light-gray {
    color: #f5f5f5;
  }

  .sm\:text-meta-gray {
    color: #595959;
  }

  .sm\:text-purple-dark {
    color: #45247f;
  }

  .sm\:text-red-dark {
    color: #cd1936;
  }

  .sm\:text-black {
    color: #000;
  }

  .sm\:text-blue {
    color: #42b6da;
  }

  .sm\:text-facebook {
    color: #3b5998;
  }

  .sm\:text-gray {
    color: #e5e5e5;
  }

  .sm\:text-green {
    color: #63c29e;
  }

  .sm\:text-linkedin {
    color: #0077b5;
  }

  .sm\:text-orange {
    color: #ed8123;
  }

  .sm\:text-pink {
    color: #e85e9c;
  }

  .sm\:text-purple {
    color: #7a6cb2;
  }

  .sm\:text-red {
    color: #e31d3c;
  }

  .sm\:text-rss {
    color: #fb9f1c;
  }

  .sm\:text-twitter {
    color: #1da1f2;
  }

  .sm\:text-white {
    color: #fff;
  }

  .sm\:text-inherit {
    color: inherit;
  }

  .sm\:hover\:text-transparent:hover {
    color: transparent;
  }

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

  .sm\:hover\:text-dark-gray:hover {
    color: #3e3e3e;
  }

  .sm\:hover\:text-light-gray:hover {
    color: #f5f5f5;
  }

  .sm\:hover\:text-meta-gray:hover {
    color: #595959;
  }

  .sm\:hover\:text-purple-dark:hover {
    color: #45247f;
  }

  .sm\:hover\:text-red-dark:hover {
    color: #cd1936;
  }

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

  .sm\:hover\:text-blue:hover {
    color: #42b6da;
  }

  .sm\:hover\:text-facebook:hover {
    color: #3b5998;
  }

  .sm\:hover\:text-gray:hover {
    color: #e5e5e5;
  }

  .sm\:hover\:text-green:hover {
    color: #63c29e;
  }

  .sm\:hover\:text-linkedin:hover {
    color: #0077b5;
  }

  .sm\:hover\:text-orange:hover {
    color: #ed8123;
  }

  .sm\:hover\:text-pink:hover {
    color: #e85e9c;
  }

  .sm\:hover\:text-purple:hover {
    color: #7a6cb2;
  }

  .sm\:hover\:text-red:hover {
    color: #e31d3c;
  }

  .sm\:hover\:text-rss:hover {
    color: #fb9f1c;
  }

  .sm\:hover\:text-twitter:hover {
    color: #1da1f2;
  }

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

  .sm\:hover\:text-inherit:hover {
    color: inherit;
  }

  .sm\:focus\:text-transparent:focus {
    color: transparent;
  }

  .sm\:focus\:text-black-50:focus {
    color: rgba(0, 0, 0, .5);
  }

  .sm\:focus\:text-dark-gray:focus {
    color: #3e3e3e;
  }

  .sm\:focus\:text-light-gray:focus {
    color: #f5f5f5;
  }

  .sm\:focus\:text-meta-gray:focus {
    color: #595959;
  }

  .sm\:focus\:text-purple-dark:focus {
    color: #45247f;
  }

  .sm\:focus\:text-red-dark:focus {
    color: #cd1936;
  }

  .sm\:focus\:text-black:focus {
    color: #000;
  }

  .sm\:focus\:text-blue:focus {
    color: #42b6da;
  }

  .sm\:focus\:text-facebook:focus {
    color: #3b5998;
  }

  .sm\:focus\:text-gray:focus {
    color: #e5e5e5;
  }

  .sm\:focus\:text-green:focus {
    color: #63c29e;
  }

  .sm\:focus\:text-linkedin:focus {
    color: #0077b5;
  }

  .sm\:focus\:text-orange:focus {
    color: #ed8123;
  }

  .sm\:focus\:text-pink:focus {
    color: #e85e9c;
  }

  .sm\:focus\:text-purple:focus {
    color: #7a6cb2;
  }

  .sm\:focus\:text-red:focus {
    color: #e31d3c;
  }

  .sm\:focus\:text-rss:focus {
    color: #fb9f1c;
  }

  .sm\:focus\:text-twitter:focus {
    color: #1da1f2;
  }

  .sm\:focus\:text-white:focus {
    color: #fff;
  }

  .sm\:focus\:text-inherit:focus {
    color: inherit;
  }

  .sm\:text-xs {
    font-size: 12px;
  }

  .sm\:text-sm {
    font-size: 14px;
  }

  .sm\:text-md {
    font-size: 16px;
  }

  .sm\:text-lg {
    font-size: 18px;
  }

  .sm\:text-xl {
    font-size: 20px;
  }

  .sm\:text-2xl {
    font-size: 22px;
  }

  .sm\:text-3xl {
    font-size: 24px;
  }

  .sm\:text-4xl {
    font-size: 26px;
  }

  .sm\:text-5xl {
    font-size: 30px;
  }

  .sm\:text-6xl {
    font-size: 36px;
  }

  .sm\:text-7xl {
    font-size: 48px;
  }

  .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\:focus\:italic:focus {
    font-style: italic;
  }

  .sm\:focus\:roman:focus {
    font-style: normal;
  }

  .sm\:focus\:uppercase:focus {
    text-transform: uppercase;
  }

  .sm\:focus\:lowercase:focus {
    text-transform: lowercase;
  }

  .sm\:focus\:capitalize:focus {
    text-transform: capitalize;
  }

  .sm\:focus\:normal-case:focus {
    text-transform: none;
  }

  .sm\:focus\:underline:focus {
    text-decoration: underline;
  }

  .sm\:focus\:line-through:focus {
    text-decoration: line-through;
  }

  .sm\:focus\:no-underline:focus {
    text-decoration: none;
  }

  .sm\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sm\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .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-1 {
    width: 4px;
  }

  .sm\:w-2 {
    width: 8px;
  }

  .sm\:w-3 {
    width: 12px;
  }

  .sm\:w-4 {
    width: 16px;
  }

  .sm\:w-5 {
    width: 20px;
  }

  .sm\:w-6 {
    width: 24px;
  }

  .sm\:w-8 {
    width: 32px;
  }

  .sm\:w-10 {
    width: 40px;
  }

  .sm\:w-12 {
    width: 48px;
  }

  .sm\:w-14 {
    width: 56px;
  }

  .sm\:w-16 {
    width: 64px;
  }

  .sm\:w-24 {
    width: 96px;
  }

  .sm\:w-32 {
    width: 128px;
  }

  .sm\:w-48 {
    width: 192px;
  }

  .sm\:w-64 {
    width: 256px;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:w-px {
    width: 1px;
  }

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

  .sm\:w-1\/3 {
    width: 33.33333%;
  }

  .sm\:w-2\/3 {
    width: 66.66667%;
  }

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

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

  .sm\:w-1\/5 {
    width: 20%;
  }

  .sm\:w-2\/5 {
    width: 40%;
  }

  .sm\:w-3\/5 {
    width: 60%;
  }

  .sm\:w-4\/5 {
    width: 80%;
  }

  .sm\:w-1\/6 {
    width: 16.66667%;
  }

  .sm\:w-1\/10 {
    width: 10%;
  }

  .sm\:w-5\/6 {
    width: 83.33333%;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:w-screen {
    width: 100vw;
  }

  .sm\:z-0 {
    z-index: 0;
  }

  .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-auto {
    z-index: auto;
  }
}

@media (min-width: 640px) {
  .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-black-50 {
    background-color: rgba(0, 0, 0, .5);
  }

  .md\:bg-dark-gray {
    background-color: #3e3e3e;
  }

  .md\:bg-light-gray {
    background-color: #f5f5f5;
  }

  .md\:bg-meta-gray {
    background-color: #595959;
  }

  .md\:bg-purple-dark {
    background-color: #45247f;
  }

  .md\:bg-red-dark {
    background-color: #cd1936;
  }

  .md\:bg-black {
    background-color: #000;
  }

  .md\:bg-blue {
    background-color: #42b6da;
  }

  .md\:bg-facebook {
    background-color: #3b5998;
  }

  .md\:bg-gray {
    background-color: #e5e5e5;
  }

  .md\:bg-green {
    background-color: #63c29e;
  }

  .md\:bg-linkedin {
    background-color: #0077b5;
  }

  .md\:bg-orange {
    background-color: #ed8123;
  }

  .md\:bg-pink {
    background-color: #e85e9c;
  }

  .md\:bg-purple {
    background-color: #7a6cb2;
  }

  .md\:bg-red {
    background-color: #e31d3c;
  }

  .md\:bg-rss {
    background-color: #fb9f1c;
  }

  .md\:bg-twitter {
    background-color: #1da1f2;
  }

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

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

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

  .md\:hover\:bg-dark-gray:hover {
    background-color: #3e3e3e;
  }

  .md\:hover\:bg-light-gray:hover {
    background-color: #f5f5f5;
  }

  .md\:hover\:bg-meta-gray:hover {
    background-color: #595959;
  }

  .md\:hover\:bg-purple-dark:hover {
    background-color: #45247f;
  }

  .md\:hover\:bg-red-dark:hover {
    background-color: #cd1936;
  }

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

  .md\:hover\:bg-blue:hover {
    background-color: #42b6da;
  }

  .md\:hover\:bg-facebook:hover {
    background-color: #3b5998;
  }

  .md\:hover\:bg-gray:hover {
    background-color: #e5e5e5;
  }

  .md\:hover\:bg-green:hover {
    background-color: #63c29e;
  }

  .md\:hover\:bg-linkedin:hover {
    background-color: #0077b5;
  }

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

  .md\:hover\:bg-pink:hover {
    background-color: #e85e9c;
  }

  .md\:hover\:bg-purple:hover {
    background-color: #7a6cb2;
  }

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

  .md\:hover\:bg-rss:hover {
    background-color: #fb9f1c;
  }

  .md\:hover\:bg-twitter:hover {
    background-color: #1da1f2;
  }

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

  .md\:focus\:bg-transparent:focus {
    background-color: transparent;
  }

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

  .md\:focus\:bg-dark-gray:focus {
    background-color: #3e3e3e;
  }

  .md\:focus\:bg-light-gray:focus {
    background-color: #f5f5f5;
  }

  .md\:focus\:bg-meta-gray:focus {
    background-color: #595959;
  }

  .md\:focus\:bg-purple-dark:focus {
    background-color: #45247f;
  }

  .md\:focus\:bg-red-dark:focus {
    background-color: #cd1936;
  }

  .md\:focus\:bg-black:focus {
    background-color: #000;
  }

  .md\:focus\:bg-blue:focus {
    background-color: #42b6da;
  }

  .md\:focus\:bg-facebook:focus {
    background-color: #3b5998;
  }

  .md\:focus\:bg-gray:focus {
    background-color: #e5e5e5;
  }

  .md\:focus\:bg-green:focus {
    background-color: #63c29e;
  }

  .md\:focus\:bg-linkedin:focus {
    background-color: #0077b5;
  }

  .md\:focus\:bg-orange:focus {
    background-color: #ed8123;
  }

  .md\:focus\:bg-pink:focus {
    background-color: #e85e9c;
  }

  .md\:focus\:bg-purple:focus {
    background-color: #7a6cb2;
  }

  .md\:focus\:bg-red:focus {
    background-color: #e31d3c;
  }

  .md\:focus\:bg-rss:focus {
    background-color: #fb9f1c;
  }

  .md\:focus\:bg-twitter:focus {
    background-color: #1da1f2;
  }

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

  .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-black-50 {
    border-color: rgba(0, 0, 0, .5);
  }

  .md\:border-dark-gray {
    border-color: #3e3e3e;
  }

  .md\:border-light-gray {
    border-color: #f5f5f5;
  }

  .md\:border-meta-gray {
    border-color: #595959;
  }

  .md\:border-purple-dark {
    border-color: #45247f;
  }

  .md\:border-red-dark {
    border-color: #cd1936;
  }

  .md\:border-black {
    border-color: #000;
  }

  .md\:border-blue {
    border-color: #42b6da;
  }

  .md\:border-facebook {
    border-color: #3b5998;
  }

  .md\:border-gray {
    border-color: #e5e5e5;
  }

  .md\:border-green {
    border-color: #63c29e;
  }

  .md\:border-linkedin {
    border-color: #0077b5;
  }

  .md\:border-orange {
    border-color: #ed8123;
  }

  .md\:border-pink {
    border-color: #e85e9c;
  }

  .md\:border-purple {
    border-color: #7a6cb2;
  }

  .md\:border-red {
    border-color: #e31d3c;
  }

  .md\:border-rss {
    border-color: #fb9f1c;
  }

  .md\:border-twitter {
    border-color: #1da1f2;
  }

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

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

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

  .md\:hover\:border-dark-gray:hover {
    border-color: #3e3e3e;
  }

  .md\:hover\:border-light-gray:hover {
    border-color: #f5f5f5;
  }

  .md\:hover\:border-meta-gray:hover {
    border-color: #595959;
  }

  .md\:hover\:border-purple-dark:hover {
    border-color: #45247f;
  }

  .md\:hover\:border-red-dark:hover {
    border-color: #cd1936;
  }

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

  .md\:hover\:border-blue:hover {
    border-color: #42b6da;
  }

  .md\:hover\:border-facebook:hover {
    border-color: #3b5998;
  }

  .md\:hover\:border-gray:hover {
    border-color: #e5e5e5;
  }

  .md\:hover\:border-green:hover {
    border-color: #63c29e;
  }

  .md\:hover\:border-linkedin:hover {
    border-color: #0077b5;
  }

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

  .md\:hover\:border-pink:hover {
    border-color: #e85e9c;
  }

  .md\:hover\:border-purple:hover {
    border-color: #7a6cb2;
  }

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

  .md\:hover\:border-rss:hover {
    border-color: #fb9f1c;
  }

  .md\:hover\:border-twitter:hover {
    border-color: #1da1f2;
  }

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

  .md\:focus\:border-transparent:focus {
    border-color: transparent;
  }

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

  .md\:focus\:border-dark-gray:focus {
    border-color: #3e3e3e;
  }

  .md\:focus\:border-light-gray:focus {
    border-color: #f5f5f5;
  }

  .md\:focus\:border-meta-gray:focus {
    border-color: #595959;
  }

  .md\:focus\:border-purple-dark:focus {
    border-color: #45247f;
  }

  .md\:focus\:border-red-dark:focus {
    border-color: #cd1936;
  }

  .md\:focus\:border-black:focus {
    border-color: #000;
  }

  .md\:focus\:border-blue:focus {
    border-color: #42b6da;
  }

  .md\:focus\:border-facebook:focus {
    border-color: #3b5998;
  }

  .md\:focus\:border-gray:focus {
    border-color: #e5e5e5;
  }

  .md\:focus\:border-green:focus {
    border-color: #63c29e;
  }

  .md\:focus\:border-linkedin:focus {
    border-color: #0077b5;
  }

  .md\:focus\:border-orange:focus {
    border-color: #ed8123;
  }

  .md\:focus\:border-pink:focus {
    border-color: #e85e9c;
  }

  .md\:focus\:border-purple:focus {
    border-color: #7a6cb2;
  }

  .md\:focus\:border-red:focus {
    border-color: #e31d3c;
  }

  .md\:focus\:border-rss:focus {
    border-color: #fb9f1c;
  }

  .md\:focus\:border-twitter:focus {
    border-color: #1da1f2;
  }

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

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

  .md\:rounded {
    border-radius: 8px;
  }

  .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 {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .md\:rounded-r {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .md\:rounded-b {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .md\:rounded-l {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .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 {
    border-top-left-radius: 8px;
  }

  .md\:rounded-tr {
    border-top-right-radius: 8px;
  }

  .md\:rounded-br {
    border-bottom-right-radius: 8px;
  }

  .md\:rounded-bl {
    border-bottom-left-radius: 8px;
  }

  .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-4 {
    border-width: 4px;
  }

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

  .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-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-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 {
    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: flex;
  }

  .md\:inline-flex {
    display: inline-flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-col-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 {
    align-items: flex-start;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:items-baseline {
    align-items: baseline;
  }

  .md\:items-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 {
    justify-content: flex-start;
  }

  .md\:justify-end {
    justify-content: flex-end;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    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 {
    flex: 1 1 0%;
  }

  .md\:flex-auto {
    flex: 1 1 auto;
  }

  .md\:flex-initial {
    flex: 0 1 auto;
  }

  .md\:flex-none {
    flex: none;
  }

  .md\:flex-grow {
    flex-grow: 1;
  }

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

  .md\:flex-no-grow {
    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-futura {
    font-family: Futura, Helvetica Neue, Helvetica, sans-serif;
  }

  .md\:font-hairline {
    font-weight: 100;
  }

  .md\:font-thin {
    font-weight: 200;
  }

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

  .md\:hover\:font-hairline:hover {
    font-weight: 100;
  }

  .md\:hover\:font-thin:hover {
    font-weight: 200;
  }

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

  .md\:focus\:font-hairline:focus {
    font-weight: 100;
  }

  .md\:focus\:font-thin:focus {
    font-weight: 200;
  }

  .md\:focus\:font-light:focus {
    font-weight: 300;
  }

  .md\:focus\:font-normal:focus {
    font-weight: 400;
  }

  .md\:focus\:font-medium:focus {
    font-weight: 500;
  }

  .md\:focus\:font-semibold:focus {
    font-weight: 600;
  }

  .md\:focus\:font-bold:focus {
    font-weight: 700;
  }

  .md\:focus\:font-extrabold:focus {
    font-weight: 800;
  }

  .md\:focus\:font-black:focus {
    font-weight: 900;
  }

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

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

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

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

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

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

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

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

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

  .md\:m-0 {
    margin: 0;
  }

  .md\:m-1 {
    margin: 4px;
  }

  .md\:m-2 {
    margin: 8px;
  }

  .md\:m-3 {
    margin: 12px;
  }

  .md\:m-4 {
    margin: 16px;
  }

  .md\:m-5 {
    margin: 20px;
  }

  .md\:m-6 {
    margin: 24px;
  }

  .md\:m-8 {
    margin: 32px;
  }

  .md\:m-10 {
    margin: 40px;
  }

  .md\:m-12 {
    margin: 48px;
  }

  .md\:m-16 {
    margin: 64px;
  }

  .md\:m-20 {
    margin: 80px;
  }

  .md\:m-24 {
    margin: 96px;
  }

  .md\:m-32 {
    margin: 128px;
  }

  .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: 4px;
    margin-bottom: 4px;
  }

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

  .md\:my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .md\:mx-2 {
    margin-left: 8px;
    margin-right: 8px;
  }

  .md\:my-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .md\:mx-3 {
    margin-left: 12px;
    margin-right: 12px;
  }

  .md\:my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .md\:mx-4 {
    margin-left: 16px;
    margin-right: 16px;
  }

  .md\:my-5 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .md\:mx-5 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .md\:my-6 {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .md\:mx-6 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .md\:my-8 {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .md\:mx-8 {
    margin-left: 32px;
    margin-right: 32px;
  }

  .md\:my-10 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .md\:mx-10 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .md\:my-12 {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .md\:mx-12 {
    margin-left: 48px;
    margin-right: 48px;
  }

  .md\:my-16 {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .md\:mx-16 {
    margin-left: 64px;
    margin-right: 64px;
  }

  .md\:my-20 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .md\:mx-20 {
    margin-left: 80px;
    margin-right: 80px;
  }

  .md\:my-24 {
    margin-top: 96px;
    margin-bottom: 96px;
  }

  .md\:mx-24 {
    margin-left: 96px;
    margin-right: 96px;
  }

  .md\:my-32 {
    margin-top: 128px;
    margin-bottom: 128px;
  }

  .md\:mx-32 {
    margin-left: 128px;
    margin-right: 128px;
  }

  .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: 4px;
  }

  .md\:mr-1 {
    margin-right: 4px;
  }

  .md\:mb-1 {
    margin-bottom: 4px;
  }

  .md\:ml-1 {
    margin-left: 4px;
  }

  .md\:mt-2 {
    margin-top: 8px;
  }

  .md\:mr-2 {
    margin-right: 8px;
  }

  .md\:mb-2 {
    margin-bottom: 8px;
  }

  .md\:ml-2 {
    margin-left: 8px;
  }

  .md\:mt-3 {
    margin-top: 12px;
  }

  .md\:mr-3 {
    margin-right: 12px;
  }

  .md\:mb-3 {
    margin-bottom: 12px;
  }

  .md\:ml-3 {
    margin-left: 12px;
  }

  .md\:mt-4 {
    margin-top: 16px;
  }

  .md\:mr-4 {
    margin-right: 16px;
  }

  .md\:mb-4 {
    margin-bottom: 16px;
  }

  .md\:ml-4 {
    margin-left: 16px;
  }

  .md\:mt-5 {
    margin-top: 20px;
  }

  .md\:mr-5 {
    margin-right: 20px;
  }

  .md\:mb-5 {
    margin-bottom: 20px;
  }

  .md\:ml-5 {
    margin-left: 20px;
  }

  .md\:mt-6 {
    margin-top: 24px;
  }

  .md\:mr-6 {
    margin-right: 24px;
  }

  .md\:mb-6 {
    margin-bottom: 24px;
  }

  .md\:ml-6 {
    margin-left: 24px;
  }

  .md\:mt-8 {
    margin-top: 32px;
  }

  .md\:mr-8 {
    margin-right: 32px;
  }

  .md\:mb-8 {
    margin-bottom: 32px;
  }

  .md\:ml-8 {
    margin-left: 32px;
  }

  .md\:mt-10 {
    margin-top: 40px;
  }

  .md\:mr-10 {
    margin-right: 40px;
  }

  .md\:mb-10 {
    margin-bottom: 40px;
  }

  .md\:ml-10 {
    margin-left: 40px;
  }

  .md\:mt-12 {
    margin-top: 48px;
  }

  .md\:mr-12 {
    margin-right: 48px;
  }

  .md\:mb-12 {
    margin-bottom: 48px;
  }

  .md\:ml-12 {
    margin-left: 48px;
  }

  .md\:mt-16 {
    margin-top: 64px;
  }

  .md\:mr-16 {
    margin-right: 64px;
  }

  .md\:mb-16 {
    margin-bottom: 64px;
  }

  .md\:ml-16 {
    margin-left: 64px;
  }

  .md\:mt-20 {
    margin-top: 80px;
  }

  .md\:mr-20 {
    margin-right: 80px;
  }

  .md\:mb-20 {
    margin-bottom: 80px;
  }

  .md\:ml-20 {
    margin-left: 80px;
  }

  .md\:mt-24 {
    margin-top: 96px;
  }

  .md\:mr-24 {
    margin-right: 96px;
  }

  .md\:mb-24 {
    margin-bottom: 96px;
  }

  .md\:ml-24 {
    margin-left: 96px;
  }

  .md\:mt-32 {
    margin-top: 128px;
  }

  .md\:mr-32 {
    margin-right: 128px;
  }

  .md\:mb-32 {
    margin-bottom: 128px;
  }

  .md\:ml-32 {
    margin-left: 128px;
  }

  .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-100 {
    max-height: 100px;
  }

  .md\:max-h-120 {
    max-height: 120px;
  }

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

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

  .md\:max-w-xs {
    max-width: 640px;
  }

  .md\:max-w-sm {
    max-width: 720px;
  }

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

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

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

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

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

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

  .md\:-m-1 {
    margin: -4px;
  }

  .md\:-m-2 {
    margin: -8px;
  }

  .md\:-m-3 {
    margin: -12px;
  }

  .md\:-m-4 {
    margin: -16px;
  }

  .md\:-m-5 {
    margin: -20px;
  }

  .md\:-m-6 {
    margin: -24px;
  }

  .md\:-m-8 {
    margin: -32px;
  }

  .md\:-m-10 {
    margin: -40px;
  }

  .md\:-m-12 {
    margin: -48px;
  }

  .md\:-m-16 {
    margin: -64px;
  }

  .md\:-m-20 {
    margin: -80px;
  }

  .md\:-m-24 {
    margin: -96px;
  }

  .md\:-m-32 {
    margin: -128px;
  }

  .md\:-m-px {
    margin: -1px;
  }

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

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

  .md\:-my-2 {
    margin-top: -8px;
    margin-bottom: -8px;
  }

  .md\:-mx-2 {
    margin-left: -8px;
    margin-right: -8px;
  }

  .md\:-my-3 {
    margin-top: -12px;
    margin-bottom: -12px;
  }

  .md\:-mx-3 {
    margin-left: -12px;
    margin-right: -12px;
  }

  .md\:-my-4 {
    margin-top: -16px;
    margin-bottom: -16px;
  }

  .md\:-mx-4 {
    margin-left: -16px;
    margin-right: -16px;
  }

  .md\:-my-5 {
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .md\:-mx-5 {
    margin-left: -20px;
    margin-right: -20px;
  }

  .md\:-my-6 {
    margin-top: -24px;
    margin-bottom: -24px;
  }

  .md\:-mx-6 {
    margin-left: -24px;
    margin-right: -24px;
  }

  .md\:-my-8 {
    margin-top: -32px;
    margin-bottom: -32px;
  }

  .md\:-mx-8 {
    margin-left: -32px;
    margin-right: -32px;
  }

  .md\:-my-10 {
    margin-top: -40px;
    margin-bottom: -40px;
  }

  .md\:-mx-10 {
    margin-left: -40px;
    margin-right: -40px;
  }

  .md\:-my-12 {
    margin-top: -48px;
    margin-bottom: -48px;
  }

  .md\:-mx-12 {
    margin-left: -48px;
    margin-right: -48px;
  }

  .md\:-my-16 {
    margin-top: -64px;
    margin-bottom: -64px;
  }

  .md\:-mx-16 {
    margin-left: -64px;
    margin-right: -64px;
  }

  .md\:-my-20 {
    margin-top: -80px;
    margin-bottom: -80px;
  }

  .md\:-mx-20 {
    margin-left: -80px;
    margin-right: -80px;
  }

  .md\:-my-24 {
    margin-top: -96px;
    margin-bottom: -96px;
  }

  .md\:-mx-24 {
    margin-left: -96px;
    margin-right: -96px;
  }

  .md\:-my-32 {
    margin-top: -128px;
    margin-bottom: -128px;
  }

  .md\:-mx-32 {
    margin-left: -128px;
    margin-right: -128px;
  }

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

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

  .md\:-mt-1 {
    margin-top: -4px;
  }

  .md\:-mr-1 {
    margin-right: -4px;
  }

  .md\:-mb-1 {
    margin-bottom: -4px;
  }

  .md\:-ml-1 {
    margin-left: -4px;
  }

  .md\:-mt-2 {
    margin-top: -8px;
  }

  .md\:-mr-2 {
    margin-right: -8px;
  }

  .md\:-mb-2 {
    margin-bottom: -8px;
  }

  .md\:-ml-2 {
    margin-left: -8px;
  }

  .md\:-mt-3 {
    margin-top: -12px;
  }

  .md\:-mr-3 {
    margin-right: -12px;
  }

  .md\:-mb-3 {
    margin-bottom: -12px;
  }

  .md\:-ml-3 {
    margin-left: -12px;
  }

  .md\:-mt-4 {
    margin-top: -16px;
  }

  .md\:-mr-4 {
    margin-right: -16px;
  }

  .md\:-mb-4 {
    margin-bottom: -16px;
  }

  .md\:-ml-4 {
    margin-left: -16px;
  }

  .md\:-mt-5 {
    margin-top: -20px;
  }

  .md\:-mr-5 {
    margin-right: -20px;
  }

  .md\:-mb-5 {
    margin-bottom: -20px;
  }

  .md\:-ml-5 {
    margin-left: -20px;
  }

  .md\:-mt-6 {
    margin-top: -24px;
  }

  .md\:-mr-6 {
    margin-right: -24px;
  }

  .md\:-mb-6 {
    margin-bottom: -24px;
  }

  .md\:-ml-6 {
    margin-left: -24px;
  }

  .md\:-mt-8 {
    margin-top: -32px;
  }

  .md\:-mr-8 {
    margin-right: -32px;
  }

  .md\:-mb-8 {
    margin-bottom: -32px;
  }

  .md\:-ml-8 {
    margin-left: -32px;
  }

  .md\:-mt-10 {
    margin-top: -40px;
  }

  .md\:-mr-10 {
    margin-right: -40px;
  }

  .md\:-mb-10 {
    margin-bottom: -40px;
  }

  .md\:-ml-10 {
    margin-left: -40px;
  }

  .md\:-mt-12 {
    margin-top: -48px;
  }

  .md\:-mr-12 {
    margin-right: -48px;
  }

  .md\:-mb-12 {
    margin-bottom: -48px;
  }

  .md\:-ml-12 {
    margin-left: -48px;
  }

  .md\:-mt-16 {
    margin-top: -64px;
  }

  .md\:-mr-16 {
    margin-right: -64px;
  }

  .md\:-mb-16 {
    margin-bottom: -64px;
  }

  .md\:-ml-16 {
    margin-left: -64px;
  }

  .md\:-mt-20 {
    margin-top: -80px;
  }

  .md\:-mr-20 {
    margin-right: -80px;
  }

  .md\:-mb-20 {
    margin-bottom: -80px;
  }

  .md\:-ml-20 {
    margin-left: -80px;
  }

  .md\:-mt-24 {
    margin-top: -96px;
  }

  .md\:-mr-24 {
    margin-right: -96px;
  }

  .md\:-mb-24 {
    margin-bottom: -96px;
  }

  .md\:-ml-24 {
    margin-left: -96px;
  }

  .md\:-mt-32 {
    margin-top: -128px;
  }

  .md\:-mr-32 {
    margin-right: -128px;
  }

  .md\:-mb-32 {
    margin-bottom: -128px;
  }

  .md\:-ml-32 {
    margin-left: -128px;
  }

  .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-hidden {
    overflow-x: hidden;
  }

  .md\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .md\:overflow-x-visible {
    overflow-x: visible;
  }

  .md\:overflow-y-visible {
    overflow-y: visible;
  }

  .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: 4px;
  }

  .md\:p-2 {
    padding: 8px;
  }

  .md\:p-3 {
    padding: 12px;
  }

  .md\:p-4 {
    padding: 16px;
  }

  .md\:p-5 {
    padding: 20px;
  }

  .md\:p-6 {
    padding: 24px;
  }

  .md\:p-8 {
    padding: 32px;
  }

  .md\:p-10 {
    padding: 40px;
  }

  .md\:p-12 {
    padding: 48px;
  }

  .md\:p-16 {
    padding: 64px;
  }

  .md\:p-20 {
    padding: 80px;
  }

  .md\:p-24 {
    padding: 96px;
  }

  .md\:p-32 {
    padding: 128px;
  }

  .md\:p-px {
    padding: 1px;
  }

  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .md\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .md\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .md\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .md\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .md\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .md\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .md\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .md\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .md\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .md\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .md\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .md\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .md\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .md\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .md\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .md\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .md\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .md\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .md\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .md\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .md\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .md\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .md\:py-24 {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .md\:px-24 {
    padding-left: 96px;
    padding-right: 96px;
  }

  .md\:py-32 {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .md\:px-32 {
    padding-left: 128px;
    padding-right: 128px;
  }

  .md\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .md\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .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: 4px;
  }

  .md\:pr-1 {
    padding-right: 4px;
  }

  .md\:pb-1 {
    padding-bottom: 4px;
  }

  .md\:pl-1 {
    padding-left: 4px;
  }

  .md\:pt-2 {
    padding-top: 8px;
  }

  .md\:pr-2 {
    padding-right: 8px;
  }

  .md\:pb-2 {
    padding-bottom: 8px;
  }

  .md\:pl-2 {
    padding-left: 8px;
  }

  .md\:pt-3 {
    padding-top: 12px;
  }

  .md\:pr-3 {
    padding-right: 12px;
  }

  .md\:pb-3 {
    padding-bottom: 12px;
  }

  .md\:pl-3 {
    padding-left: 12px;
  }

  .md\:pt-4 {
    padding-top: 16px;
  }

  .md\:pr-4 {
    padding-right: 16px;
  }

  .md\:pb-4 {
    padding-bottom: 16px;
  }

  .md\:pl-4 {
    padding-left: 16px;
  }

  .md\:pt-5 {
    padding-top: 20px;
  }

  .md\:pr-5 {
    padding-right: 20px;
  }

  .md\:pb-5 {
    padding-bottom: 20px;
  }

  .md\:pl-5 {
    padding-left: 20px;
  }

  .md\:pt-6 {
    padding-top: 24px;
  }

  .md\:pr-6 {
    padding-right: 24px;
  }

  .md\:pb-6 {
    padding-bottom: 24px;
  }

  .md\:pl-6 {
    padding-left: 24px;
  }

  .md\:pt-8 {
    padding-top: 32px;
  }

  .md\:pr-8 {
    padding-right: 32px;
  }

  .md\:pb-8 {
    padding-bottom: 32px;
  }

  .md\:pl-8 {
    padding-left: 32px;
  }

  .md\:pt-10 {
    padding-top: 40px;
  }

  .md\:pr-10 {
    padding-right: 40px;
  }

  .md\:pb-10 {
    padding-bottom: 40px;
  }

  .md\:pl-10 {
    padding-left: 40px;
  }

  .md\:pt-12 {
    padding-top: 48px;
  }

  .md\:pr-12 {
    padding-right: 48px;
  }

  .md\:pb-12 {
    padding-bottom: 48px;
  }

  .md\:pl-12 {
    padding-left: 48px;
  }

  .md\:pt-16 {
    padding-top: 64px;
  }

  .md\:pr-16 {
    padding-right: 64px;
  }

  .md\:pb-16 {
    padding-bottom: 64px;
  }

  .md\:pl-16 {
    padding-left: 64px;
  }

  .md\:pt-20 {
    padding-top: 80px;
  }

  .md\:pr-20 {
    padding-right: 80px;
  }

  .md\:pb-20 {
    padding-bottom: 80px;
  }

  .md\:pl-20 {
    padding-left: 80px;
  }

  .md\:pt-24 {
    padding-top: 96px;
  }

  .md\:pr-24 {
    padding-right: 96px;
  }

  .md\:pb-24 {
    padding-bottom: 96px;
  }

  .md\:pl-24 {
    padding-left: 96px;
  }

  .md\:pt-32 {
    padding-top: 128px;
  }

  .md\:pr-32 {
    padding-right: 128px;
  }

  .md\:pb-32 {
    padding-bottom: 128px;
  }

  .md\:pl-32 {
    padding-left: 128px;
  }

  .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\: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\:resize-none {
    resize: none;
  }

  .md\:resize-y {
    resize: vertical;
  }

  .md\:resize-x {
    resize: horizontal;
  }

  .md\:resize {
    resize: both;
  }

  .md\:shadow-outline-transparent {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .md\:shadow-outline-black-50 {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .md\:shadow-outline-dark-gray {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .md\:shadow-outline-light-gray {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .md\:shadow-outline-meta-gray {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .md\:shadow-outline-purple-dark {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .md\:shadow-outline-red-dark {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .md\:shadow-outline-black {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .md\:shadow-outline-blue {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .md\:shadow-outline-facebook {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .md\:shadow-outline-gray {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .md\:shadow-outline-green {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .md\:shadow-outline-linkedin {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .md\:shadow-outline-orange {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .md\:shadow-outline-pink {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .md\:shadow-outline-purple {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .md\:shadow-outline-red {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .md\:shadow-outline-rss {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .md\:shadow-outline-twitter {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .md\:shadow-outline-white {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .md\:shadow-darken {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .md\:hover\:shadow-outline-transparent:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .md\:hover\:shadow-outline-black-50:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .md\:hover\:shadow-outline-dark-gray:hover {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .md\:hover\:shadow-outline-light-gray:hover {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .md\:hover\:shadow-outline-meta-gray:hover {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .md\:hover\:shadow-outline-purple-dark:hover {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .md\:hover\:shadow-outline-red-dark:hover {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .md\:hover\:shadow-outline-black:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .md\:hover\:shadow-outline-blue:hover {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .md\:hover\:shadow-outline-facebook:hover {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .md\:hover\:shadow-outline-gray:hover {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .md\:hover\:shadow-outline-green:hover {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .md\:hover\:shadow-outline-linkedin:hover {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .md\:hover\:shadow-outline-orange:hover {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .md\:hover\:shadow-outline-pink:hover {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .md\:hover\:shadow-outline-purple:hover {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .md\:hover\:shadow-outline-red:hover {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .md\:hover\:shadow-outline-rss:hover {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .md\:hover\:shadow-outline-twitter:hover {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .md\:hover\:shadow-outline-white:hover {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .md\:hover\:shadow-darken:hover {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .md\:focus\:shadow-outline-transparent:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .md\:focus\:shadow-outline-black-50:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .md\:focus\:shadow-outline-dark-gray:focus {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .md\:focus\:shadow-outline-light-gray:focus {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .md\:focus\:shadow-outline-meta-gray:focus {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .md\:focus\:shadow-outline-purple-dark:focus {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .md\:focus\:shadow-outline-red-dark:focus {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .md\:focus\:shadow-outline-black:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .md\:focus\:shadow-outline-blue:focus {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .md\:focus\:shadow-outline-facebook:focus {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .md\:focus\:shadow-outline-gray:focus {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .md\:focus\:shadow-outline-green:focus {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .md\:focus\:shadow-outline-linkedin:focus {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .md\:focus\:shadow-outline-orange:focus {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .md\:focus\:shadow-outline-pink:focus {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .md\:focus\:shadow-outline-purple:focus {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .md\:focus\:shadow-outline-red:focus {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .md\:focus\:shadow-outline-rss:focus {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .md\:focus\:shadow-outline-twitter:focus {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .md\:focus\:shadow-outline-white:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .md\:focus\:shadow-darken:focus {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .md\:table-auto {
    table-layout: auto;
  }

  .md\:table-fixed {
    table-layout: fixed;
  }

  .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-black-50 {
    color: rgba(0, 0, 0, .5);
  }

  .md\:text-dark-gray {
    color: #3e3e3e;
  }

  .md\:text-light-gray {
    color: #f5f5f5;
  }

  .md\:text-meta-gray {
    color: #595959;
  }

  .md\:text-purple-dark {
    color: #45247f;
  }

  .md\:text-red-dark {
    color: #cd1936;
  }

  .md\:text-black {
    color: #000;
  }

  .md\:text-blue {
    color: #42b6da;
  }

  .md\:text-facebook {
    color: #3b5998;
  }

  .md\:text-gray {
    color: #e5e5e5;
  }

  .md\:text-green {
    color: #63c29e;
  }

  .md\:text-linkedin {
    color: #0077b5;
  }

  .md\:text-orange {
    color: #ed8123;
  }

  .md\:text-pink {
    color: #e85e9c;
  }

  .md\:text-purple {
    color: #7a6cb2;
  }

  .md\:text-red {
    color: #e31d3c;
  }

  .md\:text-rss {
    color: #fb9f1c;
  }

  .md\:text-twitter {
    color: #1da1f2;
  }

  .md\:text-white {
    color: #fff;
  }

  .md\:text-inherit {
    color: inherit;
  }

  .md\:hover\:text-transparent:hover {
    color: transparent;
  }

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

  .md\:hover\:text-dark-gray:hover {
    color: #3e3e3e;
  }

  .md\:hover\:text-light-gray:hover {
    color: #f5f5f5;
  }

  .md\:hover\:text-meta-gray:hover {
    color: #595959;
  }

  .md\:hover\:text-purple-dark:hover {
    color: #45247f;
  }

  .md\:hover\:text-red-dark:hover {
    color: #cd1936;
  }

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

  .md\:hover\:text-blue:hover {
    color: #42b6da;
  }

  .md\:hover\:text-facebook:hover {
    color: #3b5998;
  }

  .md\:hover\:text-gray:hover {
    color: #e5e5e5;
  }

  .md\:hover\:text-green:hover {
    color: #63c29e;
  }

  .md\:hover\:text-linkedin:hover {
    color: #0077b5;
  }

  .md\:hover\:text-orange:hover {
    color: #ed8123;
  }

  .md\:hover\:text-pink:hover {
    color: #e85e9c;
  }

  .md\:hover\:text-purple:hover {
    color: #7a6cb2;
  }

  .md\:hover\:text-red:hover {
    color: #e31d3c;
  }

  .md\:hover\:text-rss:hover {
    color: #fb9f1c;
  }

  .md\:hover\:text-twitter:hover {
    color: #1da1f2;
  }

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

  .md\:hover\:text-inherit:hover {
    color: inherit;
  }

  .md\:focus\:text-transparent:focus {
    color: transparent;
  }

  .md\:focus\:text-black-50:focus {
    color: rgba(0, 0, 0, .5);
  }

  .md\:focus\:text-dark-gray:focus {
    color: #3e3e3e;
  }

  .md\:focus\:text-light-gray:focus {
    color: #f5f5f5;
  }

  .md\:focus\:text-meta-gray:focus {
    color: #595959;
  }

  .md\:focus\:text-purple-dark:focus {
    color: #45247f;
  }

  .md\:focus\:text-red-dark:focus {
    color: #cd1936;
  }

  .md\:focus\:text-black:focus {
    color: #000;
  }

  .md\:focus\:text-blue:focus {
    color: #42b6da;
  }

  .md\:focus\:text-facebook:focus {
    color: #3b5998;
  }

  .md\:focus\:text-gray:focus {
    color: #e5e5e5;
  }

  .md\:focus\:text-green:focus {
    color: #63c29e;
  }

  .md\:focus\:text-linkedin:focus {
    color: #0077b5;
  }

  .md\:focus\:text-orange:focus {
    color: #ed8123;
  }

  .md\:focus\:text-pink:focus {
    color: #e85e9c;
  }

  .md\:focus\:text-purple:focus {
    color: #7a6cb2;
  }

  .md\:focus\:text-red:focus {
    color: #e31d3c;
  }

  .md\:focus\:text-rss:focus {
    color: #fb9f1c;
  }

  .md\:focus\:text-twitter:focus {
    color: #1da1f2;
  }

  .md\:focus\:text-white:focus {
    color: #fff;
  }

  .md\:focus\:text-inherit:focus {
    color: inherit;
  }

  .md\:text-xs {
    font-size: 12px;
  }

  .md\:text-sm {
    font-size: 14px;
  }

  .md\:text-md {
    font-size: 16px;
  }

  .md\:text-lg {
    font-size: 18px;
  }

  .md\:text-xl {
    font-size: 20px;
  }

  .md\:text-2xl {
    font-size: 22px;
  }

  .md\:text-3xl {
    font-size: 24px;
  }

  .md\:text-4xl {
    font-size: 26px;
  }

  .md\:text-5xl {
    font-size: 30px;
  }

  .md\:text-6xl {
    font-size: 36px;
  }

  .md\:text-7xl {
    font-size: 48px;
  }

  .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\:focus\:italic:focus {
    font-style: italic;
  }

  .md\:focus\:roman:focus {
    font-style: normal;
  }

  .md\:focus\:uppercase:focus {
    text-transform: uppercase;
  }

  .md\:focus\:lowercase:focus {
    text-transform: lowercase;
  }

  .md\:focus\:capitalize:focus {
    text-transform: capitalize;
  }

  .md\:focus\:normal-case:focus {
    text-transform: none;
  }

  .md\:focus\:underline:focus {
    text-decoration: underline;
  }

  .md\:focus\:line-through:focus {
    text-decoration: line-through;
  }

  .md\:focus\:no-underline:focus {
    text-decoration: none;
  }

  .md\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .md\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .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-1 {
    width: 4px;
  }

  .md\:w-2 {
    width: 8px;
  }

  .md\:w-3 {
    width: 12px;
  }

  .md\:w-4 {
    width: 16px;
  }

  .md\:w-5 {
    width: 20px;
  }

  .md\:w-6 {
    width: 24px;
  }

  .md\:w-8 {
    width: 32px;
  }

  .md\:w-10 {
    width: 40px;
  }

  .md\:w-12 {
    width: 48px;
  }

  .md\:w-14 {
    width: 56px;
  }

  .md\:w-16 {
    width: 64px;
  }

  .md\:w-24 {
    width: 96px;
  }

  .md\:w-32 {
    width: 128px;
  }

  .md\:w-48 {
    width: 192px;
  }

  .md\:w-64 {
    width: 256px;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-px {
    width: 1px;
  }

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

  .md\:w-1\/3 {
    width: 33.33333%;
  }

  .md\:w-2\/3 {
    width: 66.66667%;
  }

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

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

  .md\:w-1\/5 {
    width: 20%;
  }

  .md\:w-2\/5 {
    width: 40%;
  }

  .md\:w-3\/5 {
    width: 60%;
  }

  .md\:w-4\/5 {
    width: 80%;
  }

  .md\:w-1\/6 {
    width: 16.66667%;
  }

  .md\:w-1\/10 {
    width: 10%;
  }

  .md\:w-5\/6 {
    width: 83.33333%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:w-screen {
    width: 100vw;
  }

  .md\:z-0 {
    z-index: 0;
  }

  .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-auto {
    z-index: auto;
  }
}

@media (min-width: 720px) {
  .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-black-50 {
    background-color: rgba(0, 0, 0, .5);
  }

  .lg\:bg-dark-gray {
    background-color: #3e3e3e;
  }

  .lg\:bg-light-gray {
    background-color: #f5f5f5;
  }

  .lg\:bg-meta-gray {
    background-color: #595959;
  }

  .lg\:bg-purple-dark {
    background-color: #45247f;
  }

  .lg\:bg-red-dark {
    background-color: #cd1936;
  }

  .lg\:bg-black {
    background-color: #000;
  }

  .lg\:bg-blue {
    background-color: #42b6da;
  }

  .lg\:bg-facebook {
    background-color: #3b5998;
  }

  .lg\:bg-gray {
    background-color: #e5e5e5;
  }

  .lg\:bg-green {
    background-color: #63c29e;
  }

  .lg\:bg-linkedin {
    background-color: #0077b5;
  }

  .lg\:bg-orange {
    background-color: #ed8123;
  }

  .lg\:bg-pink {
    background-color: #e85e9c;
  }

  .lg\:bg-purple {
    background-color: #7a6cb2;
  }

  .lg\:bg-red {
    background-color: #e31d3c;
  }

  .lg\:bg-rss {
    background-color: #fb9f1c;
  }

  .lg\:bg-twitter {
    background-color: #1da1f2;
  }

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

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

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

  .lg\:hover\:bg-dark-gray:hover {
    background-color: #3e3e3e;
  }

  .lg\:hover\:bg-light-gray:hover {
    background-color: #f5f5f5;
  }

  .lg\:hover\:bg-meta-gray:hover {
    background-color: #595959;
  }

  .lg\:hover\:bg-purple-dark:hover {
    background-color: #45247f;
  }

  .lg\:hover\:bg-red-dark:hover {
    background-color: #cd1936;
  }

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

  .lg\:hover\:bg-blue:hover {
    background-color: #42b6da;
  }

  .lg\:hover\:bg-facebook:hover {
    background-color: #3b5998;
  }

  .lg\:hover\:bg-gray:hover {
    background-color: #e5e5e5;
  }

  .lg\:hover\:bg-green:hover {
    background-color: #63c29e;
  }

  .lg\:hover\:bg-linkedin:hover {
    background-color: #0077b5;
  }

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

  .lg\:hover\:bg-pink:hover {
    background-color: #e85e9c;
  }

  .lg\:hover\:bg-purple:hover {
    background-color: #7a6cb2;
  }

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

  .lg\:hover\:bg-rss:hover {
    background-color: #fb9f1c;
  }

  .lg\:hover\:bg-twitter:hover {
    background-color: #1da1f2;
  }

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

  .lg\:focus\:bg-transparent:focus {
    background-color: transparent;
  }

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

  .lg\:focus\:bg-dark-gray:focus {
    background-color: #3e3e3e;
  }

  .lg\:focus\:bg-light-gray:focus {
    background-color: #f5f5f5;
  }

  .lg\:focus\:bg-meta-gray:focus {
    background-color: #595959;
  }

  .lg\:focus\:bg-purple-dark:focus {
    background-color: #45247f;
  }

  .lg\:focus\:bg-red-dark:focus {
    background-color: #cd1936;
  }

  .lg\:focus\:bg-black:focus {
    background-color: #000;
  }

  .lg\:focus\:bg-blue:focus {
    background-color: #42b6da;
  }

  .lg\:focus\:bg-facebook:focus {
    background-color: #3b5998;
  }

  .lg\:focus\:bg-gray:focus {
    background-color: #e5e5e5;
  }

  .lg\:focus\:bg-green:focus {
    background-color: #63c29e;
  }

  .lg\:focus\:bg-linkedin:focus {
    background-color: #0077b5;
  }

  .lg\:focus\:bg-orange:focus {
    background-color: #ed8123;
  }

  .lg\:focus\:bg-pink:focus {
    background-color: #e85e9c;
  }

  .lg\:focus\:bg-purple:focus {
    background-color: #7a6cb2;
  }

  .lg\:focus\:bg-red:focus {
    background-color: #e31d3c;
  }

  .lg\:focus\:bg-rss:focus {
    background-color: #fb9f1c;
  }

  .lg\:focus\:bg-twitter:focus {
    background-color: #1da1f2;
  }

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

  .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-black-50 {
    border-color: rgba(0, 0, 0, .5);
  }

  .lg\:border-dark-gray {
    border-color: #3e3e3e;
  }

  .lg\:border-light-gray {
    border-color: #f5f5f5;
  }

  .lg\:border-meta-gray {
    border-color: #595959;
  }

  .lg\:border-purple-dark {
    border-color: #45247f;
  }

  .lg\:border-red-dark {
    border-color: #cd1936;
  }

  .lg\:border-black {
    border-color: #000;
  }

  .lg\:border-blue {
    border-color: #42b6da;
  }

  .lg\:border-facebook {
    border-color: #3b5998;
  }

  .lg\:border-gray {
    border-color: #e5e5e5;
  }

  .lg\:border-green {
    border-color: #63c29e;
  }

  .lg\:border-linkedin {
    border-color: #0077b5;
  }

  .lg\:border-orange {
    border-color: #ed8123;
  }

  .lg\:border-pink {
    border-color: #e85e9c;
  }

  .lg\:border-purple {
    border-color: #7a6cb2;
  }

  .lg\:border-red {
    border-color: #e31d3c;
  }

  .lg\:border-rss {
    border-color: #fb9f1c;
  }

  .lg\:border-twitter {
    border-color: #1da1f2;
  }

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

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

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

  .lg\:hover\:border-dark-gray:hover {
    border-color: #3e3e3e;
  }

  .lg\:hover\:border-light-gray:hover {
    border-color: #f5f5f5;
  }

  .lg\:hover\:border-meta-gray:hover {
    border-color: #595959;
  }

  .lg\:hover\:border-purple-dark:hover {
    border-color: #45247f;
  }

  .lg\:hover\:border-red-dark:hover {
    border-color: #cd1936;
  }

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

  .lg\:hover\:border-blue:hover {
    border-color: #42b6da;
  }

  .lg\:hover\:border-facebook:hover {
    border-color: #3b5998;
  }

  .lg\:hover\:border-gray:hover {
    border-color: #e5e5e5;
  }

  .lg\:hover\:border-green:hover {
    border-color: #63c29e;
  }

  .lg\:hover\:border-linkedin:hover {
    border-color: #0077b5;
  }

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

  .lg\:hover\:border-pink:hover {
    border-color: #e85e9c;
  }

  .lg\:hover\:border-purple:hover {
    border-color: #7a6cb2;
  }

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

  .lg\:hover\:border-rss:hover {
    border-color: #fb9f1c;
  }

  .lg\:hover\:border-twitter:hover {
    border-color: #1da1f2;
  }

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

  .lg\:focus\:border-transparent:focus {
    border-color: transparent;
  }

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

  .lg\:focus\:border-dark-gray:focus {
    border-color: #3e3e3e;
  }

  .lg\:focus\:border-light-gray:focus {
    border-color: #f5f5f5;
  }

  .lg\:focus\:border-meta-gray:focus {
    border-color: #595959;
  }

  .lg\:focus\:border-purple-dark:focus {
    border-color: #45247f;
  }

  .lg\:focus\:border-red-dark:focus {
    border-color: #cd1936;
  }

  .lg\:focus\:border-black:focus {
    border-color: #000;
  }

  .lg\:focus\:border-blue:focus {
    border-color: #42b6da;
  }

  .lg\:focus\:border-facebook:focus {
    border-color: #3b5998;
  }

  .lg\:focus\:border-gray:focus {
    border-color: #e5e5e5;
  }

  .lg\:focus\:border-green:focus {
    border-color: #63c29e;
  }

  .lg\:focus\:border-linkedin:focus {
    border-color: #0077b5;
  }

  .lg\:focus\:border-orange:focus {
    border-color: #ed8123;
  }

  .lg\:focus\:border-pink:focus {
    border-color: #e85e9c;
  }

  .lg\:focus\:border-purple:focus {
    border-color: #7a6cb2;
  }

  .lg\:focus\:border-red:focus {
    border-color: #e31d3c;
  }

  .lg\:focus\:border-rss:focus {
    border-color: #fb9f1c;
  }

  .lg\:focus\:border-twitter:focus {
    border-color: #1da1f2;
  }

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

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

  .lg\:rounded {
    border-radius: 8px;
  }

  .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 {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .lg\:rounded-r {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .lg\:rounded-b {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .lg\:rounded-l {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .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 {
    border-top-left-radius: 8px;
  }

  .lg\:rounded-tr {
    border-top-right-radius: 8px;
  }

  .lg\:rounded-br {
    border-bottom-right-radius: 8px;
  }

  .lg\:rounded-bl {
    border-bottom-left-radius: 8px;
  }

  .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-4 {
    border-width: 4px;
  }

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

  .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-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-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 {
    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: flex;
  }

  .lg\:inline-flex {
    display: inline-flex;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .lg\:flex-col {
    flex-direction: column;
  }

  .lg\:flex-col-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 {
    align-items: flex-start;
  }

  .lg\:items-end {
    align-items: flex-end;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:items-baseline {
    align-items: baseline;
  }

  .lg\:items-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 {
    justify-content: flex-start;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:justify-between {
    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 {
    flex: 1 1 0%;
  }

  .lg\:flex-auto {
    flex: 1 1 auto;
  }

  .lg\:flex-initial {
    flex: 0 1 auto;
  }

  .lg\:flex-none {
    flex: none;
  }

  .lg\:flex-grow {
    flex-grow: 1;
  }

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

  .lg\:flex-no-grow {
    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-futura {
    font-family: Futura, Helvetica Neue, Helvetica, sans-serif;
  }

  .lg\:font-hairline {
    font-weight: 100;
  }

  .lg\:font-thin {
    font-weight: 200;
  }

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

  .lg\:hover\:font-hairline:hover {
    font-weight: 100;
  }

  .lg\:hover\:font-thin:hover {
    font-weight: 200;
  }

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

  .lg\:focus\:font-hairline:focus {
    font-weight: 100;
  }

  .lg\:focus\:font-thin:focus {
    font-weight: 200;
  }

  .lg\:focus\:font-light:focus {
    font-weight: 300;
  }

  .lg\:focus\:font-normal:focus {
    font-weight: 400;
  }

  .lg\:focus\:font-medium:focus {
    font-weight: 500;
  }

  .lg\:focus\:font-semibold:focus {
    font-weight: 600;
  }

  .lg\:focus\:font-bold:focus {
    font-weight: 700;
  }

  .lg\:focus\:font-extrabold:focus {
    font-weight: 800;
  }

  .lg\:focus\:font-black:focus {
    font-weight: 900;
  }

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

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

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

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

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

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

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

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

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

  .lg\:m-0 {
    margin: 0;
  }

  .lg\:m-1 {
    margin: 4px;
  }

  .lg\:m-2 {
    margin: 8px;
  }

  .lg\:m-3 {
    margin: 12px;
  }

  .lg\:m-4 {
    margin: 16px;
  }

  .lg\:m-5 {
    margin: 20px;
  }

  .lg\:m-6 {
    margin: 24px;
  }

  .lg\:m-8 {
    margin: 32px;
  }

  .lg\:m-10 {
    margin: 40px;
  }

  .lg\:m-12 {
    margin: 48px;
  }

  .lg\:m-16 {
    margin: 64px;
  }

  .lg\:m-20 {
    margin: 80px;
  }

  .lg\:m-24 {
    margin: 96px;
  }

  .lg\:m-32 {
    margin: 128px;
  }

  .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: 4px;
    margin-bottom: 4px;
  }

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

  .lg\:my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .lg\:mx-2 {
    margin-left: 8px;
    margin-right: 8px;
  }

  .lg\:my-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .lg\:mx-3 {
    margin-left: 12px;
    margin-right: 12px;
  }

  .lg\:my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .lg\:mx-4 {
    margin-left: 16px;
    margin-right: 16px;
  }

  .lg\:my-5 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .lg\:mx-5 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .lg\:my-6 {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .lg\:mx-6 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .lg\:my-8 {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .lg\:mx-8 {
    margin-left: 32px;
    margin-right: 32px;
  }

  .lg\:my-10 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .lg\:mx-10 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .lg\:my-12 {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .lg\:mx-12 {
    margin-left: 48px;
    margin-right: 48px;
  }

  .lg\:my-16 {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .lg\:mx-16 {
    margin-left: 64px;
    margin-right: 64px;
  }

  .lg\:my-20 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .lg\:mx-20 {
    margin-left: 80px;
    margin-right: 80px;
  }

  .lg\:my-24 {
    margin-top: 96px;
    margin-bottom: 96px;
  }

  .lg\:mx-24 {
    margin-left: 96px;
    margin-right: 96px;
  }

  .lg\:my-32 {
    margin-top: 128px;
    margin-bottom: 128px;
  }

  .lg\:mx-32 {
    margin-left: 128px;
    margin-right: 128px;
  }

  .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: 4px;
  }

  .lg\:mr-1 {
    margin-right: 4px;
  }

  .lg\:mb-1 {
    margin-bottom: 4px;
  }

  .lg\:ml-1 {
    margin-left: 4px;
  }

  .lg\:mt-2 {
    margin-top: 8px;
  }

  .lg\:mr-2 {
    margin-right: 8px;
  }

  .lg\:mb-2 {
    margin-bottom: 8px;
  }

  .lg\:ml-2 {
    margin-left: 8px;
  }

  .lg\:mt-3 {
    margin-top: 12px;
  }

  .lg\:mr-3 {
    margin-right: 12px;
  }

  .lg\:mb-3 {
    margin-bottom: 12px;
  }

  .lg\:ml-3 {
    margin-left: 12px;
  }

  .lg\:mt-4 {
    margin-top: 16px;
  }

  .lg\:mr-4 {
    margin-right: 16px;
  }

  .lg\:mb-4 {
    margin-bottom: 16px;
  }

  .lg\:ml-4 {
    margin-left: 16px;
  }

  .lg\:mt-5 {
    margin-top: 20px;
  }

  .lg\:mr-5 {
    margin-right: 20px;
  }

  .lg\:mb-5 {
    margin-bottom: 20px;
  }

  .lg\:ml-5 {
    margin-left: 20px;
  }

  .lg\:mt-6 {
    margin-top: 24px;
  }

  .lg\:mr-6 {
    margin-right: 24px;
  }

  .lg\:mb-6 {
    margin-bottom: 24px;
  }

  .lg\:ml-6 {
    margin-left: 24px;
  }

  .lg\:mt-8 {
    margin-top: 32px;
  }

  .lg\:mr-8 {
    margin-right: 32px;
  }

  .lg\:mb-8 {
    margin-bottom: 32px;
  }

  .lg\:ml-8 {
    margin-left: 32px;
  }

  .lg\:mt-10 {
    margin-top: 40px;
  }

  .lg\:mr-10 {
    margin-right: 40px;
  }

  .lg\:mb-10 {
    margin-bottom: 40px;
  }

  .lg\:ml-10 {
    margin-left: 40px;
  }

  .lg\:mt-12 {
    margin-top: 48px;
  }

  .lg\:mr-12 {
    margin-right: 48px;
  }

  .lg\:mb-12 {
    margin-bottom: 48px;
  }

  .lg\:ml-12 {
    margin-left: 48px;
  }

  .lg\:mt-16 {
    margin-top: 64px;
  }

  .lg\:mr-16 {
    margin-right: 64px;
  }

  .lg\:mb-16 {
    margin-bottom: 64px;
  }

  .lg\:ml-16 {
    margin-left: 64px;
  }

  .lg\:mt-20 {
    margin-top: 80px;
  }

  .lg\:mr-20 {
    margin-right: 80px;
  }

  .lg\:mb-20 {
    margin-bottom: 80px;
  }

  .lg\:ml-20 {
    margin-left: 80px;
  }

  .lg\:mt-24 {
    margin-top: 96px;
  }

  .lg\:mr-24 {
    margin-right: 96px;
  }

  .lg\:mb-24 {
    margin-bottom: 96px;
  }

  .lg\:ml-24 {
    margin-left: 96px;
  }

  .lg\:mt-32 {
    margin-top: 128px;
  }

  .lg\:mr-32 {
    margin-right: 128px;
  }

  .lg\:mb-32 {
    margin-bottom: 128px;
  }

  .lg\:ml-32 {
    margin-left: 128px;
  }

  .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-100 {
    max-height: 100px;
  }

  .lg\:max-h-120 {
    max-height: 120px;
  }

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

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

  .lg\:max-w-xs {
    max-width: 640px;
  }

  .lg\:max-w-sm {
    max-width: 720px;
  }

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

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

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

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

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

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

  .lg\:-m-1 {
    margin: -4px;
  }

  .lg\:-m-2 {
    margin: -8px;
  }

  .lg\:-m-3 {
    margin: -12px;
  }

  .lg\:-m-4 {
    margin: -16px;
  }

  .lg\:-m-5 {
    margin: -20px;
  }

  .lg\:-m-6 {
    margin: -24px;
  }

  .lg\:-m-8 {
    margin: -32px;
  }

  .lg\:-m-10 {
    margin: -40px;
  }

  .lg\:-m-12 {
    margin: -48px;
  }

  .lg\:-m-16 {
    margin: -64px;
  }

  .lg\:-m-20 {
    margin: -80px;
  }

  .lg\:-m-24 {
    margin: -96px;
  }

  .lg\:-m-32 {
    margin: -128px;
  }

  .lg\:-m-px {
    margin: -1px;
  }

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

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

  .lg\:-my-2 {
    margin-top: -8px;
    margin-bottom: -8px;
  }

  .lg\:-mx-2 {
    margin-left: -8px;
    margin-right: -8px;
  }

  .lg\:-my-3 {
    margin-top: -12px;
    margin-bottom: -12px;
  }

  .lg\:-mx-3 {
    margin-left: -12px;
    margin-right: -12px;
  }

  .lg\:-my-4 {
    margin-top: -16px;
    margin-bottom: -16px;
  }

  .lg\:-mx-4 {
    margin-left: -16px;
    margin-right: -16px;
  }

  .lg\:-my-5 {
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .lg\:-mx-5 {
    margin-left: -20px;
    margin-right: -20px;
  }

  .lg\:-my-6 {
    margin-top: -24px;
    margin-bottom: -24px;
  }

  .lg\:-mx-6 {
    margin-left: -24px;
    margin-right: -24px;
  }

  .lg\:-my-8 {
    margin-top: -32px;
    margin-bottom: -32px;
  }

  .lg\:-mx-8 {
    margin-left: -32px;
    margin-right: -32px;
  }

  .lg\:-my-10 {
    margin-top: -40px;
    margin-bottom: -40px;
  }

  .lg\:-mx-10 {
    margin-left: -40px;
    margin-right: -40px;
  }

  .lg\:-my-12 {
    margin-top: -48px;
    margin-bottom: -48px;
  }

  .lg\:-mx-12 {
    margin-left: -48px;
    margin-right: -48px;
  }

  .lg\:-my-16 {
    margin-top: -64px;
    margin-bottom: -64px;
  }

  .lg\:-mx-16 {
    margin-left: -64px;
    margin-right: -64px;
  }

  .lg\:-my-20 {
    margin-top: -80px;
    margin-bottom: -80px;
  }

  .lg\:-mx-20 {
    margin-left: -80px;
    margin-right: -80px;
  }

  .lg\:-my-24 {
    margin-top: -96px;
    margin-bottom: -96px;
  }

  .lg\:-mx-24 {
    margin-left: -96px;
    margin-right: -96px;
  }

  .lg\:-my-32 {
    margin-top: -128px;
    margin-bottom: -128px;
  }

  .lg\:-mx-32 {
    margin-left: -128px;
    margin-right: -128px;
  }

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

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

  .lg\:-mt-1 {
    margin-top: -4px;
  }

  .lg\:-mr-1 {
    margin-right: -4px;
  }

  .lg\:-mb-1 {
    margin-bottom: -4px;
  }

  .lg\:-ml-1 {
    margin-left: -4px;
  }

  .lg\:-mt-2 {
    margin-top: -8px;
  }

  .lg\:-mr-2 {
    margin-right: -8px;
  }

  .lg\:-mb-2 {
    margin-bottom: -8px;
  }

  .lg\:-ml-2 {
    margin-left: -8px;
  }

  .lg\:-mt-3 {
    margin-top: -12px;
  }

  .lg\:-mr-3 {
    margin-right: -12px;
  }

  .lg\:-mb-3 {
    margin-bottom: -12px;
  }

  .lg\:-ml-3 {
    margin-left: -12px;
  }

  .lg\:-mt-4 {
    margin-top: -16px;
  }

  .lg\:-mr-4 {
    margin-right: -16px;
  }

  .lg\:-mb-4 {
    margin-bottom: -16px;
  }

  .lg\:-ml-4 {
    margin-left: -16px;
  }

  .lg\:-mt-5 {
    margin-top: -20px;
  }

  .lg\:-mr-5 {
    margin-right: -20px;
  }

  .lg\:-mb-5 {
    margin-bottom: -20px;
  }

  .lg\:-ml-5 {
    margin-left: -20px;
  }

  .lg\:-mt-6 {
    margin-top: -24px;
  }

  .lg\:-mr-6 {
    margin-right: -24px;
  }

  .lg\:-mb-6 {
    margin-bottom: -24px;
  }

  .lg\:-ml-6 {
    margin-left: -24px;
  }

  .lg\:-mt-8 {
    margin-top: -32px;
  }

  .lg\:-mr-8 {
    margin-right: -32px;
  }

  .lg\:-mb-8 {
    margin-bottom: -32px;
  }

  .lg\:-ml-8 {
    margin-left: -32px;
  }

  .lg\:-mt-10 {
    margin-top: -40px;
  }

  .lg\:-mr-10 {
    margin-right: -40px;
  }

  .lg\:-mb-10 {
    margin-bottom: -40px;
  }

  .lg\:-ml-10 {
    margin-left: -40px;
  }

  .lg\:-mt-12 {
    margin-top: -48px;
  }

  .lg\:-mr-12 {
    margin-right: -48px;
  }

  .lg\:-mb-12 {
    margin-bottom: -48px;
  }

  .lg\:-ml-12 {
    margin-left: -48px;
  }

  .lg\:-mt-16 {
    margin-top: -64px;
  }

  .lg\:-mr-16 {
    margin-right: -64px;
  }

  .lg\:-mb-16 {
    margin-bottom: -64px;
  }

  .lg\:-ml-16 {
    margin-left: -64px;
  }

  .lg\:-mt-20 {
    margin-top: -80px;
  }

  .lg\:-mr-20 {
    margin-right: -80px;
  }

  .lg\:-mb-20 {
    margin-bottom: -80px;
  }

  .lg\:-ml-20 {
    margin-left: -80px;
  }

  .lg\:-mt-24 {
    margin-top: -96px;
  }

  .lg\:-mr-24 {
    margin-right: -96px;
  }

  .lg\:-mb-24 {
    margin-bottom: -96px;
  }

  .lg\:-ml-24 {
    margin-left: -96px;
  }

  .lg\:-mt-32 {
    margin-top: -128px;
  }

  .lg\:-mr-32 {
    margin-right: -128px;
  }

  .lg\:-mb-32 {
    margin-bottom: -128px;
  }

  .lg\:-ml-32 {
    margin-left: -128px;
  }

  .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-hidden {
    overflow-x: hidden;
  }

  .lg\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .lg\:overflow-x-visible {
    overflow-x: visible;
  }

  .lg\:overflow-y-visible {
    overflow-y: visible;
  }

  .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: 4px;
  }

  .lg\:p-2 {
    padding: 8px;
  }

  .lg\:p-3 {
    padding: 12px;
  }

  .lg\:p-4 {
    padding: 16px;
  }

  .lg\:p-5 {
    padding: 20px;
  }

  .lg\:p-6 {
    padding: 24px;
  }

  .lg\:p-8 {
    padding: 32px;
  }

  .lg\:p-10 {
    padding: 40px;
  }

  .lg\:p-12 {
    padding: 48px;
  }

  .lg\:p-16 {
    padding: 64px;
  }

  .lg\:p-20 {
    padding: 80px;
  }

  .lg\:p-24 {
    padding: 96px;
  }

  .lg\:p-32 {
    padding: 128px;
  }

  .lg\:p-px {
    padding: 1px;
  }

  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .lg\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .lg\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .lg\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .lg\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .lg\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .lg\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .lg\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .lg\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lg\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lg\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lg\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .lg\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .lg\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .lg\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .lg\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .lg\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .lg\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .lg\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .lg\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .lg\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .lg\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .lg\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .lg\:py-24 {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .lg\:px-24 {
    padding-left: 96px;
    padding-right: 96px;
  }

  .lg\:py-32 {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .lg\:px-32 {
    padding-left: 128px;
    padding-right: 128px;
  }

  .lg\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .lg\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .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: 4px;
  }

  .lg\:pr-1 {
    padding-right: 4px;
  }

  .lg\:pb-1 {
    padding-bottom: 4px;
  }

  .lg\:pl-1 {
    padding-left: 4px;
  }

  .lg\:pt-2 {
    padding-top: 8px;
  }

  .lg\:pr-2 {
    padding-right: 8px;
  }

  .lg\:pb-2 {
    padding-bottom: 8px;
  }

  .lg\:pl-2 {
    padding-left: 8px;
  }

  .lg\:pt-3 {
    padding-top: 12px;
  }

  .lg\:pr-3 {
    padding-right: 12px;
  }

  .lg\:pb-3 {
    padding-bottom: 12px;
  }

  .lg\:pl-3 {
    padding-left: 12px;
  }

  .lg\:pt-4 {
    padding-top: 16px;
  }

  .lg\:pr-4 {
    padding-right: 16px;
  }

  .lg\:pb-4 {
    padding-bottom: 16px;
  }

  .lg\:pl-4 {
    padding-left: 16px;
  }

  .lg\:pt-5 {
    padding-top: 20px;
  }

  .lg\:pr-5 {
    padding-right: 20px;
  }

  .lg\:pb-5 {
    padding-bottom: 20px;
  }

  .lg\:pl-5 {
    padding-left: 20px;
  }

  .lg\:pt-6 {
    padding-top: 24px;
  }

  .lg\:pr-6 {
    padding-right: 24px;
  }

  .lg\:pb-6 {
    padding-bottom: 24px;
  }

  .lg\:pl-6 {
    padding-left: 24px;
  }

  .lg\:pt-8 {
    padding-top: 32px;
  }

  .lg\:pr-8 {
    padding-right: 32px;
  }

  .lg\:pb-8 {
    padding-bottom: 32px;
  }

  .lg\:pl-8 {
    padding-left: 32px;
  }

  .lg\:pt-10 {
    padding-top: 40px;
  }

  .lg\:pr-10 {
    padding-right: 40px;
  }

  .lg\:pb-10 {
    padding-bottom: 40px;
  }

  .lg\:pl-10 {
    padding-left: 40px;
  }

  .lg\:pt-12 {
    padding-top: 48px;
  }

  .lg\:pr-12 {
    padding-right: 48px;
  }

  .lg\:pb-12 {
    padding-bottom: 48px;
  }

  .lg\:pl-12 {
    padding-left: 48px;
  }

  .lg\:pt-16 {
    padding-top: 64px;
  }

  .lg\:pr-16 {
    padding-right: 64px;
  }

  .lg\:pb-16 {
    padding-bottom: 64px;
  }

  .lg\:pl-16 {
    padding-left: 64px;
  }

  .lg\:pt-20 {
    padding-top: 80px;
  }

  .lg\:pr-20 {
    padding-right: 80px;
  }

  .lg\:pb-20 {
    padding-bottom: 80px;
  }

  .lg\:pl-20 {
    padding-left: 80px;
  }

  .lg\:pt-24 {
    padding-top: 96px;
  }

  .lg\:pr-24 {
    padding-right: 96px;
  }

  .lg\:pb-24 {
    padding-bottom: 96px;
  }

  .lg\:pl-24 {
    padding-left: 96px;
  }

  .lg\:pt-32 {
    padding-top: 128px;
  }

  .lg\:pr-32 {
    padding-right: 128px;
  }

  .lg\:pb-32 {
    padding-bottom: 128px;
  }

  .lg\:pl-32 {
    padding-left: 128px;
  }

  .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\: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\:resize-none {
    resize: none;
  }

  .lg\:resize-y {
    resize: vertical;
  }

  .lg\:resize-x {
    resize: horizontal;
  }

  .lg\:resize {
    resize: both;
  }

  .lg\:shadow-outline-transparent {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .lg\:shadow-outline-black-50 {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .lg\:shadow-outline-dark-gray {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .lg\:shadow-outline-light-gray {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .lg\:shadow-outline-meta-gray {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .lg\:shadow-outline-purple-dark {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .lg\:shadow-outline-red-dark {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .lg\:shadow-outline-black {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .lg\:shadow-outline-blue {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .lg\:shadow-outline-facebook {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .lg\:shadow-outline-gray {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .lg\:shadow-outline-green {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .lg\:shadow-outline-linkedin {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .lg\:shadow-outline-orange {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .lg\:shadow-outline-pink {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .lg\:shadow-outline-purple {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .lg\:shadow-outline-red {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .lg\:shadow-outline-rss {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .lg\:shadow-outline-twitter {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .lg\:shadow-outline-white {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .lg\:shadow-darken {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .lg\:hover\:shadow-outline-transparent:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .lg\:hover\:shadow-outline-black-50:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .lg\:hover\:shadow-outline-dark-gray:hover {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .lg\:hover\:shadow-outline-light-gray:hover {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .lg\:hover\:shadow-outline-meta-gray:hover {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .lg\:hover\:shadow-outline-purple-dark:hover {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .lg\:hover\:shadow-outline-red-dark:hover {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .lg\:hover\:shadow-outline-black:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .lg\:hover\:shadow-outline-blue:hover {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .lg\:hover\:shadow-outline-facebook:hover {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .lg\:hover\:shadow-outline-gray:hover {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .lg\:hover\:shadow-outline-green:hover {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .lg\:hover\:shadow-outline-linkedin:hover {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .lg\:hover\:shadow-outline-orange:hover {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .lg\:hover\:shadow-outline-pink:hover {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .lg\:hover\:shadow-outline-purple:hover {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .lg\:hover\:shadow-outline-red:hover {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .lg\:hover\:shadow-outline-rss:hover {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .lg\:hover\:shadow-outline-twitter:hover {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .lg\:hover\:shadow-outline-white:hover {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .lg\:hover\:shadow-darken:hover {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .lg\:focus\:shadow-outline-transparent:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .lg\:focus\:shadow-outline-black-50:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .lg\:focus\:shadow-outline-dark-gray:focus {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .lg\:focus\:shadow-outline-light-gray:focus {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .lg\:focus\:shadow-outline-meta-gray:focus {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .lg\:focus\:shadow-outline-purple-dark:focus {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .lg\:focus\:shadow-outline-red-dark:focus {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .lg\:focus\:shadow-outline-black:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .lg\:focus\:shadow-outline-blue:focus {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .lg\:focus\:shadow-outline-facebook:focus {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .lg\:focus\:shadow-outline-gray:focus {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .lg\:focus\:shadow-outline-green:focus {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .lg\:focus\:shadow-outline-linkedin:focus {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .lg\:focus\:shadow-outline-orange:focus {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .lg\:focus\:shadow-outline-pink:focus {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .lg\:focus\:shadow-outline-purple:focus {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .lg\:focus\:shadow-outline-red:focus {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .lg\:focus\:shadow-outline-rss:focus {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .lg\:focus\:shadow-outline-twitter:focus {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .lg\:focus\:shadow-outline-white:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .lg\:focus\:shadow-darken:focus {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .lg\:table-auto {
    table-layout: auto;
  }

  .lg\:table-fixed {
    table-layout: fixed;
  }

  .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-black-50 {
    color: rgba(0, 0, 0, .5);
  }

  .lg\:text-dark-gray {
    color: #3e3e3e;
  }

  .lg\:text-light-gray {
    color: #f5f5f5;
  }

  .lg\:text-meta-gray {
    color: #595959;
  }

  .lg\:text-purple-dark {
    color: #45247f;
  }

  .lg\:text-red-dark {
    color: #cd1936;
  }

  .lg\:text-black {
    color: #000;
  }

  .lg\:text-blue {
    color: #42b6da;
  }

  .lg\:text-facebook {
    color: #3b5998;
  }

  .lg\:text-gray {
    color: #e5e5e5;
  }

  .lg\:text-green {
    color: #63c29e;
  }

  .lg\:text-linkedin {
    color: #0077b5;
  }

  .lg\:text-orange {
    color: #ed8123;
  }

  .lg\:text-pink {
    color: #e85e9c;
  }

  .lg\:text-purple {
    color: #7a6cb2;
  }

  .lg\:text-red {
    color: #e31d3c;
  }

  .lg\:text-rss {
    color: #fb9f1c;
  }

  .lg\:text-twitter {
    color: #1da1f2;
  }

  .lg\:text-white {
    color: #fff;
  }

  .lg\:text-inherit {
    color: inherit;
  }

  .lg\:hover\:text-transparent:hover {
    color: transparent;
  }

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

  .lg\:hover\:text-dark-gray:hover {
    color: #3e3e3e;
  }

  .lg\:hover\:text-light-gray:hover {
    color: #f5f5f5;
  }

  .lg\:hover\:text-meta-gray:hover {
    color: #595959;
  }

  .lg\:hover\:text-purple-dark:hover {
    color: #45247f;
  }

  .lg\:hover\:text-red-dark:hover {
    color: #cd1936;
  }

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

  .lg\:hover\:text-blue:hover {
    color: #42b6da;
  }

  .lg\:hover\:text-facebook:hover {
    color: #3b5998;
  }

  .lg\:hover\:text-gray:hover {
    color: #e5e5e5;
  }

  .lg\:hover\:text-green:hover {
    color: #63c29e;
  }

  .lg\:hover\:text-linkedin:hover {
    color: #0077b5;
  }

  .lg\:hover\:text-orange:hover {
    color: #ed8123;
  }

  .lg\:hover\:text-pink:hover {
    color: #e85e9c;
  }

  .lg\:hover\:text-purple:hover {
    color: #7a6cb2;
  }

  .lg\:hover\:text-red:hover {
    color: #e31d3c;
  }

  .lg\:hover\:text-rss:hover {
    color: #fb9f1c;
  }

  .lg\:hover\:text-twitter:hover {
    color: #1da1f2;
  }

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

  .lg\:hover\:text-inherit:hover {
    color: inherit;
  }

  .lg\:focus\:text-transparent:focus {
    color: transparent;
  }

  .lg\:focus\:text-black-50:focus {
    color: rgba(0, 0, 0, .5);
  }

  .lg\:focus\:text-dark-gray:focus {
    color: #3e3e3e;
  }

  .lg\:focus\:text-light-gray:focus {
    color: #f5f5f5;
  }

  .lg\:focus\:text-meta-gray:focus {
    color: #595959;
  }

  .lg\:focus\:text-purple-dark:focus {
    color: #45247f;
  }

  .lg\:focus\:text-red-dark:focus {
    color: #cd1936;
  }

  .lg\:focus\:text-black:focus {
    color: #000;
  }

  .lg\:focus\:text-blue:focus {
    color: #42b6da;
  }

  .lg\:focus\:text-facebook:focus {
    color: #3b5998;
  }

  .lg\:focus\:text-gray:focus {
    color: #e5e5e5;
  }

  .lg\:focus\:text-green:focus {
    color: #63c29e;
  }

  .lg\:focus\:text-linkedin:focus {
    color: #0077b5;
  }

  .lg\:focus\:text-orange:focus {
    color: #ed8123;
  }

  .lg\:focus\:text-pink:focus {
    color: #e85e9c;
  }

  .lg\:focus\:text-purple:focus {
    color: #7a6cb2;
  }

  .lg\:focus\:text-red:focus {
    color: #e31d3c;
  }

  .lg\:focus\:text-rss:focus {
    color: #fb9f1c;
  }

  .lg\:focus\:text-twitter:focus {
    color: #1da1f2;
  }

  .lg\:focus\:text-white:focus {
    color: #fff;
  }

  .lg\:focus\:text-inherit:focus {
    color: inherit;
  }

  .lg\:text-xs {
    font-size: 12px;
  }

  .lg\:text-sm {
    font-size: 14px;
  }

  .lg\:text-md {
    font-size: 16px;
  }

  .lg\:text-lg {
    font-size: 18px;
  }

  .lg\:text-xl {
    font-size: 20px;
  }

  .lg\:text-2xl {
    font-size: 22px;
  }

  .lg\:text-3xl {
    font-size: 24px;
  }

  .lg\:text-4xl {
    font-size: 26px;
  }

  .lg\:text-5xl {
    font-size: 30px;
  }

  .lg\:text-6xl {
    font-size: 36px;
  }

  .lg\:text-7xl {
    font-size: 48px;
  }

  .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\:focus\:italic:focus {
    font-style: italic;
  }

  .lg\:focus\:roman:focus {
    font-style: normal;
  }

  .lg\:focus\:uppercase:focus {
    text-transform: uppercase;
  }

  .lg\:focus\:lowercase:focus {
    text-transform: lowercase;
  }

  .lg\:focus\:capitalize:focus {
    text-transform: capitalize;
  }

  .lg\:focus\:normal-case:focus {
    text-transform: none;
  }

  .lg\:focus\:underline:focus {
    text-decoration: underline;
  }

  .lg\:focus\:line-through:focus {
    text-decoration: line-through;
  }

  .lg\:focus\:no-underline:focus {
    text-decoration: none;
  }

  .lg\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .lg\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .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-1 {
    width: 4px;
  }

  .lg\:w-2 {
    width: 8px;
  }

  .lg\:w-3 {
    width: 12px;
  }

  .lg\:w-4 {
    width: 16px;
  }

  .lg\:w-5 {
    width: 20px;
  }

  .lg\:w-6 {
    width: 24px;
  }

  .lg\:w-8 {
    width: 32px;
  }

  .lg\:w-10 {
    width: 40px;
  }

  .lg\:w-12 {
    width: 48px;
  }

  .lg\:w-14 {
    width: 56px;
  }

  .lg\:w-16 {
    width: 64px;
  }

  .lg\:w-24 {
    width: 96px;
  }

  .lg\:w-32 {
    width: 128px;
  }

  .lg\:w-48 {
    width: 192px;
  }

  .lg\:w-64 {
    width: 256px;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-px {
    width: 1px;
  }

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

  .lg\:w-1\/3 {
    width: 33.33333%;
  }

  .lg\:w-2\/3 {
    width: 66.66667%;
  }

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

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

  .lg\:w-1\/5 {
    width: 20%;
  }

  .lg\:w-2\/5 {
    width: 40%;
  }

  .lg\:w-3\/5 {
    width: 60%;
  }

  .lg\:w-4\/5 {
    width: 80%;
  }

  .lg\:w-1\/6 {
    width: 16.66667%;
  }

  .lg\:w-1\/10 {
    width: 10%;
  }

  .lg\:w-5\/6 {
    width: 83.33333%;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:w-screen {
    width: 100vw;
  }

  .lg\:z-0 {
    z-index: 0;
  }

  .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-auto {
    z-index: auto;
  }
}

@media (min-width: 960px) {
  .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-black-50 {
    background-color: rgba(0, 0, 0, .5);
  }

  .xl\:bg-dark-gray {
    background-color: #3e3e3e;
  }

  .xl\:bg-light-gray {
    background-color: #f5f5f5;
  }

  .xl\:bg-meta-gray {
    background-color: #595959;
  }

  .xl\:bg-purple-dark {
    background-color: #45247f;
  }

  .xl\:bg-red-dark {
    background-color: #cd1936;
  }

  .xl\:bg-black {
    background-color: #000;
  }

  .xl\:bg-blue {
    background-color: #42b6da;
  }

  .xl\:bg-facebook {
    background-color: #3b5998;
  }

  .xl\:bg-gray {
    background-color: #e5e5e5;
  }

  .xl\:bg-green {
    background-color: #63c29e;
  }

  .xl\:bg-linkedin {
    background-color: #0077b5;
  }

  .xl\:bg-orange {
    background-color: #ed8123;
  }

  .xl\:bg-pink {
    background-color: #e85e9c;
  }

  .xl\:bg-purple {
    background-color: #7a6cb2;
  }

  .xl\:bg-red {
    background-color: #e31d3c;
  }

  .xl\:bg-rss {
    background-color: #fb9f1c;
  }

  .xl\:bg-twitter {
    background-color: #1da1f2;
  }

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

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

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

  .xl\:hover\:bg-dark-gray:hover {
    background-color: #3e3e3e;
  }

  .xl\:hover\:bg-light-gray:hover {
    background-color: #f5f5f5;
  }

  .xl\:hover\:bg-meta-gray:hover {
    background-color: #595959;
  }

  .xl\:hover\:bg-purple-dark:hover {
    background-color: #45247f;
  }

  .xl\:hover\:bg-red-dark:hover {
    background-color: #cd1936;
  }

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

  .xl\:hover\:bg-blue:hover {
    background-color: #42b6da;
  }

  .xl\:hover\:bg-facebook:hover {
    background-color: #3b5998;
  }

  .xl\:hover\:bg-gray:hover {
    background-color: #e5e5e5;
  }

  .xl\:hover\:bg-green:hover {
    background-color: #63c29e;
  }

  .xl\:hover\:bg-linkedin:hover {
    background-color: #0077b5;
  }

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

  .xl\:hover\:bg-pink:hover {
    background-color: #e85e9c;
  }

  .xl\:hover\:bg-purple:hover {
    background-color: #7a6cb2;
  }

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

  .xl\:hover\:bg-rss:hover {
    background-color: #fb9f1c;
  }

  .xl\:hover\:bg-twitter:hover {
    background-color: #1da1f2;
  }

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

  .xl\:focus\:bg-transparent:focus {
    background-color: transparent;
  }

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

  .xl\:focus\:bg-dark-gray:focus {
    background-color: #3e3e3e;
  }

  .xl\:focus\:bg-light-gray:focus {
    background-color: #f5f5f5;
  }

  .xl\:focus\:bg-meta-gray:focus {
    background-color: #595959;
  }

  .xl\:focus\:bg-purple-dark:focus {
    background-color: #45247f;
  }

  .xl\:focus\:bg-red-dark:focus {
    background-color: #cd1936;
  }

  .xl\:focus\:bg-black:focus {
    background-color: #000;
  }

  .xl\:focus\:bg-blue:focus {
    background-color: #42b6da;
  }

  .xl\:focus\:bg-facebook:focus {
    background-color: #3b5998;
  }

  .xl\:focus\:bg-gray:focus {
    background-color: #e5e5e5;
  }

  .xl\:focus\:bg-green:focus {
    background-color: #63c29e;
  }

  .xl\:focus\:bg-linkedin:focus {
    background-color: #0077b5;
  }

  .xl\:focus\:bg-orange:focus {
    background-color: #ed8123;
  }

  .xl\:focus\:bg-pink:focus {
    background-color: #e85e9c;
  }

  .xl\:focus\:bg-purple:focus {
    background-color: #7a6cb2;
  }

  .xl\:focus\:bg-red:focus {
    background-color: #e31d3c;
  }

  .xl\:focus\:bg-rss:focus {
    background-color: #fb9f1c;
  }

  .xl\:focus\:bg-twitter:focus {
    background-color: #1da1f2;
  }

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

  .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-black-50 {
    border-color: rgba(0, 0, 0, .5);
  }

  .xl\:border-dark-gray {
    border-color: #3e3e3e;
  }

  .xl\:border-light-gray {
    border-color: #f5f5f5;
  }

  .xl\:border-meta-gray {
    border-color: #595959;
  }

  .xl\:border-purple-dark {
    border-color: #45247f;
  }

  .xl\:border-red-dark {
    border-color: #cd1936;
  }

  .xl\:border-black {
    border-color: #000;
  }

  .xl\:border-blue {
    border-color: #42b6da;
  }

  .xl\:border-facebook {
    border-color: #3b5998;
  }

  .xl\:border-gray {
    border-color: #e5e5e5;
  }

  .xl\:border-green {
    border-color: #63c29e;
  }

  .xl\:border-linkedin {
    border-color: #0077b5;
  }

  .xl\:border-orange {
    border-color: #ed8123;
  }

  .xl\:border-pink {
    border-color: #e85e9c;
  }

  .xl\:border-purple {
    border-color: #7a6cb2;
  }

  .xl\:border-red {
    border-color: #e31d3c;
  }

  .xl\:border-rss {
    border-color: #fb9f1c;
  }

  .xl\:border-twitter {
    border-color: #1da1f2;
  }

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

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

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

  .xl\:hover\:border-dark-gray:hover {
    border-color: #3e3e3e;
  }

  .xl\:hover\:border-light-gray:hover {
    border-color: #f5f5f5;
  }

  .xl\:hover\:border-meta-gray:hover {
    border-color: #595959;
  }

  .xl\:hover\:border-purple-dark:hover {
    border-color: #45247f;
  }

  .xl\:hover\:border-red-dark:hover {
    border-color: #cd1936;
  }

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

  .xl\:hover\:border-blue:hover {
    border-color: #42b6da;
  }

  .xl\:hover\:border-facebook:hover {
    border-color: #3b5998;
  }

  .xl\:hover\:border-gray:hover {
    border-color: #e5e5e5;
  }

  .xl\:hover\:border-green:hover {
    border-color: #63c29e;
  }

  .xl\:hover\:border-linkedin:hover {
    border-color: #0077b5;
  }

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

  .xl\:hover\:border-pink:hover {
    border-color: #e85e9c;
  }

  .xl\:hover\:border-purple:hover {
    border-color: #7a6cb2;
  }

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

  .xl\:hover\:border-rss:hover {
    border-color: #fb9f1c;
  }

  .xl\:hover\:border-twitter:hover {
    border-color: #1da1f2;
  }

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

  .xl\:focus\:border-transparent:focus {
    border-color: transparent;
  }

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

  .xl\:focus\:border-dark-gray:focus {
    border-color: #3e3e3e;
  }

  .xl\:focus\:border-light-gray:focus {
    border-color: #f5f5f5;
  }

  .xl\:focus\:border-meta-gray:focus {
    border-color: #595959;
  }

  .xl\:focus\:border-purple-dark:focus {
    border-color: #45247f;
  }

  .xl\:focus\:border-red-dark:focus {
    border-color: #cd1936;
  }

  .xl\:focus\:border-black:focus {
    border-color: #000;
  }

  .xl\:focus\:border-blue:focus {
    border-color: #42b6da;
  }

  .xl\:focus\:border-facebook:focus {
    border-color: #3b5998;
  }

  .xl\:focus\:border-gray:focus {
    border-color: #e5e5e5;
  }

  .xl\:focus\:border-green:focus {
    border-color: #63c29e;
  }

  .xl\:focus\:border-linkedin:focus {
    border-color: #0077b5;
  }

  .xl\:focus\:border-orange:focus {
    border-color: #ed8123;
  }

  .xl\:focus\:border-pink:focus {
    border-color: #e85e9c;
  }

  .xl\:focus\:border-purple:focus {
    border-color: #7a6cb2;
  }

  .xl\:focus\:border-red:focus {
    border-color: #e31d3c;
  }

  .xl\:focus\:border-rss:focus {
    border-color: #fb9f1c;
  }

  .xl\:focus\:border-twitter:focus {
    border-color: #1da1f2;
  }

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

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

  .xl\:rounded {
    border-radius: 8px;
  }

  .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 {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .xl\:rounded-r {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .xl\:rounded-b {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .xl\:rounded-l {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .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 {
    border-top-left-radius: 8px;
  }

  .xl\:rounded-tr {
    border-top-right-radius: 8px;
  }

  .xl\:rounded-br {
    border-bottom-right-radius: 8px;
  }

  .xl\:rounded-bl {
    border-bottom-left-radius: 8px;
  }

  .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-4 {
    border-width: 4px;
  }

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

  .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-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-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 {
    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: flex;
  }

  .xl\:inline-flex {
    display: inline-flex;
  }

  .xl\:flex-row {
    flex-direction: row;
  }

  .xl\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .xl\:flex-col {
    flex-direction: column;
  }

  .xl\:flex-col-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 {
    align-items: flex-start;
  }

  .xl\:items-end {
    align-items: flex-end;
  }

  .xl\:items-center {
    align-items: center;
  }

  .xl\:items-baseline {
    align-items: baseline;
  }

  .xl\:items-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 {
    justify-content: flex-start;
  }

  .xl\:justify-end {
    justify-content: flex-end;
  }

  .xl\:justify-center {
    justify-content: center;
  }

  .xl\:justify-between {
    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 {
    flex: 1 1 0%;
  }

  .xl\:flex-auto {
    flex: 1 1 auto;
  }

  .xl\:flex-initial {
    flex: 0 1 auto;
  }

  .xl\:flex-none {
    flex: none;
  }

  .xl\:flex-grow {
    flex-grow: 1;
  }

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

  .xl\:flex-no-grow {
    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-futura {
    font-family: Futura, Helvetica Neue, Helvetica, sans-serif;
  }

  .xl\:font-hairline {
    font-weight: 100;
  }

  .xl\:font-thin {
    font-weight: 200;
  }

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

  .xl\:hover\:font-hairline:hover {
    font-weight: 100;
  }

  .xl\:hover\:font-thin:hover {
    font-weight: 200;
  }

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

  .xl\:focus\:font-hairline:focus {
    font-weight: 100;
  }

  .xl\:focus\:font-thin:focus {
    font-weight: 200;
  }

  .xl\:focus\:font-light:focus {
    font-weight: 300;
  }

  .xl\:focus\:font-normal:focus {
    font-weight: 400;
  }

  .xl\:focus\:font-medium:focus {
    font-weight: 500;
  }

  .xl\:focus\:font-semibold:focus {
    font-weight: 600;
  }

  .xl\:focus\:font-bold:focus {
    font-weight: 700;
  }

  .xl\:focus\:font-extrabold:focus {
    font-weight: 800;
  }

  .xl\:focus\:font-black:focus {
    font-weight: 900;
  }

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

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

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

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

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

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

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

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

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

  .xl\:m-0 {
    margin: 0;
  }

  .xl\:m-1 {
    margin: 4px;
  }

  .xl\:m-2 {
    margin: 8px;
  }

  .xl\:m-3 {
    margin: 12px;
  }

  .xl\:m-4 {
    margin: 16px;
  }

  .xl\:m-5 {
    margin: 20px;
  }

  .xl\:m-6 {
    margin: 24px;
  }

  .xl\:m-8 {
    margin: 32px;
  }

  .xl\:m-10 {
    margin: 40px;
  }

  .xl\:m-12 {
    margin: 48px;
  }

  .xl\:m-16 {
    margin: 64px;
  }

  .xl\:m-20 {
    margin: 80px;
  }

  .xl\:m-24 {
    margin: 96px;
  }

  .xl\:m-32 {
    margin: 128px;
  }

  .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: 4px;
    margin-bottom: 4px;
  }

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

  .xl\:my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .xl\:mx-2 {
    margin-left: 8px;
    margin-right: 8px;
  }

  .xl\:my-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .xl\:mx-3 {
    margin-left: 12px;
    margin-right: 12px;
  }

  .xl\:my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .xl\:mx-4 {
    margin-left: 16px;
    margin-right: 16px;
  }

  .xl\:my-5 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .xl\:mx-5 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .xl\:my-6 {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .xl\:mx-6 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .xl\:my-8 {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .xl\:mx-8 {
    margin-left: 32px;
    margin-right: 32px;
  }

  .xl\:my-10 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .xl\:mx-10 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .xl\:my-12 {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .xl\:mx-12 {
    margin-left: 48px;
    margin-right: 48px;
  }

  .xl\:my-16 {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .xl\:mx-16 {
    margin-left: 64px;
    margin-right: 64px;
  }

  .xl\:my-20 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .xl\:mx-20 {
    margin-left: 80px;
    margin-right: 80px;
  }

  .xl\:my-24 {
    margin-top: 96px;
    margin-bottom: 96px;
  }

  .xl\:mx-24 {
    margin-left: 96px;
    margin-right: 96px;
  }

  .xl\:my-32 {
    margin-top: 128px;
    margin-bottom: 128px;
  }

  .xl\:mx-32 {
    margin-left: 128px;
    margin-right: 128px;
  }

  .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: 4px;
  }

  .xl\:mr-1 {
    margin-right: 4px;
  }

  .xl\:mb-1 {
    margin-bottom: 4px;
  }

  .xl\:ml-1 {
    margin-left: 4px;
  }

  .xl\:mt-2 {
    margin-top: 8px;
  }

  .xl\:mr-2 {
    margin-right: 8px;
  }

  .xl\:mb-2 {
    margin-bottom: 8px;
  }

  .xl\:ml-2 {
    margin-left: 8px;
  }

  .xl\:mt-3 {
    margin-top: 12px;
  }

  .xl\:mr-3 {
    margin-right: 12px;
  }

  .xl\:mb-3 {
    margin-bottom: 12px;
  }

  .xl\:ml-3 {
    margin-left: 12px;
  }

  .xl\:mt-4 {
    margin-top: 16px;
  }

  .xl\:mr-4 {
    margin-right: 16px;
  }

  .xl\:mb-4 {
    margin-bottom: 16px;
  }

  .xl\:ml-4 {
    margin-left: 16px;
  }

  .xl\:mt-5 {
    margin-top: 20px;
  }

  .xl\:mr-5 {
    margin-right: 20px;
  }

  .xl\:mb-5 {
    margin-bottom: 20px;
  }

  .xl\:ml-5 {
    margin-left: 20px;
  }

  .xl\:mt-6 {
    margin-top: 24px;
  }

  .xl\:mr-6 {
    margin-right: 24px;
  }

  .xl\:mb-6 {
    margin-bottom: 24px;
  }

  .xl\:ml-6 {
    margin-left: 24px;
  }

  .xl\:mt-8 {
    margin-top: 32px;
  }

  .xl\:mr-8 {
    margin-right: 32px;
  }

  .xl\:mb-8 {
    margin-bottom: 32px;
  }

  .xl\:ml-8 {
    margin-left: 32px;
  }

  .xl\:mt-10 {
    margin-top: 40px;
  }

  .xl\:mr-10 {
    margin-right: 40px;
  }

  .xl\:mb-10 {
    margin-bottom: 40px;
  }

  .xl\:ml-10 {
    margin-left: 40px;
  }

  .xl\:mt-12 {
    margin-top: 48px;
  }

  .xl\:mr-12 {
    margin-right: 48px;
  }

  .xl\:mb-12 {
    margin-bottom: 48px;
  }

  .xl\:ml-12 {
    margin-left: 48px;
  }

  .xl\:mt-16 {
    margin-top: 64px;
  }

  .xl\:mr-16 {
    margin-right: 64px;
  }

  .xl\:mb-16 {
    margin-bottom: 64px;
  }

  .xl\:ml-16 {
    margin-left: 64px;
  }

  .xl\:mt-20 {
    margin-top: 80px;
  }

  .xl\:mr-20 {
    margin-right: 80px;
  }

  .xl\:mb-20 {
    margin-bottom: 80px;
  }

  .xl\:ml-20 {
    margin-left: 80px;
  }

  .xl\:mt-24 {
    margin-top: 96px;
  }

  .xl\:mr-24 {
    margin-right: 96px;
  }

  .xl\:mb-24 {
    margin-bottom: 96px;
  }

  .xl\:ml-24 {
    margin-left: 96px;
  }

  .xl\:mt-32 {
    margin-top: 128px;
  }

  .xl\:mr-32 {
    margin-right: 128px;
  }

  .xl\:mb-32 {
    margin-bottom: 128px;
  }

  .xl\:ml-32 {
    margin-left: 128px;
  }

  .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-100 {
    max-height: 100px;
  }

  .xl\:max-h-120 {
    max-height: 120px;
  }

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

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

  .xl\:max-w-xs {
    max-width: 640px;
  }

  .xl\:max-w-sm {
    max-width: 720px;
  }

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

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

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

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

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

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

  .xl\:-m-1 {
    margin: -4px;
  }

  .xl\:-m-2 {
    margin: -8px;
  }

  .xl\:-m-3 {
    margin: -12px;
  }

  .xl\:-m-4 {
    margin: -16px;
  }

  .xl\:-m-5 {
    margin: -20px;
  }

  .xl\:-m-6 {
    margin: -24px;
  }

  .xl\:-m-8 {
    margin: -32px;
  }

  .xl\:-m-10 {
    margin: -40px;
  }

  .xl\:-m-12 {
    margin: -48px;
  }

  .xl\:-m-16 {
    margin: -64px;
  }

  .xl\:-m-20 {
    margin: -80px;
  }

  .xl\:-m-24 {
    margin: -96px;
  }

  .xl\:-m-32 {
    margin: -128px;
  }

  .xl\:-m-px {
    margin: -1px;
  }

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

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

  .xl\:-my-2 {
    margin-top: -8px;
    margin-bottom: -8px;
  }

  .xl\:-mx-2 {
    margin-left: -8px;
    margin-right: -8px;
  }

  .xl\:-my-3 {
    margin-top: -12px;
    margin-bottom: -12px;
  }

  .xl\:-mx-3 {
    margin-left: -12px;
    margin-right: -12px;
  }

  .xl\:-my-4 {
    margin-top: -16px;
    margin-bottom: -16px;
  }

  .xl\:-mx-4 {
    margin-left: -16px;
    margin-right: -16px;
  }

  .xl\:-my-5 {
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .xl\:-mx-5 {
    margin-left: -20px;
    margin-right: -20px;
  }

  .xl\:-my-6 {
    margin-top: -24px;
    margin-bottom: -24px;
  }

  .xl\:-mx-6 {
    margin-left: -24px;
    margin-right: -24px;
  }

  .xl\:-my-8 {
    margin-top: -32px;
    margin-bottom: -32px;
  }

  .xl\:-mx-8 {
    margin-left: -32px;
    margin-right: -32px;
  }

  .xl\:-my-10 {
    margin-top: -40px;
    margin-bottom: -40px;
  }

  .xl\:-mx-10 {
    margin-left: -40px;
    margin-right: -40px;
  }

  .xl\:-my-12 {
    margin-top: -48px;
    margin-bottom: -48px;
  }

  .xl\:-mx-12 {
    margin-left: -48px;
    margin-right: -48px;
  }

  .xl\:-my-16 {
    margin-top: -64px;
    margin-bottom: -64px;
  }

  .xl\:-mx-16 {
    margin-left: -64px;
    margin-right: -64px;
  }

  .xl\:-my-20 {
    margin-top: -80px;
    margin-bottom: -80px;
  }

  .xl\:-mx-20 {
    margin-left: -80px;
    margin-right: -80px;
  }

  .xl\:-my-24 {
    margin-top: -96px;
    margin-bottom: -96px;
  }

  .xl\:-mx-24 {
    margin-left: -96px;
    margin-right: -96px;
  }

  .xl\:-my-32 {
    margin-top: -128px;
    margin-bottom: -128px;
  }

  .xl\:-mx-32 {
    margin-left: -128px;
    margin-right: -128px;
  }

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

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

  .xl\:-mt-1 {
    margin-top: -4px;
  }

  .xl\:-mr-1 {
    margin-right: -4px;
  }

  .xl\:-mb-1 {
    margin-bottom: -4px;
  }

  .xl\:-ml-1 {
    margin-left: -4px;
  }

  .xl\:-mt-2 {
    margin-top: -8px;
  }

  .xl\:-mr-2 {
    margin-right: -8px;
  }

  .xl\:-mb-2 {
    margin-bottom: -8px;
  }

  .xl\:-ml-2 {
    margin-left: -8px;
  }

  .xl\:-mt-3 {
    margin-top: -12px;
  }

  .xl\:-mr-3 {
    margin-right: -12px;
  }

  .xl\:-mb-3 {
    margin-bottom: -12px;
  }

  .xl\:-ml-3 {
    margin-left: -12px;
  }

  .xl\:-mt-4 {
    margin-top: -16px;
  }

  .xl\:-mr-4 {
    margin-right: -16px;
  }

  .xl\:-mb-4 {
    margin-bottom: -16px;
  }

  .xl\:-ml-4 {
    margin-left: -16px;
  }

  .xl\:-mt-5 {
    margin-top: -20px;
  }

  .xl\:-mr-5 {
    margin-right: -20px;
  }

  .xl\:-mb-5 {
    margin-bottom: -20px;
  }

  .xl\:-ml-5 {
    margin-left: -20px;
  }

  .xl\:-mt-6 {
    margin-top: -24px;
  }

  .xl\:-mr-6 {
    margin-right: -24px;
  }

  .xl\:-mb-6 {
    margin-bottom: -24px;
  }

  .xl\:-ml-6 {
    margin-left: -24px;
  }

  .xl\:-mt-8 {
    margin-top: -32px;
  }

  .xl\:-mr-8 {
    margin-right: -32px;
  }

  .xl\:-mb-8 {
    margin-bottom: -32px;
  }

  .xl\:-ml-8 {
    margin-left: -32px;
  }

  .xl\:-mt-10 {
    margin-top: -40px;
  }

  .xl\:-mr-10 {
    margin-right: -40px;
  }

  .xl\:-mb-10 {
    margin-bottom: -40px;
  }

  .xl\:-ml-10 {
    margin-left: -40px;
  }

  .xl\:-mt-12 {
    margin-top: -48px;
  }

  .xl\:-mr-12 {
    margin-right: -48px;
  }

  .xl\:-mb-12 {
    margin-bottom: -48px;
  }

  .xl\:-ml-12 {
    margin-left: -48px;
  }

  .xl\:-mt-16 {
    margin-top: -64px;
  }

  .xl\:-mr-16 {
    margin-right: -64px;
  }

  .xl\:-mb-16 {
    margin-bottom: -64px;
  }

  .xl\:-ml-16 {
    margin-left: -64px;
  }

  .xl\:-mt-20 {
    margin-top: -80px;
  }

  .xl\:-mr-20 {
    margin-right: -80px;
  }

  .xl\:-mb-20 {
    margin-bottom: -80px;
  }

  .xl\:-ml-20 {
    margin-left: -80px;
  }

  .xl\:-mt-24 {
    margin-top: -96px;
  }

  .xl\:-mr-24 {
    margin-right: -96px;
  }

  .xl\:-mb-24 {
    margin-bottom: -96px;
  }

  .xl\:-ml-24 {
    margin-left: -96px;
  }

  .xl\:-mt-32 {
    margin-top: -128px;
  }

  .xl\:-mr-32 {
    margin-right: -128px;
  }

  .xl\:-mb-32 {
    margin-bottom: -128px;
  }

  .xl\:-ml-32 {
    margin-left: -128px;
  }

  .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-hidden {
    overflow-x: hidden;
  }

  .xl\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .xl\:overflow-x-visible {
    overflow-x: visible;
  }

  .xl\:overflow-y-visible {
    overflow-y: visible;
  }

  .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: 4px;
  }

  .xl\:p-2 {
    padding: 8px;
  }

  .xl\:p-3 {
    padding: 12px;
  }

  .xl\:p-4 {
    padding: 16px;
  }

  .xl\:p-5 {
    padding: 20px;
  }

  .xl\:p-6 {
    padding: 24px;
  }

  .xl\:p-8 {
    padding: 32px;
  }

  .xl\:p-10 {
    padding: 40px;
  }

  .xl\:p-12 {
    padding: 48px;
  }

  .xl\:p-16 {
    padding: 64px;
  }

  .xl\:p-20 {
    padding: 80px;
  }

  .xl\:p-24 {
    padding: 96px;
  }

  .xl\:p-32 {
    padding: 128px;
  }

  .xl\:p-px {
    padding: 1px;
  }

  .xl\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .xl\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .xl\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .xl\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .xl\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .xl\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .xl\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .xl\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .xl\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .xl\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .xl\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .xl\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .xl\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .xl\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .xl\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .xl\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .xl\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .xl\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .xl\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .xl\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .xl\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .xl\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .xl\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .xl\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .xl\:py-24 {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .xl\:px-24 {
    padding-left: 96px;
    padding-right: 96px;
  }

  .xl\:py-32 {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .xl\:px-32 {
    padding-left: 128px;
    padding-right: 128px;
  }

  .xl\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .xl\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .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: 4px;
  }

  .xl\:pr-1 {
    padding-right: 4px;
  }

  .xl\:pb-1 {
    padding-bottom: 4px;
  }

  .xl\:pl-1 {
    padding-left: 4px;
  }

  .xl\:pt-2 {
    padding-top: 8px;
  }

  .xl\:pr-2 {
    padding-right: 8px;
  }

  .xl\:pb-2 {
    padding-bottom: 8px;
  }

  .xl\:pl-2 {
    padding-left: 8px;
  }

  .xl\:pt-3 {
    padding-top: 12px;
  }

  .xl\:pr-3 {
    padding-right: 12px;
  }

  .xl\:pb-3 {
    padding-bottom: 12px;
  }

  .xl\:pl-3 {
    padding-left: 12px;
  }

  .xl\:pt-4 {
    padding-top: 16px;
  }

  .xl\:pr-4 {
    padding-right: 16px;
  }

  .xl\:pb-4 {
    padding-bottom: 16px;
  }

  .xl\:pl-4 {
    padding-left: 16px;
  }

  .xl\:pt-5 {
    padding-top: 20px;
  }

  .xl\:pr-5 {
    padding-right: 20px;
  }

  .xl\:pb-5 {
    padding-bottom: 20px;
  }

  .xl\:pl-5 {
    padding-left: 20px;
  }

  .xl\:pt-6 {
    padding-top: 24px;
  }

  .xl\:pr-6 {
    padding-right: 24px;
  }

  .xl\:pb-6 {
    padding-bottom: 24px;
  }

  .xl\:pl-6 {
    padding-left: 24px;
  }

  .xl\:pt-8 {
    padding-top: 32px;
  }

  .xl\:pr-8 {
    padding-right: 32px;
  }

  .xl\:pb-8 {
    padding-bottom: 32px;
  }

  .xl\:pl-8 {
    padding-left: 32px;
  }

  .xl\:pt-10 {
    padding-top: 40px;
  }

  .xl\:pr-10 {
    padding-right: 40px;
  }

  .xl\:pb-10 {
    padding-bottom: 40px;
  }

  .xl\:pl-10 {
    padding-left: 40px;
  }

  .xl\:pt-12 {
    padding-top: 48px;
  }

  .xl\:pr-12 {
    padding-right: 48px;
  }

  .xl\:pb-12 {
    padding-bottom: 48px;
  }

  .xl\:pl-12 {
    padding-left: 48px;
  }

  .xl\:pt-16 {
    padding-top: 64px;
  }

  .xl\:pr-16 {
    padding-right: 64px;
  }

  .xl\:pb-16 {
    padding-bottom: 64px;
  }

  .xl\:pl-16 {
    padding-left: 64px;
  }

  .xl\:pt-20 {
    padding-top: 80px;
  }

  .xl\:pr-20 {
    padding-right: 80px;
  }

  .xl\:pb-20 {
    padding-bottom: 80px;
  }

  .xl\:pl-20 {
    padding-left: 80px;
  }

  .xl\:pt-24 {
    padding-top: 96px;
  }

  .xl\:pr-24 {
    padding-right: 96px;
  }

  .xl\:pb-24 {
    padding-bottom: 96px;
  }

  .xl\:pl-24 {
    padding-left: 96px;
  }

  .xl\:pt-32 {
    padding-top: 128px;
  }

  .xl\:pr-32 {
    padding-right: 128px;
  }

  .xl\:pb-32 {
    padding-bottom: 128px;
  }

  .xl\:pl-32 {
    padding-left: 128px;
  }

  .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\: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\:resize-none {
    resize: none;
  }

  .xl\:resize-y {
    resize: vertical;
  }

  .xl\:resize-x {
    resize: horizontal;
  }

  .xl\:resize {
    resize: both;
  }

  .xl\:shadow-outline-transparent {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .xl\:shadow-outline-black-50 {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .xl\:shadow-outline-dark-gray {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .xl\:shadow-outline-light-gray {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .xl\:shadow-outline-meta-gray {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .xl\:shadow-outline-purple-dark {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .xl\:shadow-outline-red-dark {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .xl\:shadow-outline-black {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .xl\:shadow-outline-blue {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .xl\:shadow-outline-facebook {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .xl\:shadow-outline-gray {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .xl\:shadow-outline-green {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .xl\:shadow-outline-linkedin {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .xl\:shadow-outline-orange {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .xl\:shadow-outline-pink {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .xl\:shadow-outline-purple {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .xl\:shadow-outline-red {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .xl\:shadow-outline-rss {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .xl\:shadow-outline-twitter {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .xl\:shadow-outline-white {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .xl\:shadow-darken {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .xl\:hover\:shadow-outline-transparent:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .xl\:hover\:shadow-outline-black-50:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .xl\:hover\:shadow-outline-dark-gray:hover {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .xl\:hover\:shadow-outline-light-gray:hover {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .xl\:hover\:shadow-outline-meta-gray:hover {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .xl\:hover\:shadow-outline-purple-dark:hover {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .xl\:hover\:shadow-outline-red-dark:hover {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .xl\:hover\:shadow-outline-black:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .xl\:hover\:shadow-outline-blue:hover {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .xl\:hover\:shadow-outline-facebook:hover {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .xl\:hover\:shadow-outline-gray:hover {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .xl\:hover\:shadow-outline-green:hover {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .xl\:hover\:shadow-outline-linkedin:hover {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .xl\:hover\:shadow-outline-orange:hover {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .xl\:hover\:shadow-outline-pink:hover {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .xl\:hover\:shadow-outline-purple:hover {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .xl\:hover\:shadow-outline-red:hover {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .xl\:hover\:shadow-outline-rss:hover {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .xl\:hover\:shadow-outline-twitter:hover {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .xl\:hover\:shadow-outline-white:hover {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .xl\:hover\:shadow-darken:hover {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .xl\:focus\:shadow-outline-transparent:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .xl\:focus\:shadow-outline-black-50:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .xl\:focus\:shadow-outline-dark-gray:focus {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .xl\:focus\:shadow-outline-light-gray:focus {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .xl\:focus\:shadow-outline-meta-gray:focus {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .xl\:focus\:shadow-outline-purple-dark:focus {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .xl\:focus\:shadow-outline-red-dark:focus {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .xl\:focus\:shadow-outline-black:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .xl\:focus\:shadow-outline-blue:focus {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .xl\:focus\:shadow-outline-facebook:focus {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .xl\:focus\:shadow-outline-gray:focus {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .xl\:focus\:shadow-outline-green:focus {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .xl\:focus\:shadow-outline-linkedin:focus {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .xl\:focus\:shadow-outline-orange:focus {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .xl\:focus\:shadow-outline-pink:focus {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .xl\:focus\:shadow-outline-purple:focus {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .xl\:focus\:shadow-outline-red:focus {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .xl\:focus\:shadow-outline-rss:focus {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .xl\:focus\:shadow-outline-twitter:focus {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .xl\:focus\:shadow-outline-white:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .xl\:focus\:shadow-darken:focus {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .xl\:table-auto {
    table-layout: auto;
  }

  .xl\:table-fixed {
    table-layout: fixed;
  }

  .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-black-50 {
    color: rgba(0, 0, 0, .5);
  }

  .xl\:text-dark-gray {
    color: #3e3e3e;
  }

  .xl\:text-light-gray {
    color: #f5f5f5;
  }

  .xl\:text-meta-gray {
    color: #595959;
  }

  .xl\:text-purple-dark {
    color: #45247f;
  }

  .xl\:text-red-dark {
    color: #cd1936;
  }

  .xl\:text-black {
    color: #000;
  }

  .xl\:text-blue {
    color: #42b6da;
  }

  .xl\:text-facebook {
    color: #3b5998;
  }

  .xl\:text-gray {
    color: #e5e5e5;
  }

  .xl\:text-green {
    color: #63c29e;
  }

  .xl\:text-linkedin {
    color: #0077b5;
  }

  .xl\:text-orange {
    color: #ed8123;
  }

  .xl\:text-pink {
    color: #e85e9c;
  }

  .xl\:text-purple {
    color: #7a6cb2;
  }

  .xl\:text-red {
    color: #e31d3c;
  }

  .xl\:text-rss {
    color: #fb9f1c;
  }

  .xl\:text-twitter {
    color: #1da1f2;
  }

  .xl\:text-white {
    color: #fff;
  }

  .xl\:text-inherit {
    color: inherit;
  }

  .xl\:hover\:text-transparent:hover {
    color: transparent;
  }

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

  .xl\:hover\:text-dark-gray:hover {
    color: #3e3e3e;
  }

  .xl\:hover\:text-light-gray:hover {
    color: #f5f5f5;
  }

  .xl\:hover\:text-meta-gray:hover {
    color: #595959;
  }

  .xl\:hover\:text-purple-dark:hover {
    color: #45247f;
  }

  .xl\:hover\:text-red-dark:hover {
    color: #cd1936;
  }

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

  .xl\:hover\:text-blue:hover {
    color: #42b6da;
  }

  .xl\:hover\:text-facebook:hover {
    color: #3b5998;
  }

  .xl\:hover\:text-gray:hover {
    color: #e5e5e5;
  }

  .xl\:hover\:text-green:hover {
    color: #63c29e;
  }

  .xl\:hover\:text-linkedin:hover {
    color: #0077b5;
  }

  .xl\:hover\:text-orange:hover {
    color: #ed8123;
  }

  .xl\:hover\:text-pink:hover {
    color: #e85e9c;
  }

  .xl\:hover\:text-purple:hover {
    color: #7a6cb2;
  }

  .xl\:hover\:text-red:hover {
    color: #e31d3c;
  }

  .xl\:hover\:text-rss:hover {
    color: #fb9f1c;
  }

  .xl\:hover\:text-twitter:hover {
    color: #1da1f2;
  }

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

  .xl\:hover\:text-inherit:hover {
    color: inherit;
  }

  .xl\:focus\:text-transparent:focus {
    color: transparent;
  }

  .xl\:focus\:text-black-50:focus {
    color: rgba(0, 0, 0, .5);
  }

  .xl\:focus\:text-dark-gray:focus {
    color: #3e3e3e;
  }

  .xl\:focus\:text-light-gray:focus {
    color: #f5f5f5;
  }

  .xl\:focus\:text-meta-gray:focus {
    color: #595959;
  }

  .xl\:focus\:text-purple-dark:focus {
    color: #45247f;
  }

  .xl\:focus\:text-red-dark:focus {
    color: #cd1936;
  }

  .xl\:focus\:text-black:focus {
    color: #000;
  }

  .xl\:focus\:text-blue:focus {
    color: #42b6da;
  }

  .xl\:focus\:text-facebook:focus {
    color: #3b5998;
  }

  .xl\:focus\:text-gray:focus {
    color: #e5e5e5;
  }

  .xl\:focus\:text-green:focus {
    color: #63c29e;
  }

  .xl\:focus\:text-linkedin:focus {
    color: #0077b5;
  }

  .xl\:focus\:text-orange:focus {
    color: #ed8123;
  }

  .xl\:focus\:text-pink:focus {
    color: #e85e9c;
  }

  .xl\:focus\:text-purple:focus {
    color: #7a6cb2;
  }

  .xl\:focus\:text-red:focus {
    color: #e31d3c;
  }

  .xl\:focus\:text-rss:focus {
    color: #fb9f1c;
  }

  .xl\:focus\:text-twitter:focus {
    color: #1da1f2;
  }

  .xl\:focus\:text-white:focus {
    color: #fff;
  }

  .xl\:focus\:text-inherit:focus {
    color: inherit;
  }

  .xl\:text-xs {
    font-size: 12px;
  }

  .xl\:text-sm {
    font-size: 14px;
  }

  .xl\:text-md {
    font-size: 16px;
  }

  .xl\:text-lg {
    font-size: 18px;
  }

  .xl\:text-xl {
    font-size: 20px;
  }

  .xl\:text-2xl {
    font-size: 22px;
  }

  .xl\:text-3xl {
    font-size: 24px;
  }

  .xl\:text-4xl {
    font-size: 26px;
  }

  .xl\:text-5xl {
    font-size: 30px;
  }

  .xl\:text-6xl {
    font-size: 36px;
  }

  .xl\:text-7xl {
    font-size: 48px;
  }

  .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\:focus\:italic:focus {
    font-style: italic;
  }

  .xl\:focus\:roman:focus {
    font-style: normal;
  }

  .xl\:focus\:uppercase:focus {
    text-transform: uppercase;
  }

  .xl\:focus\:lowercase:focus {
    text-transform: lowercase;
  }

  .xl\:focus\:capitalize:focus {
    text-transform: capitalize;
  }

  .xl\:focus\:normal-case:focus {
    text-transform: none;
  }

  .xl\:focus\:underline:focus {
    text-decoration: underline;
  }

  .xl\:focus\:line-through:focus {
    text-decoration: line-through;
  }

  .xl\:focus\:no-underline:focus {
    text-decoration: none;
  }

  .xl\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .xl\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .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-1 {
    width: 4px;
  }

  .xl\:w-2 {
    width: 8px;
  }

  .xl\:w-3 {
    width: 12px;
  }

  .xl\:w-4 {
    width: 16px;
  }

  .xl\:w-5 {
    width: 20px;
  }

  .xl\:w-6 {
    width: 24px;
  }

  .xl\:w-8 {
    width: 32px;
  }

  .xl\:w-10 {
    width: 40px;
  }

  .xl\:w-12 {
    width: 48px;
  }

  .xl\:w-14 {
    width: 56px;
  }

  .xl\:w-16 {
    width: 64px;
  }

  .xl\:w-24 {
    width: 96px;
  }

  .xl\:w-32 {
    width: 128px;
  }

  .xl\:w-48 {
    width: 192px;
  }

  .xl\:w-64 {
    width: 256px;
  }

  .xl\:w-auto {
    width: auto;
  }

  .xl\:w-px {
    width: 1px;
  }

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

  .xl\:w-1\/3 {
    width: 33.33333%;
  }

  .xl\:w-2\/3 {
    width: 66.66667%;
  }

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

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

  .xl\:w-1\/5 {
    width: 20%;
  }

  .xl\:w-2\/5 {
    width: 40%;
  }

  .xl\:w-3\/5 {
    width: 60%;
  }

  .xl\:w-4\/5 {
    width: 80%;
  }

  .xl\:w-1\/6 {
    width: 16.66667%;
  }

  .xl\:w-1\/10 {
    width: 10%;
  }

  .xl\:w-5\/6 {
    width: 83.33333%;
  }

  .xl\:w-full {
    width: 100%;
  }

  .xl\:w-screen {
    width: 100vw;
  }

  .xl\:z-0 {
    z-index: 0;
  }

  .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-auto {
    z-index: auto;
  }
}

@media (min-width: 1040px) {
  .2xl\:list-reset {
    list-style: none;
    padding: 0;
  }

  .2xl\:appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .2xl\:bg-fixed {
    background-attachment: fixed;
  }

  .2xl\:bg-local {
    background-attachment: local;
  }

  .2xl\:bg-scroll {
    background-attachment: scroll;
  }

  .2xl\:bg-transparent {
    background-color: transparent;
  }

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

  .2xl\:bg-dark-gray {
    background-color: #3e3e3e;
  }

  .2xl\:bg-light-gray {
    background-color: #f5f5f5;
  }

  .2xl\:bg-meta-gray {
    background-color: #595959;
  }

  .2xl\:bg-purple-dark {
    background-color: #45247f;
  }

  .2xl\:bg-red-dark {
    background-color: #cd1936;
  }

  .2xl\:bg-black {
    background-color: #000;
  }

  .2xl\:bg-blue {
    background-color: #42b6da;
  }

  .2xl\:bg-facebook {
    background-color: #3b5998;
  }

  .2xl\:bg-gray {
    background-color: #e5e5e5;
  }

  .2xl\:bg-green {
    background-color: #63c29e;
  }

  .2xl\:bg-linkedin {
    background-color: #0077b5;
  }

  .2xl\:bg-orange {
    background-color: #ed8123;
  }

  .2xl\:bg-pink {
    background-color: #e85e9c;
  }

  .2xl\:bg-purple {
    background-color: #7a6cb2;
  }

  .2xl\:bg-red {
    background-color: #e31d3c;
  }

  .2xl\:bg-rss {
    background-color: #fb9f1c;
  }

  .2xl\:bg-twitter {
    background-color: #1da1f2;
  }

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

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

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

  .2xl\:hover\:bg-dark-gray:hover {
    background-color: #3e3e3e;
  }

  .2xl\:hover\:bg-light-gray:hover {
    background-color: #f5f5f5;
  }

  .2xl\:hover\:bg-meta-gray:hover {
    background-color: #595959;
  }

  .2xl\:hover\:bg-purple-dark:hover {
    background-color: #45247f;
  }

  .2xl\:hover\:bg-red-dark:hover {
    background-color: #cd1936;
  }

  .2xl\:hover\:bg-black:hover {
    background-color: #000;
  }

  .2xl\:hover\:bg-blue:hover {
    background-color: #42b6da;
  }

  .2xl\:hover\:bg-facebook:hover {
    background-color: #3b5998;
  }

  .2xl\:hover\:bg-gray:hover {
    background-color: #e5e5e5;
  }

  .2xl\:hover\:bg-green:hover {
    background-color: #63c29e;
  }

  .2xl\:hover\:bg-linkedin:hover {
    background-color: #0077b5;
  }

  .2xl\:hover\:bg-orange:hover {
    background-color: #ed8123;
  }

  .2xl\:hover\:bg-pink:hover {
    background-color: #e85e9c;
  }

  .2xl\:hover\:bg-purple:hover {
    background-color: #7a6cb2;
  }

  .2xl\:hover\:bg-red:hover {
    background-color: #e31d3c;
  }

  .2xl\:hover\:bg-rss:hover {
    background-color: #fb9f1c;
  }

  .2xl\:hover\:bg-twitter:hover {
    background-color: #1da1f2;
  }

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

  .2xl\:focus\:bg-transparent:focus {
    background-color: transparent;
  }

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

  .2xl\:focus\:bg-dark-gray:focus {
    background-color: #3e3e3e;
  }

  .2xl\:focus\:bg-light-gray:focus {
    background-color: #f5f5f5;
  }

  .2xl\:focus\:bg-meta-gray:focus {
    background-color: #595959;
  }

  .2xl\:focus\:bg-purple-dark:focus {
    background-color: #45247f;
  }

  .2xl\:focus\:bg-red-dark:focus {
    background-color: #cd1936;
  }

  .2xl\:focus\:bg-black:focus {
    background-color: #000;
  }

  .2xl\:focus\:bg-blue:focus {
    background-color: #42b6da;
  }

  .2xl\:focus\:bg-facebook:focus {
    background-color: #3b5998;
  }

  .2xl\:focus\:bg-gray:focus {
    background-color: #e5e5e5;
  }

  .2xl\:focus\:bg-green:focus {
    background-color: #63c29e;
  }

  .2xl\:focus\:bg-linkedin:focus {
    background-color: #0077b5;
  }

  .2xl\:focus\:bg-orange:focus {
    background-color: #ed8123;
  }

  .2xl\:focus\:bg-pink:focus {
    background-color: #e85e9c;
  }

  .2xl\:focus\:bg-purple:focus {
    background-color: #7a6cb2;
  }

  .2xl\:focus\:bg-red:focus {
    background-color: #e31d3c;
  }

  .2xl\:focus\:bg-rss:focus {
    background-color: #fb9f1c;
  }

  .2xl\:focus\:bg-twitter:focus {
    background-color: #1da1f2;
  }

  .2xl\:focus\:bg-white:focus {
    background-color: #fff;
  }

  .2xl\:bg-bottom {
    background-position: bottom;
  }

  .2xl\:bg-center {
    background-position: center;
  }

  .2xl\:bg-left {
    background-position: left;
  }

  .2xl\:bg-left-bottom {
    background-position: left bottom;
  }

  .2xl\:bg-left-top {
    background-position: left top;
  }

  .2xl\:bg-right {
    background-position: right;
  }

  .2xl\:bg-right-bottom {
    background-position: right bottom;
  }

  .2xl\:bg-right-top {
    background-position: right top;
  }

  .2xl\:bg-top {
    background-position: top;
  }

  .2xl\:bg-repeat {
    background-repeat: repeat;
  }

  .2xl\:bg-no-repeat {
    background-repeat: no-repeat;
  }

  .2xl\:bg-repeat-x {
    background-repeat: repeat-x;
  }

  .2xl\:bg-repeat-y {
    background-repeat: repeat-y;
  }

  .2xl\:bg-auto {
    background-size: auto;
  }

  .2xl\:bg-cover {
    background-size: cover;
  }

  .2xl\:bg-contain {
    background-size: contain;
  }

  .2xl\:border-transparent {
    border-color: transparent;
  }

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

  .2xl\:border-dark-gray {
    border-color: #3e3e3e;
  }

  .2xl\:border-light-gray {
    border-color: #f5f5f5;
  }

  .2xl\:border-meta-gray {
    border-color: #595959;
  }

  .2xl\:border-purple-dark {
    border-color: #45247f;
  }

  .2xl\:border-red-dark {
    border-color: #cd1936;
  }

  .2xl\:border-black {
    border-color: #000;
  }

  .2xl\:border-blue {
    border-color: #42b6da;
  }

  .2xl\:border-facebook {
    border-color: #3b5998;
  }

  .2xl\:border-gray {
    border-color: #e5e5e5;
  }

  .2xl\:border-green {
    border-color: #63c29e;
  }

  .2xl\:border-linkedin {
    border-color: #0077b5;
  }

  .2xl\:border-orange {
    border-color: #ed8123;
  }

  .2xl\:border-pink {
    border-color: #e85e9c;
  }

  .2xl\:border-purple {
    border-color: #7a6cb2;
  }

  .2xl\:border-red {
    border-color: #e31d3c;
  }

  .2xl\:border-rss {
    border-color: #fb9f1c;
  }

  .2xl\:border-twitter {
    border-color: #1da1f2;
  }

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

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

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

  .2xl\:hover\:border-dark-gray:hover {
    border-color: #3e3e3e;
  }

  .2xl\:hover\:border-light-gray:hover {
    border-color: #f5f5f5;
  }

  .2xl\:hover\:border-meta-gray:hover {
    border-color: #595959;
  }

  .2xl\:hover\:border-purple-dark:hover {
    border-color: #45247f;
  }

  .2xl\:hover\:border-red-dark:hover {
    border-color: #cd1936;
  }

  .2xl\:hover\:border-black:hover {
    border-color: #000;
  }

  .2xl\:hover\:border-blue:hover {
    border-color: #42b6da;
  }

  .2xl\:hover\:border-facebook:hover {
    border-color: #3b5998;
  }

  .2xl\:hover\:border-gray:hover {
    border-color: #e5e5e5;
  }

  .2xl\:hover\:border-green:hover {
    border-color: #63c29e;
  }

  .2xl\:hover\:border-linkedin:hover {
    border-color: #0077b5;
  }

  .2xl\:hover\:border-orange:hover {
    border-color: #ed8123;
  }

  .2xl\:hover\:border-pink:hover {
    border-color: #e85e9c;
  }

  .2xl\:hover\:border-purple:hover {
    border-color: #7a6cb2;
  }

  .2xl\:hover\:border-red:hover {
    border-color: #e31d3c;
  }

  .2xl\:hover\:border-rss:hover {
    border-color: #fb9f1c;
  }

  .2xl\:hover\:border-twitter:hover {
    border-color: #1da1f2;
  }

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

  .2xl\:focus\:border-transparent:focus {
    border-color: transparent;
  }

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

  .2xl\:focus\:border-dark-gray:focus {
    border-color: #3e3e3e;
  }

  .2xl\:focus\:border-light-gray:focus {
    border-color: #f5f5f5;
  }

  .2xl\:focus\:border-meta-gray:focus {
    border-color: #595959;
  }

  .2xl\:focus\:border-purple-dark:focus {
    border-color: #45247f;
  }

  .2xl\:focus\:border-red-dark:focus {
    border-color: #cd1936;
  }

  .2xl\:focus\:border-black:focus {
    border-color: #000;
  }

  .2xl\:focus\:border-blue:focus {
    border-color: #42b6da;
  }

  .2xl\:focus\:border-facebook:focus {
    border-color: #3b5998;
  }

  .2xl\:focus\:border-gray:focus {
    border-color: #e5e5e5;
  }

  .2xl\:focus\:border-green:focus {
    border-color: #63c29e;
  }

  .2xl\:focus\:border-linkedin:focus {
    border-color: #0077b5;
  }

  .2xl\:focus\:border-orange:focus {
    border-color: #ed8123;
  }

  .2xl\:focus\:border-pink:focus {
    border-color: #e85e9c;
  }

  .2xl\:focus\:border-purple:focus {
    border-color: #7a6cb2;
  }

  .2xl\:focus\:border-red:focus {
    border-color: #e31d3c;
  }

  .2xl\:focus\:border-rss:focus {
    border-color: #fb9f1c;
  }

  .2xl\:focus\:border-twitter:focus {
    border-color: #1da1f2;
  }

  .2xl\:focus\:border-white:focus {
    border-color: #fff;
  }

  .2xl\:rounded-none {
    border-radius: 0;
  }

  .2xl\:rounded {
    border-radius: 8px;
  }

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

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

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

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

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

  .2xl\:rounded-t {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .2xl\:rounded-r {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .2xl\:rounded-b {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .2xl\:rounded-l {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

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

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

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

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

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

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

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

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

  .2xl\:rounded-tl {
    border-top-left-radius: 8px;
  }

  .2xl\:rounded-tr {
    border-top-right-radius: 8px;
  }

  .2xl\:rounded-br {
    border-bottom-right-radius: 8px;
  }

  .2xl\:rounded-bl {
    border-bottom-left-radius: 8px;
  }

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

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

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

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

  .2xl\:border-solid {
    border-style: solid;
  }

  .2xl\:border-dashed {
    border-style: dashed;
  }

  .2xl\:border-dotted {
    border-style: dotted;
  }

  .2xl\:border-none {
    border-style: none;
  }

  .2xl\:border-0 {
    border-width: 0;
  }

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

  .2xl\:border-4 {
    border-width: 4px;
  }

  .2xl\:border-8 {
    border-width: 8px;
  }

  .2xl\:border {
    border-width: 1px;
  }

  .2xl\:border-t-0 {
    border-top-width: 0;
  }

  .2xl\:border-r-0 {
    border-right-width: 0;
  }

  .2xl\:border-b-0 {
    border-bottom-width: 0;
  }

  .2xl\:border-l-0 {
    border-left-width: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .2xl\:cursor-auto {
    cursor: auto;
  }

  .2xl\:cursor-default {
    cursor: default;
  }

  .2xl\:cursor-pointer {
    cursor: pointer;
  }

  .2xl\:cursor-wait {
    cursor: wait;
  }

  .2xl\:cursor-move {
    cursor: move;
  }

  .2xl\:cursor-not-allowed {
    cursor: not-allowed;
  }

  .2xl\:block {
    display: block;
  }

  .2xl\:inline-block {
    display: inline-block;
  }

  .2xl\:inline {
    display: inline;
  }

  .2xl\:table {
    display: table;
  }

  .2xl\:table-row {
    display: table-row;
  }

  .2xl\:table-cell {
    display: table-cell;
  }

  .2xl\:hidden {
    display: none;
  }

  .2xl\:flex {
    display: flex;
  }

  .2xl\:inline-flex {
    display: inline-flex;
  }

  .2xl\:flex-row {
    flex-direction: row;
  }

  .2xl\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .2xl\:flex-col {
    flex-direction: column;
  }

  .2xl\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .2xl\:flex-wrap {
    flex-wrap: wrap;
  }

  .2xl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .2xl\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .2xl\:items-start {
    align-items: flex-start;
  }

  .2xl\:items-end {
    align-items: flex-end;
  }

  .2xl\:items-center {
    align-items: center;
  }

  .2xl\:items-baseline {
    align-items: baseline;
  }

  .2xl\:items-stretch {
    align-items: stretch;
  }

  .2xl\:self-auto {
    align-self: auto;
  }

  .2xl\:self-start {
    align-self: flex-start;
  }

  .2xl\:self-end {
    align-self: flex-end;
  }

  .2xl\:self-center {
    align-self: center;
  }

  .2xl\:self-stretch {
    align-self: stretch;
  }

  .2xl\:justify-start {
    justify-content: flex-start;
  }

  .2xl\:justify-end {
    justify-content: flex-end;
  }

  .2xl\:justify-center {
    justify-content: center;
  }

  .2xl\:justify-between {
    justify-content: space-between;
  }

  .2xl\:justify-around {
    justify-content: space-around;
  }

  .2xl\:content-center {
    align-content: center;
  }

  .2xl\:content-start {
    align-content: flex-start;
  }

  .2xl\:content-end {
    align-content: flex-end;
  }

  .2xl\:content-between {
    align-content: space-between;
  }

  .2xl\:content-around {
    align-content: space-around;
  }

  .2xl\:flex-1 {
    flex: 1 1 0%;
  }

  .2xl\:flex-auto {
    flex: 1 1 auto;
  }

  .2xl\:flex-initial {
    flex: 0 1 auto;
  }

  .2xl\:flex-none {
    flex: none;
  }

  .2xl\:flex-grow {
    flex-grow: 1;
  }

  .2xl\:flex-shrink {
    flex-shrink: 1;
  }

  .2xl\:flex-no-grow {
    flex-grow: 0;
  }

  .2xl\:flex-no-shrink {
    flex-shrink: 0;
  }

  .2xl\:float-right {
    float: right;
  }

  .2xl\:float-left {
    float: left;
  }

  .2xl\:float-none {
    float: none;
  }

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

  .2xl\:font-futura {
    font-family: Futura, Helvetica Neue, Helvetica, sans-serif;
  }

  .2xl\:font-hairline {
    font-weight: 100;
  }

  .2xl\:font-thin {
    font-weight: 200;
  }

  .2xl\:font-light {
    font-weight: 300;
  }

  .2xl\:font-normal {
    font-weight: 400;
  }

  .2xl\:font-medium {
    font-weight: 500;
  }

  .2xl\:font-semibold {
    font-weight: 600;
  }

  .2xl\:font-bold {
    font-weight: 700;
  }

  .2xl\:font-extrabold {
    font-weight: 800;
  }

  .2xl\:font-black {
    font-weight: 900;
  }

  .2xl\:hover\:font-hairline:hover {
    font-weight: 100;
  }

  .2xl\:hover\:font-thin:hover {
    font-weight: 200;
  }

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

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

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

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

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

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

  .2xl\:hover\:font-black:hover {
    font-weight: 900;
  }

  .2xl\:focus\:font-hairline:focus {
    font-weight: 100;
  }

  .2xl\:focus\:font-thin:focus {
    font-weight: 200;
  }

  .2xl\:focus\:font-light:focus {
    font-weight: 300;
  }

  .2xl\:focus\:font-normal:focus {
    font-weight: 400;
  }

  .2xl\:focus\:font-medium:focus {
    font-weight: 500;
  }

  .2xl\:focus\:font-semibold:focus {
    font-weight: 600;
  }

  .2xl\:focus\:font-bold:focus {
    font-weight: 700;
  }

  .2xl\:focus\:font-extrabold:focus {
    font-weight: 800;
  }

  .2xl\:focus\:font-black:focus {
    font-weight: 900;
  }

  .2xl\:h-0 {
    height: 0;
  }

  .2xl\:h-auto {
    height: auto;
  }

  .2xl\:h-px {
    height: 1px;
  }

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

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

  .2xl\:leading-none {
    line-height: 1;
  }

  .2xl\:leading-tight {
    line-height: 1.25;
  }

  .2xl\:leading-normal {
    line-height: 1.5;
  }

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

  .2xl\:m-0 {
    margin: 0;
  }

  .2xl\:m-1 {
    margin: 4px;
  }

  .2xl\:m-2 {
    margin: 8px;
  }

  .2xl\:m-3 {
    margin: 12px;
  }

  .2xl\:m-4 {
    margin: 16px;
  }

  .2xl\:m-5 {
    margin: 20px;
  }

  .2xl\:m-6 {
    margin: 24px;
  }

  .2xl\:m-8 {
    margin: 32px;
  }

  .2xl\:m-10 {
    margin: 40px;
  }

  .2xl\:m-12 {
    margin: 48px;
  }

  .2xl\:m-16 {
    margin: 64px;
  }

  .2xl\:m-20 {
    margin: 80px;
  }

  .2xl\:m-24 {
    margin: 96px;
  }

  .2xl\:m-32 {
    margin: 128px;
  }

  .2xl\:m-auto {
    margin: auto;
  }

  .2xl\:m-px {
    margin: 1px;
  }

  .2xl\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .2xl\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .2xl\:my-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .2xl\:mx-1 {
    margin-left: 4px;
    margin-right: 4px;
  }

  .2xl\:my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .2xl\:mx-2 {
    margin-left: 8px;
    margin-right: 8px;
  }

  .2xl\:my-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .2xl\:mx-3 {
    margin-left: 12px;
    margin-right: 12px;
  }

  .2xl\:my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .2xl\:mx-4 {
    margin-left: 16px;
    margin-right: 16px;
  }

  .2xl\:my-5 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .2xl\:mx-5 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .2xl\:my-6 {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .2xl\:mx-6 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .2xl\:my-8 {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .2xl\:mx-8 {
    margin-left: 32px;
    margin-right: 32px;
  }

  .2xl\:my-10 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .2xl\:mx-10 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .2xl\:my-12 {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .2xl\:mx-12 {
    margin-left: 48px;
    margin-right: 48px;
  }

  .2xl\:my-16 {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .2xl\:mx-16 {
    margin-left: 64px;
    margin-right: 64px;
  }

  .2xl\:my-20 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .2xl\:mx-20 {
    margin-left: 80px;
    margin-right: 80px;
  }

  .2xl\:my-24 {
    margin-top: 96px;
    margin-bottom: 96px;
  }

  .2xl\:mx-24 {
    margin-left: 96px;
    margin-right: 96px;
  }

  .2xl\:my-32 {
    margin-top: 128px;
    margin-bottom: 128px;
  }

  .2xl\:mx-32 {
    margin-left: 128px;
    margin-right: 128px;
  }

  .2xl\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .2xl\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .2xl\:mt-0 {
    margin-top: 0;
  }

  .2xl\:mr-0 {
    margin-right: 0;
  }

  .2xl\:mb-0 {
    margin-bottom: 0;
  }

  .2xl\:ml-0 {
    margin-left: 0;
  }

  .2xl\:mt-1 {
    margin-top: 4px;
  }

  .2xl\:mr-1 {
    margin-right: 4px;
  }

  .2xl\:mb-1 {
    margin-bottom: 4px;
  }

  .2xl\:ml-1 {
    margin-left: 4px;
  }

  .2xl\:mt-2 {
    margin-top: 8px;
  }

  .2xl\:mr-2 {
    margin-right: 8px;
  }

  .2xl\:mb-2 {
    margin-bottom: 8px;
  }

  .2xl\:ml-2 {
    margin-left: 8px;
  }

  .2xl\:mt-3 {
    margin-top: 12px;
  }

  .2xl\:mr-3 {
    margin-right: 12px;
  }

  .2xl\:mb-3 {
    margin-bottom: 12px;
  }

  .2xl\:ml-3 {
    margin-left: 12px;
  }

  .2xl\:mt-4 {
    margin-top: 16px;
  }

  .2xl\:mr-4 {
    margin-right: 16px;
  }

  .2xl\:mb-4 {
    margin-bottom: 16px;
  }

  .2xl\:ml-4 {
    margin-left: 16px;
  }

  .2xl\:mt-5 {
    margin-top: 20px;
  }

  .2xl\:mr-5 {
    margin-right: 20px;
  }

  .2xl\:mb-5 {
    margin-bottom: 20px;
  }

  .2xl\:ml-5 {
    margin-left: 20px;
  }

  .2xl\:mt-6 {
    margin-top: 24px;
  }

  .2xl\:mr-6 {
    margin-right: 24px;
  }

  .2xl\:mb-6 {
    margin-bottom: 24px;
  }

  .2xl\:ml-6 {
    margin-left: 24px;
  }

  .2xl\:mt-8 {
    margin-top: 32px;
  }

  .2xl\:mr-8 {
    margin-right: 32px;
  }

  .2xl\:mb-8 {
    margin-bottom: 32px;
  }

  .2xl\:ml-8 {
    margin-left: 32px;
  }

  .2xl\:mt-10 {
    margin-top: 40px;
  }

  .2xl\:mr-10 {
    margin-right: 40px;
  }

  .2xl\:mb-10 {
    margin-bottom: 40px;
  }

  .2xl\:ml-10 {
    margin-left: 40px;
  }

  .2xl\:mt-12 {
    margin-top: 48px;
  }

  .2xl\:mr-12 {
    margin-right: 48px;
  }

  .2xl\:mb-12 {
    margin-bottom: 48px;
  }

  .2xl\:ml-12 {
    margin-left: 48px;
  }

  .2xl\:mt-16 {
    margin-top: 64px;
  }

  .2xl\:mr-16 {
    margin-right: 64px;
  }

  .2xl\:mb-16 {
    margin-bottom: 64px;
  }

  .2xl\:ml-16 {
    margin-left: 64px;
  }

  .2xl\:mt-20 {
    margin-top: 80px;
  }

  .2xl\:mr-20 {
    margin-right: 80px;
  }

  .2xl\:mb-20 {
    margin-bottom: 80px;
  }

  .2xl\:ml-20 {
    margin-left: 80px;
  }

  .2xl\:mt-24 {
    margin-top: 96px;
  }

  .2xl\:mr-24 {
    margin-right: 96px;
  }

  .2xl\:mb-24 {
    margin-bottom: 96px;
  }

  .2xl\:ml-24 {
    margin-left: 96px;
  }

  .2xl\:mt-32 {
    margin-top: 128px;
  }

  .2xl\:mr-32 {
    margin-right: 128px;
  }

  .2xl\:mb-32 {
    margin-bottom: 128px;
  }

  .2xl\:ml-32 {
    margin-left: 128px;
  }

  .2xl\:mt-auto {
    margin-top: auto;
  }

  .2xl\:mr-auto {
    margin-right: auto;
  }

  .2xl\:mb-auto {
    margin-bottom: auto;
  }

  .2xl\:ml-auto {
    margin-left: auto;
  }

  .2xl\:mt-px {
    margin-top: 1px;
  }

  .2xl\:mr-px {
    margin-right: 1px;
  }

  .2xl\:mb-px {
    margin-bottom: 1px;
  }

  .2xl\:ml-px {
    margin-left: 1px;
  }

  .2xl\:max-h-0 {
    max-height: 0;
  }

  .2xl\:max-h-100 {
    max-height: 100px;
  }

  .2xl\:max-h-120 {
    max-height: 120px;
  }

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

  .2xl\:max-h-screen {
    max-height: 100vh;
  }

  .2xl\:max-w-xs {
    max-width: 640px;
  }

  .2xl\:max-w-sm {
    max-width: 720px;
  }

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

  .2xl\:min-h-0 {
    min-height: 0;
  }

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

  .2xl\:min-h-screen {
    min-height: 100vh;
  }

  .2xl\:min-w-0 {
    min-width: 0;
  }

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

  .2xl\:-m-1 {
    margin: -4px;
  }

  .2xl\:-m-2 {
    margin: -8px;
  }

  .2xl\:-m-3 {
    margin: -12px;
  }

  .2xl\:-m-4 {
    margin: -16px;
  }

  .2xl\:-m-5 {
    margin: -20px;
  }

  .2xl\:-m-6 {
    margin: -24px;
  }

  .2xl\:-m-8 {
    margin: -32px;
  }

  .2xl\:-m-10 {
    margin: -40px;
  }

  .2xl\:-m-12 {
    margin: -48px;
  }

  .2xl\:-m-16 {
    margin: -64px;
  }

  .2xl\:-m-20 {
    margin: -80px;
  }

  .2xl\:-m-24 {
    margin: -96px;
  }

  .2xl\:-m-32 {
    margin: -128px;
  }

  .2xl\:-m-px {
    margin: -1px;
  }

  .2xl\:-my-1 {
    margin-top: -4px;
    margin-bottom: -4px;
  }

  .2xl\:-mx-1 {
    margin-left: -4px;
    margin-right: -4px;
  }

  .2xl\:-my-2 {
    margin-top: -8px;
    margin-bottom: -8px;
  }

  .2xl\:-mx-2 {
    margin-left: -8px;
    margin-right: -8px;
  }

  .2xl\:-my-3 {
    margin-top: -12px;
    margin-bottom: -12px;
  }

  .2xl\:-mx-3 {
    margin-left: -12px;
    margin-right: -12px;
  }

  .2xl\:-my-4 {
    margin-top: -16px;
    margin-bottom: -16px;
  }

  .2xl\:-mx-4 {
    margin-left: -16px;
    margin-right: -16px;
  }

  .2xl\:-my-5 {
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .2xl\:-mx-5 {
    margin-left: -20px;
    margin-right: -20px;
  }

  .2xl\:-my-6 {
    margin-top: -24px;
    margin-bottom: -24px;
  }

  .2xl\:-mx-6 {
    margin-left: -24px;
    margin-right: -24px;
  }

  .2xl\:-my-8 {
    margin-top: -32px;
    margin-bottom: -32px;
  }

  .2xl\:-mx-8 {
    margin-left: -32px;
    margin-right: -32px;
  }

  .2xl\:-my-10 {
    margin-top: -40px;
    margin-bottom: -40px;
  }

  .2xl\:-mx-10 {
    margin-left: -40px;
    margin-right: -40px;
  }

  .2xl\:-my-12 {
    margin-top: -48px;
    margin-bottom: -48px;
  }

  .2xl\:-mx-12 {
    margin-left: -48px;
    margin-right: -48px;
  }

  .2xl\:-my-16 {
    margin-top: -64px;
    margin-bottom: -64px;
  }

  .2xl\:-mx-16 {
    margin-left: -64px;
    margin-right: -64px;
  }

  .2xl\:-my-20 {
    margin-top: -80px;
    margin-bottom: -80px;
  }

  .2xl\:-mx-20 {
    margin-left: -80px;
    margin-right: -80px;
  }

  .2xl\:-my-24 {
    margin-top: -96px;
    margin-bottom: -96px;
  }

  .2xl\:-mx-24 {
    margin-left: -96px;
    margin-right: -96px;
  }

  .2xl\:-my-32 {
    margin-top: -128px;
    margin-bottom: -128px;
  }

  .2xl\:-mx-32 {
    margin-left: -128px;
    margin-right: -128px;
  }

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

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

  .2xl\:-mt-1 {
    margin-top: -4px;
  }

  .2xl\:-mr-1 {
    margin-right: -4px;
  }

  .2xl\:-mb-1 {
    margin-bottom: -4px;
  }

  .2xl\:-ml-1 {
    margin-left: -4px;
  }

  .2xl\:-mt-2 {
    margin-top: -8px;
  }

  .2xl\:-mr-2 {
    margin-right: -8px;
  }

  .2xl\:-mb-2 {
    margin-bottom: -8px;
  }

  .2xl\:-ml-2 {
    margin-left: -8px;
  }

  .2xl\:-mt-3 {
    margin-top: -12px;
  }

  .2xl\:-mr-3 {
    margin-right: -12px;
  }

  .2xl\:-mb-3 {
    margin-bottom: -12px;
  }

  .2xl\:-ml-3 {
    margin-left: -12px;
  }

  .2xl\:-mt-4 {
    margin-top: -16px;
  }

  .2xl\:-mr-4 {
    margin-right: -16px;
  }

  .2xl\:-mb-4 {
    margin-bottom: -16px;
  }

  .2xl\:-ml-4 {
    margin-left: -16px;
  }

  .2xl\:-mt-5 {
    margin-top: -20px;
  }

  .2xl\:-mr-5 {
    margin-right: -20px;
  }

  .2xl\:-mb-5 {
    margin-bottom: -20px;
  }

  .2xl\:-ml-5 {
    margin-left: -20px;
  }

  .2xl\:-mt-6 {
    margin-top: -24px;
  }

  .2xl\:-mr-6 {
    margin-right: -24px;
  }

  .2xl\:-mb-6 {
    margin-bottom: -24px;
  }

  .2xl\:-ml-6 {
    margin-left: -24px;
  }

  .2xl\:-mt-8 {
    margin-top: -32px;
  }

  .2xl\:-mr-8 {
    margin-right: -32px;
  }

  .2xl\:-mb-8 {
    margin-bottom: -32px;
  }

  .2xl\:-ml-8 {
    margin-left: -32px;
  }

  .2xl\:-mt-10 {
    margin-top: -40px;
  }

  .2xl\:-mr-10 {
    margin-right: -40px;
  }

  .2xl\:-mb-10 {
    margin-bottom: -40px;
  }

  .2xl\:-ml-10 {
    margin-left: -40px;
  }

  .2xl\:-mt-12 {
    margin-top: -48px;
  }

  .2xl\:-mr-12 {
    margin-right: -48px;
  }

  .2xl\:-mb-12 {
    margin-bottom: -48px;
  }

  .2xl\:-ml-12 {
    margin-left: -48px;
  }

  .2xl\:-mt-16 {
    margin-top: -64px;
  }

  .2xl\:-mr-16 {
    margin-right: -64px;
  }

  .2xl\:-mb-16 {
    margin-bottom: -64px;
  }

  .2xl\:-ml-16 {
    margin-left: -64px;
  }

  .2xl\:-mt-20 {
    margin-top: -80px;
  }

  .2xl\:-mr-20 {
    margin-right: -80px;
  }

  .2xl\:-mb-20 {
    margin-bottom: -80px;
  }

  .2xl\:-ml-20 {
    margin-left: -80px;
  }

  .2xl\:-mt-24 {
    margin-top: -96px;
  }

  .2xl\:-mr-24 {
    margin-right: -96px;
  }

  .2xl\:-mb-24 {
    margin-bottom: -96px;
  }

  .2xl\:-ml-24 {
    margin-left: -96px;
  }

  .2xl\:-mt-32 {
    margin-top: -128px;
  }

  .2xl\:-mr-32 {
    margin-right: -128px;
  }

  .2xl\:-mb-32 {
    margin-bottom: -128px;
  }

  .2xl\:-ml-32 {
    margin-left: -128px;
  }

  .2xl\:-mt-px {
    margin-top: -1px;
  }

  .2xl\:-mr-px {
    margin-right: -1px;
  }

  .2xl\:-mb-px {
    margin-bottom: -1px;
  }

  .2xl\:-ml-px {
    margin-left: -1px;
  }

  .2xl\:opacity-0 {
    opacity: 0;
  }

  .2xl\:opacity-25 {
    opacity: .25;
  }

  .2xl\:opacity-50 {
    opacity: .5;
  }

  .2xl\:opacity-75 {
    opacity: .75;
  }

  .2xl\:opacity-100 {
    opacity: 1;
  }

  .2xl\:overflow-auto {
    overflow: auto;
  }

  .2xl\:overflow-hidden {
    overflow: hidden;
  }

  .2xl\:overflow-visible {
    overflow: visible;
  }

  .2xl\:overflow-scroll {
    overflow: scroll;
  }

  .2xl\:overflow-x-auto {
    overflow-x: auto;
  }

  .2xl\:overflow-y-auto {
    overflow-y: auto;
  }

  .2xl\:overflow-x-hidden {
    overflow-x: hidden;
  }

  .2xl\:overflow-y-hidden {
    overflow-y: hidden;
  }

  .2xl\:overflow-x-visible {
    overflow-x: visible;
  }

  .2xl\:overflow-y-visible {
    overflow-y: visible;
  }

  .2xl\:overflow-x-scroll {
    overflow-x: scroll;
  }

  .2xl\:overflow-y-scroll {
    overflow-y: scroll;
  }

  .2xl\:scrolling-touch {
    -webkit-overflow-scrolling: touch;
  }

  .2xl\:scrolling-auto {
    -webkit-overflow-scrolling: auto;
  }

  .2xl\:p-0 {
    padding: 0;
  }

  .2xl\:p-1 {
    padding: 4px;
  }

  .2xl\:p-2 {
    padding: 8px;
  }

  .2xl\:p-3 {
    padding: 12px;
  }

  .2xl\:p-4 {
    padding: 16px;
  }

  .2xl\:p-5 {
    padding: 20px;
  }

  .2xl\:p-6 {
    padding: 24px;
  }

  .2xl\:p-8 {
    padding: 32px;
  }

  .2xl\:p-10 {
    padding: 40px;
  }

  .2xl\:p-12 {
    padding: 48px;
  }

  .2xl\:p-16 {
    padding: 64px;
  }

  .2xl\:p-20 {
    padding: 80px;
  }

  .2xl\:p-24 {
    padding: 96px;
  }

  .2xl\:p-32 {
    padding: 128px;
  }

  .2xl\:p-px {
    padding: 1px;
  }

  .2xl\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .2xl\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .2xl\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .2xl\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .2xl\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .2xl\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .2xl\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .2xl\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .2xl\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .2xl\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .2xl\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .2xl\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .2xl\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .2xl\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .2xl\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .2xl\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .2xl\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .2xl\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .2xl\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .2xl\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .2xl\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .2xl\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .2xl\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .2xl\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .2xl\:py-24 {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .2xl\:px-24 {
    padding-left: 96px;
    padding-right: 96px;
  }

  .2xl\:py-32 {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .2xl\:px-32 {
    padding-left: 128px;
    padding-right: 128px;
  }

  .2xl\:py-px {
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .2xl\:px-px {
    padding-left: 1px;
    padding-right: 1px;
  }

  .2xl\:pt-0 {
    padding-top: 0;
  }

  .2xl\:pr-0 {
    padding-right: 0;
  }

  .2xl\:pb-0 {
    padding-bottom: 0;
  }

  .2xl\:pl-0 {
    padding-left: 0;
  }

  .2xl\:pt-1 {
    padding-top: 4px;
  }

  .2xl\:pr-1 {
    padding-right: 4px;
  }

  .2xl\:pb-1 {
    padding-bottom: 4px;
  }

  .2xl\:pl-1 {
    padding-left: 4px;
  }

  .2xl\:pt-2 {
    padding-top: 8px;
  }

  .2xl\:pr-2 {
    padding-right: 8px;
  }

  .2xl\:pb-2 {
    padding-bottom: 8px;
  }

  .2xl\:pl-2 {
    padding-left: 8px;
  }

  .2xl\:pt-3 {
    padding-top: 12px;
  }

  .2xl\:pr-3 {
    padding-right: 12px;
  }

  .2xl\:pb-3 {
    padding-bottom: 12px;
  }

  .2xl\:pl-3 {
    padding-left: 12px;
  }

  .2xl\:pt-4 {
    padding-top: 16px;
  }

  .2xl\:pr-4 {
    padding-right: 16px;
  }

  .2xl\:pb-4 {
    padding-bottom: 16px;
  }

  .2xl\:pl-4 {
    padding-left: 16px;
  }

  .2xl\:pt-5 {
    padding-top: 20px;
  }

  .2xl\:pr-5 {
    padding-right: 20px;
  }

  .2xl\:pb-5 {
    padding-bottom: 20px;
  }

  .2xl\:pl-5 {
    padding-left: 20px;
  }

  .2xl\:pt-6 {
    padding-top: 24px;
  }

  .2xl\:pr-6 {
    padding-right: 24px;
  }

  .2xl\:pb-6 {
    padding-bottom: 24px;
  }

  .2xl\:pl-6 {
    padding-left: 24px;
  }

  .2xl\:pt-8 {
    padding-top: 32px;
  }

  .2xl\:pr-8 {
    padding-right: 32px;
  }

  .2xl\:pb-8 {
    padding-bottom: 32px;
  }

  .2xl\:pl-8 {
    padding-left: 32px;
  }

  .2xl\:pt-10 {
    padding-top: 40px;
  }

  .2xl\:pr-10 {
    padding-right: 40px;
  }

  .2xl\:pb-10 {
    padding-bottom: 40px;
  }

  .2xl\:pl-10 {
    padding-left: 40px;
  }

  .2xl\:pt-12 {
    padding-top: 48px;
  }

  .2xl\:pr-12 {
    padding-right: 48px;
  }

  .2xl\:pb-12 {
    padding-bottom: 48px;
  }

  .2xl\:pl-12 {
    padding-left: 48px;
  }

  .2xl\:pt-16 {
    padding-top: 64px;
  }

  .2xl\:pr-16 {
    padding-right: 64px;
  }

  .2xl\:pb-16 {
    padding-bottom: 64px;
  }

  .2xl\:pl-16 {
    padding-left: 64px;
  }

  .2xl\:pt-20 {
    padding-top: 80px;
  }

  .2xl\:pr-20 {
    padding-right: 80px;
  }

  .2xl\:pb-20 {
    padding-bottom: 80px;
  }

  .2xl\:pl-20 {
    padding-left: 80px;
  }

  .2xl\:pt-24 {
    padding-top: 96px;
  }

  .2xl\:pr-24 {
    padding-right: 96px;
  }

  .2xl\:pb-24 {
    padding-bottom: 96px;
  }

  .2xl\:pl-24 {
    padding-left: 96px;
  }

  .2xl\:pt-32 {
    padding-top: 128px;
  }

  .2xl\:pr-32 {
    padding-right: 128px;
  }

  .2xl\:pb-32 {
    padding-bottom: 128px;
  }

  .2xl\:pl-32 {
    padding-left: 128px;
  }

  .2xl\:pt-px {
    padding-top: 1px;
  }

  .2xl\:pr-px {
    padding-right: 1px;
  }

  .2xl\:pb-px {
    padding-bottom: 1px;
  }

  .2xl\:pl-px {
    padding-left: 1px;
  }

  .2xl\:pointer-events-none {
    pointer-events: none;
  }

  .2xl\:pointer-events-auto {
    pointer-events: auto;
  }

  .2xl\:static {
    position: static;
  }

  .2xl\:fixed {
    position: fixed;
  }

  .2xl\:absolute {
    position: absolute;
  }

  .2xl\:relative {
    position: relative;
  }

  .2xl\:sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .2xl\:pin-none {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .2xl\:pin {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .2xl\:pin-y {
    top: 0;
    bottom: 0;
  }

  .2xl\:pin-x {
    right: 0;
    left: 0;
  }

  .2xl\:pin-t {
    top: 0;
  }

  .2xl\:pin-r {
    right: 0;
  }

  .2xl\:pin-b {
    bottom: 0;
  }

  .2xl\:pin-l {
    left: 0;
  }

  .2xl\:resize-none {
    resize: none;
  }

  .2xl\:resize-y {
    resize: vertical;
  }

  .2xl\:resize-x {
    resize: horizontal;
  }

  .2xl\:resize {
    resize: both;
  }

  .2xl\:shadow-outline-transparent {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .2xl\:shadow-outline-black-50 {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .2xl\:shadow-outline-dark-gray {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .2xl\:shadow-outline-light-gray {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .2xl\:shadow-outline-meta-gray {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .2xl\:shadow-outline-purple-dark {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .2xl\:shadow-outline-red-dark {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .2xl\:shadow-outline-black {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .2xl\:shadow-outline-blue {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .2xl\:shadow-outline-facebook {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .2xl\:shadow-outline-gray {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .2xl\:shadow-outline-green {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .2xl\:shadow-outline-linkedin {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .2xl\:shadow-outline-orange {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .2xl\:shadow-outline-pink {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .2xl\:shadow-outline-purple {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .2xl\:shadow-outline-red {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .2xl\:shadow-outline-rss {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .2xl\:shadow-outline-twitter {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .2xl\:shadow-outline-white {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .2xl\:shadow-darken {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .2xl\:hover\:shadow-outline-transparent:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .2xl\:hover\:shadow-outline-black-50:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .2xl\:hover\:shadow-outline-dark-gray:hover {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .2xl\:hover\:shadow-outline-light-gray:hover {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .2xl\:hover\:shadow-outline-meta-gray:hover {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .2xl\:hover\:shadow-outline-purple-dark:hover {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .2xl\:hover\:shadow-outline-red-dark:hover {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .2xl\:hover\:shadow-outline-black:hover {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .2xl\:hover\:shadow-outline-blue:hover {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .2xl\:hover\:shadow-outline-facebook:hover {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .2xl\:hover\:shadow-outline-gray:hover {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .2xl\:hover\:shadow-outline-green:hover {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .2xl\:hover\:shadow-outline-linkedin:hover {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .2xl\:hover\:shadow-outline-orange:hover {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .2xl\:hover\:shadow-outline-pink:hover {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .2xl\:hover\:shadow-outline-purple:hover {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .2xl\:hover\:shadow-outline-red:hover {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .2xl\:hover\:shadow-outline-rss:hover {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .2xl\:hover\:shadow-outline-twitter:hover {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .2xl\:hover\:shadow-outline-white:hover {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .2xl\:hover\:shadow-darken:hover {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .2xl\:focus\:shadow-outline-transparent:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .2xl\:focus\:shadow-outline-black-50:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .2xl\:focus\:shadow-outline-dark-gray:focus {
    box-shadow: 0 0 0 3px rgba(62, 62, 62, .5);
  }

  .2xl\:focus\:shadow-outline-light-gray:focus {
    box-shadow: 0 0 0 3px rgba(245, 245, 245, .5);
  }

  .2xl\:focus\:shadow-outline-meta-gray:focus {
    box-shadow: 0 0 0 3px rgba(89, 89, 89, .5);
  }

  .2xl\:focus\:shadow-outline-purple-dark:focus {
    box-shadow: 0 0 0 3px rgba(69, 36, 127, .5);
  }

  .2xl\:focus\:shadow-outline-red-dark:focus {
    box-shadow: 0 0 0 3px rgba(205, 25, 54, .5);
  }

  .2xl\:focus\:shadow-outline-black:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .5);
  }

  .2xl\:focus\:shadow-outline-blue:focus {
    box-shadow: 0 0 0 3px rgba(66, 182, 218, .5);
  }

  .2xl\:focus\:shadow-outline-facebook:focus {
    box-shadow: 0 0 0 3px rgba(59, 89, 152, .5);
  }

  .2xl\:focus\:shadow-outline-gray:focus {
    box-shadow: 0 0 0 3px rgba(229, 229, 229, .5);
  }

  .2xl\:focus\:shadow-outline-green:focus {
    box-shadow: 0 0 0 3px rgba(99, 194, 158, .5);
  }

  .2xl\:focus\:shadow-outline-linkedin:focus {
    box-shadow: 0 0 0 3px rgba(0, 119, 181, .5);
  }

  .2xl\:focus\:shadow-outline-orange:focus {
    box-shadow: 0 0 0 3px rgba(237, 129, 35, .5);
  }

  .2xl\:focus\:shadow-outline-pink:focus {
    box-shadow: 0 0 0 3px rgba(232, 94, 156, .5);
  }

  .2xl\:focus\:shadow-outline-purple:focus {
    box-shadow: 0 0 0 3px rgba(122, 108, 178, .5);
  }

  .2xl\:focus\:shadow-outline-red:focus {
    box-shadow: 0 0 0 3px rgba(227, 29, 60, .5);
  }

  .2xl\:focus\:shadow-outline-rss:focus {
    box-shadow: 0 0 0 3px rgba(251, 159, 28, .5);
  }

  .2xl\:focus\:shadow-outline-twitter:focus {
    box-shadow: 0 0 0 3px rgba(29, 161, 242, .5);
  }

  .2xl\:focus\:shadow-outline-white:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
  }

  .2xl\:focus\:shadow-darken:focus {
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .25) inset;
  }

  .2xl\:table-auto {
    table-layout: auto;
  }

  .2xl\:table-fixed {
    table-layout: fixed;
  }

  .2xl\:text-left {
    text-align: left;
  }

  .2xl\:text-center {
    text-align: center;
  }

  .2xl\:text-right {
    text-align: right;
  }

  .2xl\:text-justify {
    text-align: justify;
  }

  .2xl\:text-transparent {
    color: transparent;
  }

  .2xl\:text-black-50 {
    color: rgba(0, 0, 0, .5);
  }

  .2xl\:text-dark-gray {
    color: #3e3e3e;
  }

  .2xl\:text-light-gray {
    color: #f5f5f5;
  }

  .2xl\:text-meta-gray {
    color: #595959;
  }

  .2xl\:text-purple-dark {
    color: #45247f;
  }

  .2xl\:text-red-dark {
    color: #cd1936;
  }

  .2xl\:text-black {
    color: #000;
  }

  .2xl\:text-blue {
    color: #42b6da;
  }

  .2xl\:text-facebook {
    color: #3b5998;
  }

  .2xl\:text-gray {
    color: #e5e5e5;
  }

  .2xl\:text-green {
    color: #63c29e;
  }

  .2xl\:text-linkedin {
    color: #0077b5;
  }

  .2xl\:text-orange {
    color: #ed8123;
  }

  .2xl\:text-pink {
    color: #e85e9c;
  }

  .2xl\:text-purple {
    color: #7a6cb2;
  }

  .2xl\:text-red {
    color: #e31d3c;
  }

  .2xl\:text-rss {
    color: #fb9f1c;
  }

  .2xl\:text-twitter {
    color: #1da1f2;
  }

  .2xl\:text-white {
    color: #fff;
  }

  .2xl\:text-inherit {
    color: inherit;
  }

  .2xl\:hover\:text-transparent:hover {
    color: transparent;
  }

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

  .2xl\:hover\:text-dark-gray:hover {
    color: #3e3e3e;
  }

  .2xl\:hover\:text-light-gray:hover {
    color: #f5f5f5;
  }

  .2xl\:hover\:text-meta-gray:hover {
    color: #595959;
  }

  .2xl\:hover\:text-purple-dark:hover {
    color: #45247f;
  }

  .2xl\:hover\:text-red-dark:hover {
    color: #cd1936;
  }

  .2xl\:hover\:text-black:hover {
    color: #000;
  }

  .2xl\:hover\:text-blue:hover {
    color: #42b6da;
  }

  .2xl\:hover\:text-facebook:hover {
    color: #3b5998;
  }

  .2xl\:hover\:text-gray:hover {
    color: #e5e5e5;
  }

  .2xl\:hover\:text-green:hover {
    color: #63c29e;
  }

  .2xl\:hover\:text-linkedin:hover {
    color: #0077b5;
  }

  .2xl\:hover\:text-orange:hover {
    color: #ed8123;
  }

  .2xl\:hover\:text-pink:hover {
    color: #e85e9c;
  }

  .2xl\:hover\:text-purple:hover {
    color: #7a6cb2;
  }

  .2xl\:hover\:text-red:hover {
    color: #e31d3c;
  }

  .2xl\:hover\:text-rss:hover {
    color: #fb9f1c;
  }

  .2xl\:hover\:text-twitter:hover {
    color: #1da1f2;
  }

  .2xl\:hover\:text-white:hover {
    color: #fff;
  }

  .2xl\:hover\:text-inherit:hover {
    color: inherit;
  }

  .2xl\:focus\:text-transparent:focus {
    color: transparent;
  }

  .2xl\:focus\:text-black-50:focus {
    color: rgba(0, 0, 0, .5);
  }

  .2xl\:focus\:text-dark-gray:focus {
    color: #3e3e3e;
  }

  .2xl\:focus\:text-light-gray:focus {
    color: #f5f5f5;
  }

  .2xl\:focus\:text-meta-gray:focus {
    color: #595959;
  }

  .2xl\:focus\:text-purple-dark:focus {
    color: #45247f;
  }

  .2xl\:focus\:text-red-dark:focus {
    color: #cd1936;
  }

  .2xl\:focus\:text-black:focus {
    color: #000;
  }

  .2xl\:focus\:text-blue:focus {
    color: #42b6da;
  }

  .2xl\:focus\:text-facebook:focus {
    color: #3b5998;
  }

  .2xl\:focus\:text-gray:focus {
    color: #e5e5e5;
  }

  .2xl\:focus\:text-green:focus {
    color: #63c29e;
  }

  .2xl\:focus\:text-linkedin:focus {
    color: #0077b5;
  }

  .2xl\:focus\:text-orange:focus {
    color: #ed8123;
  }

  .2xl\:focus\:text-pink:focus {
    color: #e85e9c;
  }

  .2xl\:focus\:text-purple:focus {
    color: #7a6cb2;
  }

  .2xl\:focus\:text-red:focus {
    color: #e31d3c;
  }

  .2xl\:focus\:text-rss:focus {
    color: #fb9f1c;
  }

  .2xl\:focus\:text-twitter:focus {
    color: #1da1f2;
  }

  .2xl\:focus\:text-white:focus {
    color: #fff;
  }

  .2xl\:focus\:text-inherit:focus {
    color: inherit;
  }

  .2xl\:text-xs {
    font-size: 12px;
  }

  .2xl\:text-sm {
    font-size: 14px;
  }

  .2xl\:text-md {
    font-size: 16px;
  }

  .2xl\:text-lg {
    font-size: 18px;
  }

  .2xl\:text-xl {
    font-size: 20px;
  }

  .2xl\:text-2xl {
    font-size: 22px;
  }

  .2xl\:text-3xl {
    font-size: 24px;
  }

  .2xl\:text-4xl {
    font-size: 26px;
  }

  .2xl\:text-5xl {
    font-size: 30px;
  }

  .2xl\:text-6xl {
    font-size: 36px;
  }

  .2xl\:text-7xl {
    font-size: 48px;
  }

  .2xl\:italic {
    font-style: italic;
  }

  .2xl\:roman {
    font-style: normal;
  }

  .2xl\:uppercase {
    text-transform: uppercase;
  }

  .2xl\:lowercase {
    text-transform: lowercase;
  }

  .2xl\:capitalize {
    text-transform: capitalize;
  }

  .2xl\:normal-case {
    text-transform: none;
  }

  .2xl\:underline {
    text-decoration: underline;
  }

  .2xl\:line-through {
    text-decoration: line-through;
  }

  .2xl\:no-underline {
    text-decoration: none;
  }

  .2xl\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .2xl\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .2xl\:hover\:italic:hover {
    font-style: italic;
  }

  .2xl\:hover\:roman:hover {
    font-style: normal;
  }

  .2xl\:hover\:uppercase:hover {
    text-transform: uppercase;
  }

  .2xl\:hover\:lowercase:hover {
    text-transform: lowercase;
  }

  .2xl\:hover\:capitalize:hover {
    text-transform: capitalize;
  }

  .2xl\:hover\:normal-case:hover {
    text-transform: none;
  }

  .2xl\:hover\:underline:hover {
    text-decoration: underline;
  }

  .2xl\:hover\:line-through:hover {
    text-decoration: line-through;
  }

  .2xl\:hover\:no-underline:hover {
    text-decoration: none;
  }

  .2xl\:hover\:antialiased:hover {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .2xl\:hover\:subpixel-antialiased:hover {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .2xl\:focus\:italic:focus {
    font-style: italic;
  }

  .2xl\:focus\:roman:focus {
    font-style: normal;
  }

  .2xl\:focus\:uppercase:focus {
    text-transform: uppercase;
  }

  .2xl\:focus\:lowercase:focus {
    text-transform: lowercase;
  }

  .2xl\:focus\:capitalize:focus {
    text-transform: capitalize;
  }

  .2xl\:focus\:normal-case:focus {
    text-transform: none;
  }

  .2xl\:focus\:underline:focus {
    text-decoration: underline;
  }

  .2xl\:focus\:line-through:focus {
    text-decoration: line-through;
  }

  .2xl\:focus\:no-underline:focus {
    text-decoration: none;
  }

  .2xl\:focus\:antialiased:focus {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .2xl\:focus\:subpixel-antialiased:focus {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .2xl\:select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .2xl\:select-text {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .2xl\:align-baseline {
    vertical-align: baseline;
  }

  .2xl\:align-top {
    vertical-align: top;
  }

  .2xl\:align-middle {
    vertical-align: middle;
  }

  .2xl\:align-bottom {
    vertical-align: bottom;
  }

  .2xl\:align-text-top {
    vertical-align: text-top;
  }

  .2xl\:align-text-bottom {
    vertical-align: text-bottom;
  }

  .2xl\:visible {
    visibility: visible;
  }

  .2xl\:invisible {
    visibility: hidden;
  }

  .2xl\:whitespace-normal {
    white-space: normal;
  }

  .2xl\:whitespace-no-wrap {
    white-space: nowrap;
  }

  .2xl\:whitespace-pre {
    white-space: pre;
  }

  .2xl\:whitespace-pre-line {
    white-space: pre-line;
  }

  .2xl\:whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .2xl\:break-words {
    word-wrap: break-word;
  }

  .2xl\:break-normal {
    word-wrap: normal;
  }

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

  .2xl\:w-1 {
    width: 4px;
  }

  .2xl\:w-2 {
    width: 8px;
  }

  .2xl\:w-3 {
    width: 12px;
  }

  .2xl\:w-4 {
    width: 16px;
  }

  .2xl\:w-5 {
    width: 20px;
  }

  .2xl\:w-6 {
    width: 24px;
  }

  .2xl\:w-8 {
    width: 32px;
  }

  .2xl\:w-10 {
    width: 40px;
  }

  .2xl\:w-12 {
    width: 48px;
  }

  .2xl\:w-14 {
    width: 56px;
  }

  .2xl\:w-16 {
    width: 64px;
  }

  .2xl\:w-24 {
    width: 96px;
  }

  .2xl\:w-32 {
    width: 128px;
  }

  .2xl\:w-48 {
    width: 192px;
  }

  .2xl\:w-64 {
    width: 256px;
  }

  .2xl\:w-auto {
    width: auto;
  }

  .2xl\:w-px {
    width: 1px;
  }

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

  .2xl\:w-1\/3 {
    width: 33.33333%;
  }

  .2xl\:w-2\/3 {
    width: 66.66667%;
  }

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

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

  .2xl\:w-1\/5 {
    width: 20%;
  }

  .2xl\:w-2\/5 {
    width: 40%;
  }

  .2xl\:w-3\/5 {
    width: 60%;
  }

  .2xl\:w-4\/5 {
    width: 80%;
  }

  .2xl\:w-1\/6 {
    width: 16.66667%;
  }

  .2xl\:w-1\/10 {
    width: 10%;
  }

  .2xl\:w-5\/6 {
    width: 83.33333%;
  }

  .2xl\:w-full {
    width: 100%;
  }

  .2xl\:w-screen {
    width: 100vw;
  }

  .2xl\:z-0 {
    z-index: 0;
  }

  .2xl\:z-10 {
    z-index: 10;
  }

  .2xl\:z-20 {
    z-index: 20;
  }

  .2xl\:z-30 {
    z-index: 30;
  }

  .2xl\:z-40 {
    z-index: 40;
  }

  .2xl\:z-50 {
    z-index: 50;
  }

  .2xl\:z-auto {
    z-index: auto;
  }
}
