﻿.container {
    width: 100%;
}

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

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

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

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

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

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

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

.bg-primary {
    background-color: #f76b25;
}

.bg-secondary {
    background-color: #808080;
}

.bg-default {
    background-color: #f2f2f2;
}

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

.bg-blackish {
    background-color: #22292f;
}

.bg-grey-darker {
    background-color: #606f7b;
}

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

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

.bg-grey-lighter {
    background-color: #d4d4d4;
}

.bg-grey-lightest {
    background-color: #f2f2f2;
}

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

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

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

.hover\:bg-primary:hover {
    background-color: #f76b25;
}

.hover\:bg-secondary:hover {
    background-color: #808080;
}

.hover\:bg-default:hover {
    background-color: #f2f2f2;
}

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

.hover\:bg-blackish:hover {
    background-color: #22292f;
}

.hover\:bg-grey-darker:hover {
    background-color: #606f7b;
}

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

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

.hover\:bg-grey-lighter:hover {
    background-color: #d4d4d4;
}

.hover\:bg-grey-lightest:hover {
    background-color: #f2f2f2;
}

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

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

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

.focus\:bg-primary:focus {
    background-color: #f76b25;
}

.focus\:bg-secondary:focus {
    background-color: #808080;
}

.focus\:bg-default:focus {
    background-color: #f2f2f2;
}

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

.focus\:bg-blackish:focus {
    background-color: #22292f;
}

.focus\:bg-grey-darker:focus {
    background-color: #606f7b;
}

.focus\:bg-grey:focus {
    background-color: #4d4d4d;
}

.focus\:bg-grey-light:focus {
    background-color: #808080;
}

.focus\:bg-grey-lighter:focus {
    background-color: #d4d4d4;
}

.focus\:bg-grey-lightest:focus {
    background-color: #f2f2f2;
}

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

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

.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-primary {
    border-color: #f76b25;
}

.border-secondary {
    border-color: #808080;
}

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

.border-blackish {
    border-color: #22292f;
}

.border-grey-darker {
    border-color: #606f7b;
}

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

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

.border-grey-lighter {
    border-color: #d4d4d4;
}

.border-grey-lightest {
    border-color: #f2f2f2;
}

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

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

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

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

.rounded {
    border-radius: 0rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border {
    border-width: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.inline-important {
    display: inline !important;
}

.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-sans {
    font-family: Proxima Nova, Helvetica Neue, sans-serif;
}

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

.font-mono {
    font-family: Menlo, Consolas, Courier New, monospace;
}

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

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

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

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

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

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

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

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-24 {
    height: 6rem;
}

.h-32 {
    height: 8rem;
}

.h-48 {
    height: 12rem;
}

.h-64 {
    height: 16rem;
}

.h-auto {
    height: auto;
}

.h-px {
    height: 1px;
}

.h-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: .25rem;
}

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

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

.m-4 {
    margin: 1rem;
}

.m-5 {
    margin: 1.25rem;
}

.m-6 {
    margin: 1.5rem;
}

.m-8 {
    margin: 2rem;
}

.m-10 {
    margin: 2.5rem;
}

.m-12 {
    margin: 3rem;
}

.m-16 {
    margin: 4rem;
}

.m-auto {
    margin: auto;
}

.m-px {
    margin: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.max-w-2xl {
    max-width: 70rem;
}

.max-w-3xl {
    max-width: 80rem;
}

.max-w-4xl {
    max-width: 90rem;
}

.max-w-5xl {
    max-width: 100rem;
}

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

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

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

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

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

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

.-m-6 {
    margin: -1.5rem;
}

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

.-m-10 {
    margin: -2.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.object-contain {
    -o-object-fit: contain;
    object-fit: contain;
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.object-fill {
    -o-object-fit: fill;
    object-fit: fill;
}

.object-none {
    -o-object-fit: none;
    object-fit: none;
}

.object-scale-down {
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.object-bottom {
    -o-object-position: bottom;
    object-position: bottom;
}

.object-center {
    -o-object-position: center;
    object-position: center;
}

.object-left {
    -o-object-position: left;
    object-position: left;
}

.object-left-bottom {
    -o-object-position: left bottom;
    object-position: left bottom;
}

.object-left-top {
    -o-object-position: left top;
    object-position: left top;
}

.object-right {
    -o-object-position: right;
    object-position: right;
}

.object-right-bottom {
    -o-object-position: right bottom;
    object-position: right bottom;
}

.object-right-top {
    -o-object-position: right top;
    object-position: right top;
}

.object-top {
    -o-object-position: top;
    object-position: top;
}

.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: .25rem;
}

.p-2 {
    padding: .5rem;
}

.p-3 {
    padding: .75rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

.p-12 {
    padding: 3rem;
}

.p-16 {
    padding: 4rem;
}

.p-px {
    padding: 1px;
}

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

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

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem;
}

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

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

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

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-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: .25rem;
}

.pr-1 {
    padding-right: .25rem;
}

.pb-1 {
    padding-bottom: .25rem;
}

.pl-1 {
    padding-left: .25rem;
}

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

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

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

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

.pt-3 {
    padding-top: .75rem;
}

.pr-3 {
    padding-right: .75rem;
}

.pb-3 {
    padding-bottom: .75rem;
}

.pl-3 {
    padding-left: .75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-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 {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}

.shadow-md {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .08);
}

.shadow-lg {
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .11), 0 5px 15px 0 rgba(0, 0, 0, .08);
}

.shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
}

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

.shadow-none {
    box-shadow: none;
}

.hover\:shadow:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .08);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .11), 0 5px 15px 0 rgba(0, 0, 0, .08);
}

.hover\:shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06);
}

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

.hover\:shadow-none:hover {
    box-shadow: none;
}

.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-primary {
    color: #F46F22;
}

.text-secondary {
    color: #808080;
}

.text-default {
    color: #f2f2f2;
}

.text-black {
    color: #000;
}

.text-blackish {
    color: #22292f;
}

.text-grey-darker {
    color: #606f7b;
}

.text-grey {
    color: #4d4d4d;
}

.text-grey-light {
    color: #808080;
}

.text-grey-lighter {
    color: #d4d4d4;
}

.text-grey-lightest {
    color: #f2f2f2;
}

.text-white {
    color: #fff;
}

.text-red {
    color: #ed1c23;
}

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

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

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

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

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

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

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

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

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

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

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

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select-text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

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

.align-top {
    vertical-align: top;
}

.align-middle {
    vertical-align: middle;
}

.align-bottom {
    vertical-align: bottom;
}

.align-text-top {
    vertical-align: text-top;
}

.align-text-bottom {
    vertical-align: text-bottom;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-24 {
    width: 6rem;
}

.w-32 {
    width: 8rem;
}

.w-48 {
    width: 12rem;
}

.w-64 {
    width: 16rem;
}

.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-5\/6 {
    width: 83.33333%;
}

.w-full {
    width: 100%;
}

.w-screen {
    width: 100vw;
}

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

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

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

.z-max {
    z-index: 999999;
}

@media (min-width: 576px) {
    .sm\:list-reset {
        list-style: none;
        padding: 0;
    }

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

    .sm\:bg-primary {
        background-color: #f76b25;
    }

    .sm\:bg-secondary {
        background-color: #808080;
    }

    .sm\:bg-default {
        background-color: #f2f2f2;
    }

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

    .sm\:bg-blackish {
        background-color: #22292f;
    }

    .sm\:bg-grey-darker {
        background-color: #606f7b;
    }

    .sm\:bg-grey {
        background-color: #4d4d4d;
    }

    .sm\:bg-grey-light {
        background-color: #808080;
    }

    .sm\:bg-grey-lighter {
        background-color: #d4d4d4;
    }

    .sm\:bg-grey-lightest {
        background-color: #f2f2f2;
    }

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

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

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

    .sm\:hover\:bg-primary:hover {
        background-color: #f76b25;
    }

    .sm\:hover\:bg-secondary:hover {
        background-color: #808080;
    }

    .sm\:hover\:bg-default:hover {
        background-color: #f2f2f2;
    }

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

    .sm\:hover\:bg-blackish:hover {
        background-color: #22292f;
    }

    .sm\:hover\:bg-grey-darker:hover {
        background-color: #606f7b;
    }

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

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

    .sm\:hover\:bg-grey-lighter:hover {
        background-color: #d4d4d4;
    }

    .sm\:hover\:bg-grey-lightest:hover {
        background-color: #f2f2f2;
    }

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

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

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

    .sm\:focus\:bg-primary:focus {
        background-color: #f76b25;
    }

    .sm\:focus\:bg-secondary:focus {
        background-color: #808080;
    }

    .sm\:focus\:bg-default:focus {
        background-color: #f2f2f2;
    }

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

    .sm\:focus\:bg-blackish:focus {
        background-color: #22292f;
    }

    .sm\:focus\:bg-grey-darker:focus {
        background-color: #606f7b;
    }

    .sm\:focus\:bg-grey:focus {
        background-color: #4d4d4d;
    }

    .sm\:focus\:bg-grey-light:focus {
        background-color: #808080;
    }

    .sm\:focus\:bg-grey-lighter:focus {
        background-color: #d4d4d4;
    }

    .sm\:focus\:bg-grey-lightest:focus {
        background-color: #f2f2f2;
    }

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

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

    .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\:h-1 {
        height: .25rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .sm\:h-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: .25rem;
    }

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

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

    .sm\:m-4 {
        margin: 1rem;
    }

    .sm\:m-5 {
        margin: 1.25rem;
    }

    .sm\:m-6 {
        margin: 1.5rem;
    }

    .sm\:m-8 {
        margin: 2rem;
    }

    .sm\:m-10 {
        margin: 2.5rem;
    }

    .sm\:m-12 {
        margin: 3rem;
    }

    .sm\:m-16 {
        margin: 4rem;
    }

    .sm\:m-auto {
        margin: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .sm\:mt-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-full {
        max-height: 100%;
    }

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

    .sm\:max-w-xs {
        max-width: 20rem;
    }

    .sm\:max-w-sm {
        max-width: 30rem;
    }

    .sm\:max-w-md {
        max-width: 40rem;
    }

    .sm\:max-w-lg {
        max-width: 50rem;
    }

    .sm\:max-w-xl {
        max-width: 60rem;
    }

    .sm\:max-w-2xl {
        max-width: 70rem;
    }

    .sm\:max-w-3xl {
        max-width: 80rem;
    }

    .sm\:max-w-4xl {
        max-width: 90rem;
    }

    .sm\:max-w-5xl {
        max-width: 100rem;
    }

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

    .sm\:-m-1 {
        margin: -0.25rem;
    }

    .sm\:-m-2 {
        margin: -0.5rem;
    }

    .sm\:-m-3 {
        margin: -0.75rem;
    }

    .sm\:-m-4 {
        margin: -1rem;
    }

    .sm\:-m-5 {
        margin: -1.25rem;
    }

    .sm\:-m-6 {
        margin: -1.5rem;
    }

    .sm\:-m-8 {
        margin: -2rem;
    }

    .sm\:-m-10 {
        margin: -2.5rem;
    }

    .sm\:-m-12 {
        margin: -3rem;
    }

    .sm\:-m-16 {
        margin: -4rem;
    }

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

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

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

    .sm\:-my-1 {
        margin-top: -0.25rem;
        margin-bottom: -0.25rem;
    }

    .sm\:-mx-1 {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .sm\:-my-2 {
        margin-top: -0.5rem;
        margin-bottom: -0.5rem;
    }

    .sm\:-mx-2 {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .sm\:-my-3 {
        margin-top: -0.75rem;
        margin-bottom: -0.75rem;
    }

    .sm\:-mx-3 {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .sm\:-mt-1 {
        margin-top: -0.25rem;
    }

    .sm\:-mr-1 {
        margin-right: -0.25rem;
    }

    .sm\:-mb-1 {
        margin-bottom: -0.25rem;
    }

    .sm\:-ml-1 {
        margin-left: -0.25rem;
    }

    .sm\:-mt-2 {
        margin-top: -0.5rem;
    }

    .sm\:-mr-2 {
        margin-right: -0.5rem;
    }

    .sm\:-mb-2 {
        margin-bottom: -0.5rem;
    }

    .sm\:-ml-2 {
        margin-left: -0.5rem;
    }

    .sm\:-mt-3 {
        margin-top: -0.75rem;
    }

    .sm\:-mr-3 {
        margin-right: -0.75rem;
    }

    .sm\:-mb-3 {
        margin-bottom: -0.75rem;
    }

    .sm\:-ml-3 {
        margin-left: -0.75rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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: .25rem;
    }

    .sm\:p-2 {
        padding: .5rem;
    }

    .sm\:p-3 {
        padding: .75rem;
    }

    .sm\:p-4 {
        padding: 1rem;
    }

    .sm\:p-5 {
        padding: 1.25rem;
    }

    .sm\:p-6 {
        padding: 1.5rem;
    }

    .sm\:p-8 {
        padding: 2rem;
    }

    .sm\:p-10 {
        padding: 2.5rem;
    }

    .sm\:p-12 {
        padding: 3rem;
    }

    .sm\:p-16 {
        padding: 4rem;
    }

    .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: .25rem;
        padding-bottom: .25rem;
    }

    .sm\:px-1 {
        padding-left: .25rem;
        padding-right: .25rem;
    }

    .sm\:py-2 {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

    .sm\:px-2 {
        padding-left: .5rem;
        padding-right: .5rem;
    }

    .sm\:py-3 {
        padding-top: .75rem;
        padding-bottom: .75rem;
    }

    .sm\:px-3 {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .sm\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

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

    .sm\:py-5 {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .sm\:px-5 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .sm\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

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

    .sm\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .sm\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .sm\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

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

    .sm\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

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

    .sm\:py-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: .25rem;
    }

    .sm\:pr-1 {
        padding-right: .25rem;
    }

    .sm\:pb-1 {
        padding-bottom: .25rem;
    }

    .sm\:pl-1 {
        padding-left: .25rem;
    }

    .sm\:pt-2 {
        padding-top: .5rem;
    }

    .sm\:pr-2 {
        padding-right: .5rem;
    }

    .sm\:pb-2 {
        padding-bottom: .5rem;
    }

    .sm\:pl-2 {
        padding-left: .5rem;
    }

    .sm\:pt-3 {
        padding-top: .75rem;
    }

    .sm\:pr-3 {
        padding-right: .75rem;
    }

    .sm\:pb-3 {
        padding-bottom: .75rem;
    }

    .sm\:pl-3 {
        padding-left: .75rem;
    }

    .sm\:pt-4 {
        padding-top: 1rem;
    }

    .sm\:pr-4 {
        padding-right: 1rem;
    }

    .sm\:pb-4 {
        padding-bottom: 1rem;
    }

    .sm\:pl-4 {
        padding-left: 1rem;
    }

    .sm\:pt-5 {
        padding-top: 1.25rem;
    }

    .sm\:pr-5 {
        padding-right: 1.25rem;
    }

    .sm\:pb-5 {
        padding-bottom: 1.25rem;
    }

    .sm\:pl-5 {
        padding-left: 1.25rem;
    }

    .sm\:pt-6 {
        padding-top: 1.5rem;
    }

    .sm\:pr-6 {
        padding-right: 1.5rem;
    }

    .sm\:pb-6 {
        padding-bottom: 1.5rem;
    }

    .sm\:pl-6 {
        padding-left: 1.5rem;
    }

    .sm\:pt-8 {
        padding-top: 2rem;
    }

    .sm\:pr-8 {
        padding-right: 2rem;
    }

    .sm\:pb-8 {
        padding-bottom: 2rem;
    }

    .sm\:pl-8 {
        padding-left: 2rem;
    }

    .sm\:pt-10 {
        padding-top: 2.5rem;
    }

    .sm\:pr-10 {
        padding-right: 2.5rem;
    }

    .sm\:pb-10 {
        padding-bottom: 2.5rem;
    }

    .sm\:pl-10 {
        padding-left: 2.5rem;
    }

    .sm\:pt-12 {
        padding-top: 3rem;
    }

    .sm\:pr-12 {
        padding-right: 3rem;
    }

    .sm\:pb-12 {
        padding-bottom: 3rem;
    }

    .sm\:pl-12 {
        padding-left: 3rem;
    }

    .sm\:pt-16 {
        padding-top: 4rem;
    }

    .sm\:pr-16 {
        padding-right: 4rem;
    }

    .sm\:pb-16 {
        padding-bottom: 4rem;
    }

    .sm\:pl-16 {
        padding-left: 4rem;
    }

    .sm\:pt-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\: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-primary {
        color: #f76b25;
    }

    .sm\:text-secondary {
        color: #808080;
    }

    .sm\:text-default {
        color: #f2f2f2;
    }

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

    .sm\:text-blackish {
        color: #22292f;
    }

    .sm\:text-grey-darker {
        color: #606f7b;
    }

    .sm\:text-grey {
        color: #4d4d4d;
    }

    .sm\:text-grey-light {
        color: #808080;
    }

    .sm\:text-grey-lighter {
        color: #d4d4d4;
    }

    .sm\:text-grey-lightest {
        color: #f2f2f2;
    }

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

    .sm\:text-red {
        color: #ed1c23;
    }

    .sm\:text-xs {
        font-size: .75rem;
    }

    .sm\:text-sm {
        font-size: .875rem;
    }

    .sm\:text-base {
        font-size: .9375rem;
    }

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

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

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

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

    .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\:tracking-tight {
        letter-spacing: -0.05em;
    }

    .sm\:tracking-normal {
        letter-spacing: 0;
    }

    .sm\:tracking-wide {
        letter-spacing: .05em;
    }

    .sm\:select-none {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .sm\:select-text {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }

    .sm\: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: .25rem;
    }

    .sm\:w-2 {
        width: .5rem;
    }

    .sm\:w-3 {
        width: .75rem;
    }

    .sm\:w-4 {
        width: 1rem;
    }

    .sm\:w-5 {
        width: 1.25rem;
    }

    .sm\:w-6 {
        width: 1.5rem;
    }

    .sm\:w-8 {
        width: 2rem;
    }

    .sm\:w-10 {
        width: 2.5rem;
    }

    .sm\:w-12 {
        width: 3rem;
    }

    .sm\:w-16 {
        width: 4rem;
    }

    .sm\:w-24 {
        width: 6rem;
    }

    .sm\:w-32 {
        width: 8rem;
    }

    .sm\:w-48 {
        width: 12rem;
    }

    .sm\:w-64 {
        width: 16rem;
    }

    .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-5\/6 {
        width: 83.33333%;
    }

    .sm\:w-full {
        width: 100%;
    }

    .sm\:w-screen {
        width: 100vw;
    }
}

@media (min-width: 992px) {
    .lg\:list-reset {
        list-style: none;
        padding: 0;
    }

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

    .lg\:bg-primary {
        background-color: #f76b25;
    }

    .lg\:bg-secondary {
        background-color: #808080;
    }

    .lg\:bg-default {
        background-color: #f2f2f2;
    }

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

    .lg\:bg-blackish {
        background-color: #22292f;
    }

    .lg\:bg-grey-darker {
        background-color: #606f7b;
    }

    .lg\:bg-grey {
        background-color: #4d4d4d;
    }

    .lg\:bg-grey-light {
        background-color: #808080;
    }

    .lg\:bg-grey-lighter {
        background-color: #d4d4d4;
    }

    .lg\:bg-grey-lightest {
        background-color: #f2f2f2;
    }

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

    .lg\:bg-red {
        background-color: #ed1c23;
    }

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

    .lg\:hover\:bg-primary:hover {
        background-color: #f76b25;
    }

    .lg\:hover\:bg-secondary:hover {
        background-color: #808080;
    }

    .lg\:hover\:bg-default:hover {
        background-color: #f2f2f2;
    }

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

    .lg\:hover\:bg-blackish:hover {
        background-color: #22292f;
    }

    .lg\:hover\:bg-grey-darker:hover {
        background-color: #606f7b;
    }

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

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

    .lg\:hover\:bg-grey-lighter:hover {
        background-color: #d4d4d4;
    }

    .lg\:hover\:bg-grey-lightest:hover {
        background-color: #f2f2f2;
    }

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

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

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

    .lg\:focus\:bg-primary:focus {
        background-color: #f76b25;
    }

    .lg\:focus\:bg-secondary:focus {
        background-color: #808080;
    }

    .lg\:focus\:bg-default:focus {
        background-color: #f2f2f2;
    }

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

    .lg\:focus\:bg-blackish:focus {
        background-color: #22292f;
    }

    .lg\:focus\:bg-grey-darker:focus {
        background-color: #606f7b;
    }

    .lg\:focus\:bg-grey:focus {
        background-color: #4d4d4d;
    }

    .lg\:focus\:bg-grey-light:focus {
        background-color: #808080;
    }

    .lg\:focus\:bg-grey-lighter:focus {
        background-color: #d4d4d4;
    }

    .lg\:focus\:bg-grey-lightest:focus {
        background-color: #f2f2f2;
    }

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

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

    .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\:h-1 {
        height: .25rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .lg\:h-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: .25rem;
    }

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

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

    .lg\:m-4 {
        margin: 1rem;
    }

    .lg\:m-5 {
        margin: 1.25rem;
    }

    .lg\:m-6 {
        margin: 1.5rem;
    }

    .lg\:m-8 {
        margin: 2rem;
    }

    .lg\:m-10 {
        margin: 2.5rem;
    }

    .lg\:m-12 {
        margin: 3rem;
    }

    .lg\:m-16 {
        margin: 4rem;
    }

    .lg\:m-auto {
        margin: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .lg\:mt-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-full {
        max-height: 100%;
    }

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

    .lg\:max-w-xs {
        max-width: 20rem;
    }

    .lg\:max-w-sm {
        max-width: 30rem;
    }

    .lg\:max-w-md {
        max-width: 40rem;
    }

    .lg\:max-w-lg {
        max-width: 50rem;
    }

    .lg\:max-w-xl {
        max-width: 60rem;
    }

    .lg\:max-w-2xl {
        max-width: 70rem;
    }

    .lg\:max-w-3xl {
        max-width: 80rem;
    }

    .lg\:max-w-4xl {
        max-width: 90rem;
    }

    .lg\:max-w-5xl {
        max-width: 100rem;
    }

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

    .lg\:-m-1 {
        margin: -0.25rem;
    }

    .lg\:-m-2 {
        margin: -0.5rem;
    }

    .lg\:-m-3 {
        margin: -0.75rem;
    }

    .lg\:-m-4 {
        margin: -1rem;
    }

    .lg\:-m-5 {
        margin: -1.25rem;
    }

    .lg\:-m-6 {
        margin: -1.5rem;
    }

    .lg\:-m-8 {
        margin: -2rem;
    }

    .lg\:-m-10 {
        margin: -2.5rem;
    }

    .lg\:-m-12 {
        margin: -3rem;
    }

    .lg\:-m-16 {
        margin: -4rem;
    }

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

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

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

    .lg\:-my-1 {
        margin-top: -0.25rem;
        margin-bottom: -0.25rem;
    }

    .lg\:-mx-1 {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .lg\:-my-2 {
        margin-top: -0.5rem;
        margin-bottom: -0.5rem;
    }

    .lg\:-mx-2 {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .lg\:-my-3 {
        margin-top: -0.75rem;
        margin-bottom: -0.75rem;
    }

    .lg\:-mx-3 {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .lg\:-mt-1 {
        margin-top: -0.25rem;
    }

    .lg\:-mr-1 {
        margin-right: -0.25rem;
    }

    .lg\:-mb-1 {
        margin-bottom: -0.25rem;
    }

    .lg\:-ml-1 {
        margin-left: -0.25rem;
    }

    .lg\:-mt-2 {
        margin-top: -0.5rem;
    }

    .lg\:-mr-2 {
        margin-right: -0.5rem;
    }

    .lg\:-mb-2 {
        margin-bottom: -0.5rem;
    }

    .lg\:-ml-2 {
        margin-left: -0.5rem;
    }

    .lg\:-mt-3 {
        margin-top: -0.75rem;
    }

    .lg\:-mr-3 {
        margin-right: -0.75rem;
    }

    .lg\:-mb-3 {
        margin-bottom: -0.75rem;
    }

    .lg\:-ml-3 {
        margin-left: -0.75rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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: .25rem;
    }

    .lg\:p-2 {
        padding: .5rem;
    }

    .lg\:p-3 {
        padding: .75rem;
    }

    .lg\:p-4 {
        padding: 1rem;
    }

    .lg\:p-5 {
        padding: 1.25rem;
    }

    .lg\:p-6 {
        padding: 1.5rem;
    }

    .lg\:p-8 {
        padding: 2rem;
    }

    .lg\:p-10 {
        padding: 2.5rem;
    }

    .lg\:p-12 {
        padding: 3rem;
    }

    .lg\:p-16 {
        padding: 4rem;
    }

    .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: .25rem;
        padding-bottom: .25rem;
    }

    .lg\:px-1 {
        padding-left: .25rem;
        padding-right: .25rem;
    }

    .lg\:py-2 {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

    .lg\:px-2 {
        padding-left: .5rem;
        padding-right: .5rem;
    }

    .lg\:py-3 {
        padding-top: .75rem;
        padding-bottom: .75rem;
    }

    .lg\:px-3 {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .lg\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

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

    .lg\:py-5 {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .lg\:px-5 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .lg\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .lg\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .lg\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

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

    .lg\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .lg\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .lg\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

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

    .lg\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

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

    .lg\:py-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: .25rem;
    }

    .lg\:pr-1 {
        padding-right: .25rem;
    }

    .lg\:pb-1 {
        padding-bottom: .25rem;
    }

    .lg\:pl-1 {
        padding-left: .25rem;
    }

    .lg\:pt-2 {
        padding-top: .5rem;
    }

    .lg\:pr-2 {
        padding-right: .5rem;
    }

    .lg\:pb-2 {
        padding-bottom: .5rem;
    }

    .lg\:pl-2 {
        padding-left: .5rem;
    }

    .lg\:pt-3 {
        padding-top: .75rem;
    }

    .lg\:pr-3 {
        padding-right: .75rem;
    }

    .lg\:pb-3 {
        padding-bottom: .75rem;
    }

    .lg\:pl-3 {
        padding-left: .75rem;
    }

    .lg\:pt-4 {
        padding-top: 1rem;
    }

    .lg\:pr-4 {
        padding-right: 1rem;
    }

    .lg\:pb-4 {
        padding-bottom: 1rem;
    }

    .lg\:pl-4 {
        padding-left: 1rem;
    }

    .lg\:pt-5 {
        padding-top: 1.25rem;
    }

    .lg\:pr-5 {
        padding-right: 1.25rem;
    }

    .lg\:pb-5 {
        padding-bottom: 1.25rem;
    }

    .lg\:pl-5 {
        padding-left: 1.25rem;
    }

    .lg\:pt-6 {
        padding-top: 1.5rem;
    }

    .lg\:pr-6 {
        padding-right: 1.5rem;
    }

    .lg\:pb-6 {
        padding-bottom: 1.5rem;
    }

    .lg\:pl-6 {
        padding-left: 1.5rem;
    }

    .lg\:pt-8 {
        padding-top: 2rem;
    }

    .lg\:pr-8 {
        padding-right: 2rem;
    }

    .lg\:pb-8 {
        padding-bottom: 2rem;
    }

    .lg\:pl-8 {
        padding-left: 2rem;
    }

    .lg\:pt-10 {
        padding-top: 2.5rem;
    }

    .lg\:pr-10 {
        padding-right: 2.5rem;
    }

    .lg\:pb-10 {
        padding-bottom: 2.5rem;
    }

    .lg\:pl-10 {
        padding-left: 2.5rem;
    }

    .lg\:pt-12 {
        padding-top: 3rem;
    }

    .lg\:pr-12 {
        padding-right: 3rem;
    }

    .lg\:pb-12 {
        padding-bottom: 3rem;
    }

    .lg\:pl-12 {
        padding-left: 3rem;
    }

    .lg\:pt-16 {
        padding-top: 4rem;
    }

    .lg\:pr-16 {
        padding-right: 4rem;
    }

    .lg\:pb-16 {
        padding-bottom: 4rem;
    }

    .lg\:pl-16 {
        padding-left: 4rem;
    }

    .lg\:pt-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\: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-primary {
        color: #f76b25;
    }

    .lg\:text-secondary {
        color: #808080;
    }

    .lg\:text-default {
        color: #f2f2f2;
    }

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

    .lg\:text-blackish {
        color: #22292f;
    }

    .lg\:text-grey-darker {
        color: #606f7b;
    }

    .lg\:text-grey {
        color: #4d4d4d;
    }

    .lg\:text-grey-light {
        color: #808080;
    }

    .lg\:text-grey-lighter {
        color: #d4d4d4;
    }

    .lg\:text-grey-lightest {
        color: #f2f2f2;
    }

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

    .lg\:text-red {
        color: #ed1c23;
    }

    .lg\:text-xs {
        font-size: .75rem;
    }

    .lg\:text-sm {
        font-size: .875rem;
    }

    .lg\:text-base {
        font-size: .9375rem;
    }

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

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

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

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

    .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\:tracking-tight {
        letter-spacing: -0.05em;
    }

    .lg\:tracking-normal {
        letter-spacing: 0;
    }

    .lg\:tracking-wide {
        letter-spacing: .05em;
    }

    .lg\:select-none {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .lg\:select-text {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }

    .lg\: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: .25rem;
    }

    .lg\:w-2 {
        width: .5rem;
    }

    .lg\:w-3 {
        width: .75rem;
    }

    .lg\:w-4 {
        width: 1rem;
    }

    .lg\:w-5 {
        width: 1.25rem;
    }

    .lg\:w-6 {
        width: 1.5rem;
    }

    .lg\:w-8 {
        width: 2rem;
    }

    .lg\:w-10 {
        width: 2.5rem;
    }

    .lg\:w-12 {
        width: 3rem;
    }

    .lg\:w-16 {
        width: 4rem;
    }

    .lg\:w-24 {
        width: 6rem;
    }

    .lg\:w-32 {
        width: 8rem;
    }

    .lg\:w-48 {
        width: 12rem;
    }

    .lg\:w-64 {
        width: 16rem;
    }

    .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-5\/6 {
        width: 83.33333%;
    }

    .lg\:w-full {
        width: 100%;
    }

    .lg\:w-screen {
        width: 100vw;
    }
}

.rounded-4 {
    border-radius: 4px;
}
