/**
 * 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`, you should import this line from it's own file:
 *
 * @import "./tailwind-preflight.css";
 *
 * See: https://github.com/tailwindcss/tailwindcss/issues/53#issuecomment-341413622
 */

/*NOTE: 'preflight' IS RENAMED TO 'base'*/

/*@tailwind base;*/

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

.container {
  width: 100%
}

[dir=ltr] .container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem
}

[dir=rtl] .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem
}

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

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

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

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

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

/**
 * This injects all of Tailwind's utility classes, generated based on your
 * config file.
 *
 * If using `postcss-import`, you should import this line from it's own file:
 *
 * @import "./tailwind-utilities.css";
 *
 * See: https://github.com/tailwindcss/tailwindcss/issues/53#issuecomment-341413622
 */

.space-x-8 > :not(template) ~ :not(template) {
  --space-x-reverse: 0 !important
}

[dir=ltr] .space-x-8 > :not(template) ~ :not(template) {
  margin-right: calc(2rem * var(--space-x-reverse)) !important;
  margin-left: calc(2rem * calc(1 - var(--space-x-reverse))) !important
}

[dir=rtl] .space-x-8 > :not(template) ~ :not(template) {
  margin-left: calc(2rem * var(--space-x-reverse)) !important;
  margin-right: calc(2rem * calc(1 - var(--space-x-reverse))) !important
}

.bg-white {
  --bg-opacity: 1 !important
}

[dir] .bg-white {
  background-color: #ffffff !important;
  background-color: rgba(255, 255, 255, var(--bg-opacity)) !important
}

.bg-bgGrey {
  --bg-opacity: 1 !important
}

[dir] .bg-bgGrey {
  background-color: #f6f6f6 !important;
  background-color: rgba(246, 246, 246, var(--bg-opacity)) !important
}

.bg-primary {
  --bg-opacity: 1 !important
}

[dir] .bg-primary {
  background-color: #64bc50 !important;
  background-color: rgba(100, 188, 80, var(--bg-opacity)) !important
}

.bg-danger {
  --bg-opacity: 1 !important
}

[dir] .bg-danger {
  background-color: #EA5455 !important;
  background-color: rgba(234, 84, 85, var(--bg-opacity)) !important
}

.hover\:bg-primary:hover {
  --bg-opacity: 1 !important
}

[dir] .hover\:bg-primary:hover {
  background-color: #64bc50 !important;
  background-color: rgba(100, 188, 80, var(--bg-opacity)) !important
}

.border-collapse {
  border-collapse: collapse !important
}

.border-white {
  --border-opacity: 1 !important
}

[dir] .border-white {
  border-color: #ffffff !important;
  border-color: rgba(255, 255, 255, var(--border-opacity)) !important
}

.border-grey {
  --border-opacity: 1 !important
}

[dir] .border-grey {
  border-color: #b8c2cc !important;
  border-color: rgba(184, 194, 204, var(--border-opacity)) !important
}

.border-grey-light {
  --border-opacity: 1 !important
}

[dir] .border-grey-light {
  border-color: #dae1e7 !important;
  border-color: rgba(218, 225, 231, var(--border-opacity)) !important
}

.border-bGrey {
  --border-opacity: 1 !important
}

[dir] .border-bGrey {
  border-color: #e1e1e1 !important;
  border-color: rgba(225, 225, 225, var(--border-opacity)) !important
}

.border-bgGrey {
  --border-opacity: 1 !important
}

[dir] .border-bgGrey {
  border-color: #f6f6f6 !important;
  border-color: rgba(246, 246, 246, var(--border-opacity)) !important
}

.border-primary {
  --border-opacity: 1 !important
}

[dir] .border-primary {
  border-color: #64bc50 !important;
  border-color: rgba(100, 188, 80, var(--border-opacity)) !important
}

.border-danger {
  --border-opacity: 1 !important
}

[dir] .border-danger {
  border-color: #EA5455 !important;
  border-color: rgba(234, 84, 85, var(--border-opacity)) !important
}

.border-darkLightGrey {
  --border-opacity: 1 !important
}

[dir] .border-darkLightGrey {
  border-color: #82868b !important;
  border-color: rgba(130, 134, 139, var(--border-opacity)) !important
}

[dir] .rounded-none {
  border-radius: 0 !important
}

[dir] .rounded {
  border-radius: .25rem !important
}

[dir] .rounded-lg {
  border-radius: .5rem !important
}

[dir] .rounded-full {
  border-radius: 9999px !important
}

[dir=ltr] .rounded-t-lg {
  border-top-left-radius: .5rem !important;
  border-top-right-radius: .5rem !important
}

[dir=rtl] .rounded-t-lg {
  border-top-right-radius: .5rem !important;
  border-top-left-radius: .5rem !important
}

[dir=ltr] .rounded-b-lg {
  border-bottom-right-radius: .5rem !important;
  border-bottom-left-radius: .5rem !important
}

[dir=rtl] .rounded-b-lg {
  border-bottom-left-radius: .5rem !important;
  border-bottom-right-radius: .5rem !important
}

[dir] .border-solid {
  border-style: solid !important
}

[dir] .border-dashed {
  border-style: dashed !important
}

[dir] .border-none {
  border-style: none !important
}

[dir] .border-0 {
  border-width: 0 !important
}

[dir] .border-2 {
  border-width: 2px !important
}

[dir] .border {
  border-width: 1px !important
}

[dir] .border-t-0 {
  border-top-width: 0 !important
}

[dir=ltr] .border-r-0 {
  border-right-width: 0 !important
}

[dir=rtl] .border-r-0 {
  border-left-width: 0 !important
}

[dir] .border-b-0 {
  border-bottom-width: 0 !important
}

[dir=ltr] .border-l-0 {
  border-left-width: 0 !important
}

[dir=rtl] .border-l-0 {
  border-right-width: 0 !important
}

[dir] .border-b-2 {
  border-bottom-width: 2px !important
}

[dir] .border-t {
  border-top-width: 1px !important
}

[dir=ltr] .border-r {
  border-right-width: 1px !important
}

[dir=rtl] .border-r {
  border-left-width: 1px !important
}

[dir] .border-b {
  border-bottom-width: 1px !important
}

[dir=ltr] .border-l {
  border-left-width: 1px !important
}

[dir=rtl] .border-l {
  border-right-width: 1px !important
}

[dir] .cursor-default {
  cursor: default !important
}

[dir] .cursor-pointer {
  cursor: pointer !important
}

[dir] .cursor-move {
  cursor: move !important
}

.block {
  display: block !important
}

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

.inline {
  display: inline !important
}

.flex {
  display: flex !important
}

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

.table {
  display: table !important
}

.table-cell {
  display: table-cell !important
}

.grid {
  display: grid !important
}

.contents {
  display: contents !important
}

.hidden {
  display: none !important
}

.flex-row {
  flex-direction: row !important
}

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

.flex-col {
  flex-direction: column !important
}

.flex-col-reverse {
  flex-direction: column-reverse !important
}

.flex-wrap {
  flex-wrap: wrap !important
}

.items-start {
  align-items: flex-start !important
}

.items-end {
  align-items: flex-end !important
}

.items-center {
  align-items: center !important
}

.items-baseline {
  align-items: baseline !important
}

.items-stretch {
  align-items: stretch !important
}

.self-start {
  align-self: flex-start !important
}

.self-center {
  align-self: center !important
}

.self-stretch {
  align-self: stretch !important
}

.justify-items-stretch {
  justify-items: stretch !important
}

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

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

.justify-center {
  justify-content: center !important
}

.justify-between {
  justify-content: space-between !important
}

.justify-evenly {
  justify-content: space-evenly !important
}

.flex-1 {
  flex: 1 1 0% !important
}

.flex-auto {
  flex: 1 1 auto !important
}

.flex-none {
  flex: none !important
}

.flex-grow {
  flex-grow: 1 !important
}

.flex-shrink-0 {
  flex-shrink: 0 !important
}

.flex-shrink {
  flex-shrink: 1 !important
}

.order-1 {
  order: 1 !important
}

.order-2 {
  order: 2 !important
}

.order-3 {
  order: 3 !important
}

.order-4 {
  order: 4 !important
}

.order-5 {
  order: 5 !important
}

[dir=ltr] .float-right {
  float: right !important
}

[dir=rtl] .float-right {
  float: left !important
}

.clearfix:after {
  content: "" !important;
  display: table !important
}

[dir] .clearfix:after {
  clear: both !important
}

.font-open {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important
}

.font-medium {
  font-weight: 500 !important
}

.font-semibold {
  font-weight: 600 !important
}

.font-bold {
  font-weight: 700 !important
}

.h-2 {
  height: 0.5rem !important
}

.h-3 {
  height: 0.75rem !important
}

.h-4 {
  height: 1rem !important
}

.h-5 {
  height: 1.25rem !important
}

.h-6 {
  height: 1.5rem !important
}

.h-7 {
  height: 1.75rem !important
}

.h-8 {
  height: 2rem !important
}

.h-12 {
  height: 3rem !important
}

.h-14 {
  height: 3.5rem !important
}

.h-16 {
  height: 4rem !important
}

.h-20 {
  height: 5rem !important
}

.h-24 {
  height: 6rem !important
}

.h-auto {
  height: auto !important
}

.h-full {
  height: 100% !important
}

.h-screen {
  height: 100vh !important
}

.text-xs {
  font-size: .75rem !important
}

.text-sm {
  font-size: .875rem !important
}

.text-base {
  font-size: 1rem !important
}

.text-lg {
  font-size: 1.125rem !important
}

.text-xl {
  font-size: 1.25rem !important
}

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

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

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

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

.leading-none {
  line-height: 1 !important
}

.leading-tight {
  line-height: 1.25 !important
}

.leading-normal {
  line-height: 1.5 !important
}

.leading-loose {
  line-height: 2 !important
}

[dir] .m-0 {
  margin: 0 !important
}

[dir] .m-1 {
  margin: 0.25rem !important
}

[dir] .m-2 {
  margin: 0.5rem !important
}

[dir] .m-4 {
  margin: 1rem !important
}

[dir] .m-6 {
  margin: 1.5rem !important
}

[dir] .m-8 {
  margin: 2rem !important
}

[dir] .m-auto {
  margin: auto !important
}

[dir=ltr] .mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important
}

[dir=rtl] .mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important
}

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

[dir=ltr] .mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important
}

[dir=rtl] .mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important
}

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

[dir=ltr] .mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important
}

[dir=rtl] .mx-3 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important
}

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

[dir=ltr] .mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important
}

[dir=rtl] .mx-4 {
  margin-right: 1rem !important;
  margin-left: 1rem !important
}

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

[dir=ltr] .mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important
}

[dir=rtl] .mx-5 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important
}

[dir] .my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important
}

[dir=ltr] .mx-auto {
  margin-left: auto !important;
  margin-right: auto !important
}

[dir=rtl] .mx-auto {
  margin-right: auto !important;
  margin-left: auto !important
}

[dir] .my-base {
  margin-top: 2.2rem !important;
  margin-bottom: 2.2rem !important
}

[dir=ltr] .mr-0 {
  margin-right: 0 !important
}

[dir=rtl] .mr-0 {
  margin-left: 0 !important
}

[dir] .mb-0 {
  margin-bottom: 0 !important
}

[dir=ltr] .ml-0 {
  margin-left: 0 !important
}

[dir=rtl] .ml-0 {
  margin-right: 0 !important
}

[dir] .mt-1 {
  margin-top: 0.25rem !important
}

[dir=ltr] .mr-1 {
  margin-right: 0.25rem !important
}

[dir=rtl] .mr-1 {
  margin-left: 0.25rem !important
}

[dir] .mb-1 {
  margin-bottom: 0.25rem !important
}

[dir=ltr] .ml-1 {
  margin-left: 0.25rem !important
}

[dir=rtl] .ml-1 {
  margin-right: 0.25rem !important
}

[dir] .mt-2 {
  margin-top: 0.5rem !important
}

[dir=ltr] .mr-2 {
  margin-right: 0.5rem !important
}

[dir=rtl] .mr-2 {
  margin-left: 0.5rem !important
}

[dir] .mb-2 {
  margin-bottom: 0.5rem !important
}

[dir=ltr] .ml-2 {
  margin-left: 0.5rem !important
}

[dir=rtl] .ml-2 {
  margin-right: 0.5rem !important
}

[dir] .mt-3 {
  margin-top: 0.75rem !important
}

[dir=ltr] .mr-3 {
  margin-right: 0.75rem !important
}

[dir=rtl] .mr-3 {
  margin-left: 0.75rem !important
}

[dir] .mb-3 {
  margin-bottom: 0.75rem !important
}

[dir=ltr] .ml-3 {
  margin-left: 0.75rem !important
}

[dir=rtl] .ml-3 {
  margin-right: 0.75rem !important
}

[dir] .mt-4 {
  margin-top: 1rem !important
}

[dir=ltr] .mr-4 {
  margin-right: 1rem !important
}

[dir=rtl] .mr-4 {
  margin-left: 1rem !important
}

[dir] .mb-4 {
  margin-bottom: 1rem !important
}

[dir=ltr] .ml-4 {
  margin-left: 1rem !important
}

[dir=rtl] .ml-4 {
  margin-right: 1rem !important
}

[dir] .mt-5 {
  margin-top: 1.25rem !important
}

[dir=ltr] .mr-5 {
  margin-right: 1.25rem !important
}

[dir=rtl] .mr-5 {
  margin-left: 1.25rem !important
}

[dir] .mb-5 {
  margin-bottom: 1.25rem !important
}

[dir=ltr] .ml-5 {
  margin-left: 1.25rem !important
}

[dir=rtl] .ml-5 {
  margin-right: 1.25rem !important
}

[dir] .mt-6 {
  margin-top: 1.5rem !important
}

[dir] .mb-6 {
  margin-bottom: 1.5rem !important
}

[dir] .mt-8 {
  margin-top: 2rem !important
}

[dir=ltr] .mr-8 {
  margin-right: 2rem !important
}

[dir=rtl] .mr-8 {
  margin-left: 2rem !important
}

[dir] .mb-8 {
  margin-bottom: 2rem !important
}

[dir] .mb-10 {
  margin-bottom: 2.5rem !important
}

[dir=ltr] .ml-10 {
  margin-left: 2.5rem !important
}

[dir=rtl] .ml-10 {
  margin-right: 2.5rem !important
}

[dir] .mt-12 {
  margin-top: 3rem !important
}

[dir] .mb-12 {
  margin-bottom: 3rem !important
}

[dir=ltr] .mr-16 {
  margin-right: 4rem !important
}

[dir=rtl] .mr-16 {
  margin-left: 4rem !important
}

[dir=ltr] .ml-auto {
  margin-left: auto !important
}

[dir=rtl] .ml-auto {
  margin-right: auto !important
}

[dir] .mt-base {
  margin-top: 2.2rem !important
}

[dir] .mb-base {
  margin-bottom: 2.2rem !important
}

[dir=ltr] .-ml-3 {
  margin-left: -0.75rem !important
}

[dir=rtl] .-ml-3 {
  margin-right: -0.75rem !important
}

.max-w-sm {
  max-width: 30rem !important
}

.max-w-full {
  max-width: 100% !important
}

.opacity-75 {
  opacity: 0.75 !important
}

.overflow-hidden {
  overflow: hidden !important
}

.overflow-x-auto {
  overflow-x: auto !important
}

.overflow-x-hidden {
  overflow-x: hidden !important
}

.overflow-x-scroll {
  overflow-x: scroll !important
}

.overflow-y-scroll {
  overflow-y: scroll !important
}

[dir] .p-0 {
  padding: 0 !important
}

[dir] .p-1 {
  padding: 0.25rem !important
}

[dir] .p-2 {
  padding: 0.5rem !important
}

[dir] .p-3 {
  padding: 0.75rem !important
}

[dir] .p-4 {
  padding: 1rem !important
}

[dir] .p-5 {
  padding: 1.25rem !important
}

[dir] .p-6 {
  padding: 1.5rem !important
}

[dir] .p-8 {
  padding: 2rem !important
}

[dir] .p-base {
  padding: 2.2rem !important
}

[dir=ltr] .px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important
}

[dir=rtl] .px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important
}

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

[dir=ltr] .px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important
}

[dir=rtl] .px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important
}

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

[dir=ltr] .px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important
}

[dir=rtl] .px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important
}

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

[dir=ltr] .px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important
}

[dir=rtl] .px-3 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important
}

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

[dir=ltr] .px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important
}

[dir=rtl] .px-4 {
  padding-right: 1rem !important;
  padding-left: 1rem !important
}

[dir=ltr] .px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important
}

[dir=rtl] .px-5 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important
}

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

[dir=ltr] .px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important
}

[dir=rtl] .px-6 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important
}

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

[dir=ltr] .px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important
}

[dir=rtl] .px-8 {
  padding-right: 2rem !important;
  padding-left: 2rem !important
}

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

[dir] .pb-0 {
  padding-bottom: 0 !important
}

[dir] .pt-1 {
  padding-top: 0.25rem !important
}

[dir] .pb-1 {
  padding-bottom: 0.25rem !important
}

[dir] .pt-2 {
  padding-top: 0.5rem !important
}

[dir=ltr] .pr-2 {
  padding-right: 0.5rem !important
}

[dir=rtl] .pr-2 {
  padding-left: 0.5rem !important
}

[dir] .pb-2 {
  padding-bottom: 0.5rem !important
}

[dir=ltr] .pl-2 {
  padding-left: 0.5rem !important
}

[dir=rtl] .pl-2 {
  padding-right: 0.5rem !important
}

[dir] .pt-3 {
  padding-top: 0.75rem !important
}

[dir] .pt-4 {
  padding-top: 1rem !important
}

[dir=ltr] .pr-4 {
  padding-right: 1rem !important
}

[dir=rtl] .pr-4 {
  padding-left: 1rem !important
}

[dir] .pb-4 {
  padding-bottom: 1rem !important
}

[dir=ltr] .pl-4 {
  padding-left: 1rem !important
}

[dir=rtl] .pl-4 {
  padding-right: 1rem !important
}

[dir=ltr] .pr-5 {
  padding-right: 1.25rem !important
}

[dir=rtl] .pr-5 {
  padding-left: 1.25rem !important
}

[dir] .pt-6 {
  padding-top: 1.5rem !important
}

[dir] .pb-6 {
  padding-bottom: 1.5rem !important
}

[dir=ltr] .pl-6 {
  padding-left: 1.5rem !important
}

[dir=rtl] .pl-6 {
  padding-right: 1.5rem !important
}

[dir] .pt-8 {
  padding-top: 2rem !important
}

[dir] .pb-8 {
  padding-bottom: 2rem !important
}

[dir] .pb-20 {
  padding-bottom: 5rem !important
}

.pointer-events-none {
  pointer-events: none !important
}

.pointer-events-auto {
  pointer-events: auto !important
}

.static {
  position: static !important
}

.fixed {
  position: fixed !important
}

.absolute {
  position: absolute !important
}

.relative {
  position: relative !important
}

.sticky {
  position: sticky !important
}

.top-0 {
  top: 0 !important
}

[dir=ltr] .right-0 {
  right: 0 !important
}

[dir=rtl] .right-0 {
  left: 0 !important
}

.bottom-0 {
  bottom: 0 !important
}

[dir=ltr] .left-0 {
  left: 0 !important
}

[dir=rtl] .left-0 {
  right: 0 !important
}

.top-1\/2 {
  top: 50% !important
}

[dir=ltr] .left-1\/2 {
  left: 50% !important
}

[dir=rtl] .left-1\/2 {
  right: 50% !important
}

.resize {
  resize: both !important
}

[dir] .shadow {
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10) !important
}

[dir] .shadow-md {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08) !important
}

[dir] .shadow-lg {
  box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08) !important
}

[dir] .shadow-none {
  box-shadow: none !important
}

[dir] .shadow-drop {
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.14) !important
}

.fill-current {
  fill: currentColor !important
}

.stroke-current {
  stroke: currentColor !important
}

.table-auto {
  table-layout: auto !important
}

.table-fixed {
  table-layout: fixed !important
}

[dir=ltr] .text-left {
  text-align: left !important
}

[dir=rtl] .text-left {
  text-align: right !important
}

[dir] .text-center {
  text-align: center !important
}

[dir=ltr] .text-right {
  text-align: right !important
}

[dir=rtl] .text-right {
  text-align: left !important
}

.text-inherit {
  color: inherit !important
}

.text-black {
  --text-opacity: 1 !important;
  color: #22292f !important;
  color: rgba(34, 41, 47, var(--text-opacity)) !important
}

.text-white {
  --text-opacity: 1 !important;
  color: #ffffff !important;
  color: rgba(255, 255, 255, var(--text-opacity)) !important
}

.text-grey {
  --text-opacity: 1 !important;
  color: #b8c2cc !important;
  color: rgba(184, 194, 204, var(--text-opacity)) !important
}

.text-primary {
  --text-opacity: 1 !important;
  color: #64bc50 !important;
  color: rgba(100, 188, 80, var(--text-opacity)) !important
}

.text-danger {
  --text-opacity: 1 !important;
  color: #EA5455 !important;
  color: rgba(234, 84, 85, var(--text-opacity)) !important
}

.text-darkGrey {
  --text-opacity: 1 !important;
  color: #626262 !important;
  color: rgba(98, 98, 98, var(--text-opacity)) !important
}

.text-darkLightGrey {
  --text-opacity: 1 !important;
  color: #82868b !important;
  color: rgba(130, 134, 139, var(--text-opacity)) !important
}

.text-cancelGrey {
  --text-opacity: 1 !important;
  color: #6e6b7b !important;
  color: rgba(110, 107, 123, var(--text-opacity)) !important
}

.hover\:text-white:hover {
  --text-opacity: 1 !important;
  color: #ffffff !important;
  color: rgba(255, 255, 255, var(--text-opacity)) !important
}

.hover\:text-primary:hover {
  --text-opacity: 1 !important;
  color: #64bc50 !important;
  color: rgba(100, 188, 80, var(--text-opacity)) !important
}

.hover\:text-danger:hover {
  --text-opacity: 1 !important;
  color: #EA5455 !important;
  color: rgba(234, 84, 85, var(--text-opacity)) !important
}

.italic {
  font-style: italic !important
}

.uppercase {
  text-transform: uppercase !important
}

.capitalize {
  text-transform: capitalize !important
}

.underline {
  text-decoration: underline !important
}

.line-through {
  text-decoration: line-through !important
}

.hover\:underline:hover {
  text-decoration: underline !important
}

.tracking-wider {
  letter-spacing: 0.075em !important
}

.select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important
}

.align-middle {
  vertical-align: middle !important
}

.visible {
  visibility: visible !important
}

.whitespace-no-wrap {
  white-space: nowrap !important
}

.whitespace-pre {
  white-space: pre !important
}

.whitespace-pre-wrap {
  white-space: pre-wrap !important
}

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

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

.break-all {
  word-break: break-all !important
}

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

.w-2 {
  width: 0.5rem !important
}

.w-3 {
  width: 0.75rem !important
}

.w-4 {
  width: 1rem !important
}

.w-5 {
  width: 1.25rem !important
}

.w-6 {
  width: 1.5rem !important
}

.w-7 {
  width: 1.75rem !important
}

.w-8 {
  width: 2rem !important
}

.w-10 {
  width: 2.5rem !important
}

.w-12 {
  width: 3rem !important
}

.w-14 {
  width: 3.5rem !important
}

.w-16 {
  width: 4rem !important
}

.w-24 {
  width: 6rem !important
}

.w-32 {
  width: 8rem !important
}

.w-auto {
  width: auto !important
}

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

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

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

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

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

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

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

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

.w-1\/8 {
  width: 12.5% !important
}

.w-1\/12 {
  width: 8.33333% !important
}

.w-2\/12 {
  width: 16.66667% !important
}

.w-3\/12 {
  width: 25% !important
}

.w-4\/12 {
  width: 33.33333% !important
}

.w-5\/12 {
  width: 41.66667% !important
}

.w-6\/12 {
  width: 50% !important
}

.w-8\/12 {
  width: 66.66667% !important
}

.w-9\/12 {
  width: 75% !important
}

.w-10\/12 {
  width: 83.33333% !important
}

.w-11\/12 {
  width: 91.66667% !important
}

.w-full {
  width: 100% !important
}

.z-10 {
  z-index: 10 !important
}

.z-20 {
  z-index: 20 !important
}

.z-50 {
  z-index: 50 !important
}

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

.col-span-3 {
  grid-column: span 3 / span 3 !important
}

.col-start-3 {
  grid-column-start: 3 !important
}

.row-start-2 {
  grid-row-start: 2 !important
}

.transform {
  --transform-translate-x: 0 !important;
  --transform-translate-y: 0 !important;
  --transform-rotate: 0 !important;
  --transform-skew-x: 0 !important;
  --transform-skew-y: 0 !important;
  --transform-scale-x: 1 !important;
  --transform-scale-y: 1 !important
}

[dir] .transform {
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important
}

.-translate-x-1\/2 {
  --transform-translate-x: -50% !important
}

.-translate-y-1\/2 {
  --transform-translate-y: -50% !important
}

[dir] .transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important
}

[dir] .ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important
}

[dir] .ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important
}

@keyframes spin-ltr {
  to {
    transform: rotate(360deg)
  }
}

@keyframes spin-rtl {
  to {
    transform: rotate(-360deg)
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes pulse {
  50% {
    opacity: .5
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1)
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1)
  }
}

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

@media (min-width: 576px) {

  .sm\:block {
    display: block !important
  }

  .sm\:flex {
    display: flex !important
  }

  .sm\:inline-flex {
    display: inline-flex !important
  }

  .sm\:hidden {
    display: none !important
  }

  .sm\:flex-row {
    flex-direction: row !important
  }

  .sm\:items-center {
    align-items: center !important
  }

  .sm\:justify-end {
    justify-content: flex-end !important
  }

  .sm\:order-normal {
    order: 0 !important
  }

  .sm\:text-base {
    font-size: 1rem !important
  }

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

  [dir] .sm\:m-0 {
    margin: 0 !important
  }

  [dir] .sm\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
  }

  [dir=ltr] .sm\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
  }

  [dir=rtl] .sm\:mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
  }

  [dir] .sm\:mt-0 {
    margin-top: 0 !important
  }

  [dir] .sm\:mb-0 {
    margin-bottom: 0 !important
  }

  [dir=ltr] .sm\:ml-2 {
    margin-left: 0.5rem !important
  }

  [dir=rtl] .sm\:ml-2 {
    margin-right: 0.5rem !important
  }

  [dir=ltr] .sm\:mr-4 {
    margin-right: 1rem !important
  }

  [dir=rtl] .sm\:mr-4 {
    margin-left: 1rem !important
  }

  [dir=ltr] .sm\:mr-5 {
    margin-right: 1.25rem !important
  }

  [dir=rtl] .sm\:mr-5 {
    margin-left: 1.25rem !important
  }

  [dir=ltr] .sm\:ml-5 {
    margin-left: 1.25rem !important
  }

  [dir=rtl] .sm\:ml-5 {
    margin-right: 1.25rem !important
  }

  [dir=ltr] .sm\:mr-6 {
    margin-right: 1.5rem !important
  }

  [dir=rtl] .sm\:mr-6 {
    margin-left: 1.5rem !important
  }

  [dir] .sm\:mb-12 {
    margin-bottom: 3rem !important
  }

  [dir] .sm\:mb-16 {
    margin-bottom: 4rem !important
  }

  [dir] .sm\:mt-auto {
    margin-top: auto !important
  }

  [dir] .sm\:mb-auto {
    margin-bottom: auto !important
  }

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

  [dir] .sm\:p-2 {
    padding: 0.5rem !important
  }

  [dir] .sm\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important
  }

  [dir=ltr] .sm\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important
  }

  [dir=rtl] .sm\:px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important
  }

  [dir=ltr] .sm\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
  }

  [dir=rtl] .sm\:px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
  }

  [dir=ltr] .sm\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
  }

  [dir=rtl] .sm\:px-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
  }

  [dir] .sm\:pb-2 {
    padding-bottom: 0.5rem !important
  }

  [dir] .sm\:pb-6 {
    padding-bottom: 1.5rem !important
  }

  [dir=ltr] .sm\:text-right {
    text-align: right !important
  }

  [dir=rtl] .sm\:text-right {
    text-align: left !important
  }

  .sm\:w-auto {
    width: auto !important
  }

  .sm\:w-1\/2 {
    width: 50% !important
  }

  .sm\:w-3\/5 {
    width: 60% !important
  }

  .sm\:w-4\/5 {
    width: 80% !important
  }

  .sm\:w-1\/6 {
    width: 16.66667% !important
  }

  .sm\:w-5\/6 {
    width: 83.33333% !important
  }

  .sm\:w-2\/12 {
    width: 16.66667% !important
  }

  .sm\:w-3\/12 {
    width: 25% !important
  }

  .sm\:w-4\/12 {
    width: 33.33333% !important
  }

  .sm\:w-5\/12 {
    width: 41.66667% !important
  }

  .sm\:w-6\/12 {
    width: 50% !important
  }

  .sm\:w-10\/12 {
    width: 83.33333% !important
  }

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

@media (min-width: 768px) {

  .md\:border-black {
    --border-opacity: 1 !important
  }

  [dir] .md\:border-black {
    border-color: #22292f !important;
    border-color: rgba(34, 41, 47, var(--border-opacity)) !important
  }

  [dir] .md\:border-solid {
    border-style: solid !important
  }

  [dir] .md\:border-0 {
    border-width: 0 !important
  }

  [dir=ltr] .md\:border-r {
    border-right-width: 1px !important
  }

  [dir=rtl] .md\:border-r {
    border-left-width: 1px !important
  }

  [dir=ltr] .md\:border-l {
    border-left-width: 1px !important
  }

  [dir=rtl] .md\:border-l {
    border-right-width: 1px !important
  }

  .md\:block {
    display: block !important
  }

  .md\:inline-block {
    display: inline-block !important
  }

  .md\:inline {
    display: inline !important
  }

  .md\:flex {
    display: flex !important
  }

  .md\:inline-flex {
    display: inline-flex !important
  }

  .md\:table-cell {
    display: table-cell !important
  }

  .md\:hidden {
    display: none !important
  }

  .md\:flex-row {
    flex-direction: row !important
  }

  .md\:self-center {
    align-self: center !important
  }

  .md\:justify-between {
    justify-content: space-between !important
  }

  .md\:flex-1 {
    flex: 1 1 0% !important
  }

  .md\:flex-none {
    flex: none !important
  }

  .md\:flex-grow {
    flex-grow: 1 !important
  }

  .md\:order-2 {
    order: 2 !important
  }

  .md\:order-3 {
    order: 3 !important
  }

  .md\:order-4 {
    order: 4 !important
  }

  .md\:h-56 {
    height: 14rem !important
  }

  .md\:text-base {
    font-size: 1rem !important
  }

  .md\:text-6xl {
    font-size: 4rem !important
  }

  .md\:text-8xl {
    font-size: 6rem !important
  }

  [dir=ltr] .md\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important
  }

  [dir=rtl] .md\:mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important
  }

  [dir=ltr] .md\:mx-32 {
    margin-left: 8rem !important;
    margin-right: 8rem !important
  }

  [dir=rtl] .md\:mx-32 {
    margin-right: 8rem !important;
    margin-left: 8rem !important
  }

  [dir] .md\:mt-0 {
    margin-top: 0 !important
  }

  [dir] .md\:mb-0 {
    margin-bottom: 0 !important
  }

  [dir] .md\:mt-2 {
    margin-top: 0.5rem !important
  }

  [dir=ltr] .md\:ml-4 {
    margin-left: 1rem !important
  }

  [dir=rtl] .md\:ml-4 {
    margin-right: 1rem !important
  }

  [dir=ltr] .md\:ml-8 {
    margin-left: 2rem !important
  }

  [dir=rtl] .md\:ml-8 {
    margin-right: 2rem !important
  }

  .md\:max-w-md {
    max-width: 40rem !important
  }

  .md\:max-w-full {
    max-width: 100% !important
  }

  .md\:max-w-2\/12 {
    max-width: 16.66667% !important
  }

  .md\:max-w-4\/12 {
    max-width: 33.33333% !important
  }

  .md\:max-w-6\/12 {
    max-width: 50% !important
  }

  [dir] .md\:p-0 {
    padding: 0 !important
  }

  [dir] .md\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important
  }

  [dir=ltr] .md\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
  }

  [dir=rtl] .md\:px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
  }

  [dir=ltr] .md\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
  }

  [dir=rtl] .md\:px-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
  }

  [dir] .md\:py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
  }

  [dir=ltr] .md\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important
  }

  [dir=rtl] .md\:px-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important
  }

  [dir=ltr] .md\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important
  }

  [dir=rtl] .md\:px-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important
  }

  [dir] .md\:pt-0 {
    padding-top: 0 !important
  }

  [dir] .md\:pb-0 {
    padding-bottom: 0 !important
  }

  [dir=ltr] .md\:pl-2 {
    padding-left: 0.5rem !important
  }

  [dir=rtl] .md\:pl-2 {
    padding-right: 0.5rem !important
  }

  [dir] .md\:pt-3 {
    padding-top: 0.75rem !important
  }

  [dir=ltr] .md\:pr-4 {
    padding-right: 1rem !important
  }

  [dir=rtl] .md\:pr-4 {
    padding-left: 1rem !important
  }

  [dir] .md\:pb-4 {
    padding-bottom: 1rem !important
  }

  [dir=ltr] .md\:pl-4 {
    padding-left: 1rem !important
  }

  [dir=rtl] .md\:pl-4 {
    padding-right: 1rem !important
  }

  [dir] .md\:pb-5 {
    padding-bottom: 1.25rem !important
  }

  [dir=ltr] .md\:pr-6 {
    padding-right: 1.5rem !important
  }

  [dir=rtl] .md\:pr-6 {
    padding-left: 1.5rem !important
  }

  [dir=ltr] .md\:pl-6 {
    padding-left: 1.5rem !important
  }

  [dir=rtl] .md\:pl-6 {
    padding-right: 1.5rem !important
  }

  [dir] .md\:pb-8 {
    padding-bottom: 2rem !important
  }

  [dir=ltr] .md\:pl-8 {
    padding-left: 2rem !important
  }

  [dir=rtl] .md\:pl-8 {
    padding-right: 2rem !important
  }

  [dir=ltr] .md\:pr-12 {
    padding-right: 3rem !important
  }

  [dir=rtl] .md\:pr-12 {
    padding-left: 3rem !important
  }

  [dir=ltr] .md\:pl-12 {
    padding-left: 3rem !important
  }

  [dir=rtl] .md\:pl-12 {
    padding-right: 3rem !important
  }

  [dir] .md\:text-center {
    text-align: center !important
  }

  [dir=ltr] .md\:text-right {
    text-align: right !important
  }

  [dir=rtl] .md\:text-right {
    text-align: left !important
  }

  .md\:break-words {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important
  }

  .md\:w-56 {
    width: 14rem !important
  }

  .md\:w-auto {
    width: auto !important
  }

  .md\:w-1\/2 {
    width: 50% !important
  }

  .md\:w-1\/3 {
    width: 33.33333% !important
  }

  .md\:w-2\/3 {
    width: 66.66667% !important
  }

  .md\:w-1\/4 {
    width: 25% !important
  }

  .md\:w-3\/5 {
    width: 60% !important
  }

  .md\:w-1\/8 {
    width: 12.5% !important
  }

  .md\:w-1\/12 {
    width: 8.33333% !important
  }

  .md\:w-2\/12 {
    width: 16.66667% !important
  }

  .md\:w-3\/12 {
    width: 25% !important
  }

  .md\:w-4\/12 {
    width: 33.33333% !important
  }

  .md\:w-5\/12 {
    width: 41.66667% !important
  }

  .md\:w-6\/12 {
    width: 50% !important
  }

  .md\:w-8\/12 {
    width: 66.66667% !important
  }

  .md\:w-9\/12 {
    width: 75% !important
  }

  .md\:w-10\/12 {
    width: 83.33333% !important
  }

  .md\:w-full {
    width: 100% !important
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2 !important
  }

  .md\:row-start-1 {
    grid-row-start: 1 !important
  }
}

@media (min-width: 992px) {

  .lg\:block {
    display: block !important
  }

  .lg\:flex {
    display: flex !important
  }

  .lg\:hidden {
    display: none !important
  }

  .lg\:justify-end {
    justify-content: flex-end !important
  }

  .lg\:flex-1 {
    flex: 1 1 0% !important
  }

  .lg\:flex-none {
    flex: none !important
  }

  .lg\:flex-shrink-0 {
    flex-shrink: 0 !important
  }

  .lg\:h-720px {
    height: 720px !important
  }

  .lg\:text-lg {
    font-size: 1.125rem !important
  }

  .lg\:text-xl {
    font-size: 1.25rem !important
  }

  .lg\:text-3xl {
    font-size: 1.875rem !important
  }

  [dir] .lg\:mt-0 {
    margin-top: 0 !important
  }

  [dir=ltr] .lg\:mr-8 {
    margin-right: 2rem !important
  }

  [dir=rtl] .lg\:mr-8 {
    margin-left: 2rem !important
  }

  .lg\:overflow-y-auto {
    overflow-y: auto !important
  }

  [dir] .lg\:pb-0 {
    padding-bottom: 0 !important
  }

  .lg\:w-auto {
    width: auto !important
  }

  .lg\:w-1\/2 {
    width: 50% !important
  }

  .lg\:w-1\/3 {
    width: 33.33333% !important
  }

  .lg\:w-2\/3 {
    width: 66.66667% !important
  }

  .lg\:w-3\/4 {
    width: 75% !important
  }

  .lg\:w-1\/12 {
    width: 8.33333% !important
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1 !important
  }

  .lg\:row-start-1 {
    grid-row-start: 1 !important
  }
}

@media (min-width: 1200px) {

  .xl\:hidden {
    display: none !important
  }

  .xl\:flex-row {
    flex-direction: row !important
  }

  .xl\:h-auto {
    height: auto !important
  }

  [dir] .xl\:mt-0 {
    margin-top: 0 !important
  }

  .xl\:max-w-xl {
    max-width: 60rem !important
  }

  .xl\:w-auto {
    width: auto !important
  }

  .xl\:w-1\/2 {
    width: 50% !important
  }

  .xl\:w-1\/3 {
    width: 33.33333% !important
  }

  .xl\:w-2\/3 {
    width: 66.66667% !important
  }

  .xl\:w-1\/4 {
    width: 25% !important
  }

  .xl\:w-3\/5 {
    width: 60% !important
  }

  .xl\:w-1\/12 {
    width: 8.33333% !important
  }

  .xl\:w-2\/12 {
    width: 16.66667% !important
  }

  .xl\:w-3\/12 {
    width: 25% !important
  }

  .xl\:w-4\/12 {
    width: 33.33333% !important
  }

  .xl\:w-6\/12 {
    width: 50% !important
  }

  .xl\:w-8\/12 {
    width: 66.66667% !important
  }
}

@media (min-width: 1400px) {

  .xxl\:table-cell {
    display: table-cell !important
  }

  .xxl\:flex-row {
    flex-direction: row !important
  }

  .xxl\:order-4 {
    order: 4 !important
  }

  .xxl\:order-5 {
    order: 5 !important
  }

  [dir] .xxl\:mt-0 {
    margin-top: 0 !important
  }

  .xxl\:max-w-full {
    max-width: 100% !important
  }

  .xxl\:max-w-3\/12 {
    max-width: 25% !important
  }

  .xxl\:max-w-4\/12 {
    max-width: 33.33333% !important
  }

  [dir=ltr] .xxl\:pl-12 {
    padding-left: 3rem !important
  }

  [dir=rtl] .xxl\:pl-12 {
    padding-right: 3rem !important
  }

  .xxl\:w-1\/5 {
    width: 20% !important
  }

  .xxl\:w-2\/5 {
    width: 40% !important
  }

  .xxl\:w-3\/5 {
    width: 60% !important
  }

  .xxl\:w-4\/5 {
    width: 80% !important
  }

  .xxl\:w-3\/12 {
    width: 25% !important
  }

  .xxl\:w-4\/12 {
    width: 33.33333% !important
  }

  .xxl\:w-8\/12 {
    width: 66.66667% !important
  }

  .xxl\:w-9\/12 {
    width: 75% !important
  }
}

