:root {
  --primary-color: hsl(196, 78%, 61%);
  --secondary-color: hsl(217, 15%, 83%);
  --success-color: hsl(165, 58%, 55%);
  --info-color: hsl(214, 79%, 65%);
  --warning-color: hsl(43, 100%, 66%);
  --danger-color: hsl(354, 81%, 63%);
  --primary-color-darker: hsl(196, 68%, 54%);
  --secondary-color-darker: hsl(215, 13%, 70%);
  --success-color-darker: hsl(165, 55%, 48%);
  --info-color-darker: hsl(214, 68%, 58%);
  --warning-color-darker: hsl(39, 97%, 62%);
  --danger-color-darker: hsl(354, 67%, 56%);
  --primary-color-lighter: hsl(196, 78%, 81%);
  --secondary-color-lighter: hsl(214, 16%, 92%);
  --success-color-lighter: hsl(165, 58%, 75%);
  --info-color-lighter: hsl(214, 79%, 85%);
  --warning-color-lighter: hsl(43, 100%, 86%);
  --danger-color-lighter: hsl(354, 81%, 83%);
  --secondary-color-darkest: hsl(215, 11%, 30%);
  --secondary-color-lightest: hsl(220, 1%, 98%);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}

@-webkit-keyframes scale-in {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes scale-in {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@-webkit-keyframes scale-in-smaller {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(0.5);
  }
}

@keyframes scale-in-smaller {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(0.5);
  }
}

@-webkit-keyframes scale-out-in {
  35% {
    transform: scale(0);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes scale-out-in {
  35% {
    transform: scale(0);
  }
  70% {
    transform: scale(1);
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes bounce-in {
  from {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce-in {
  from {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes dialog-bounce-in {
  from {
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes dialog-bounce-in {
  from {
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@-webkit-keyframes float-up-down {
  0% {
    transform: translateY(var(--negative-float-up-down-distance));
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(var(--float-up-down-distance));
  }
}

@keyframes float-up-down {
  0% {
    transform: translateY(var(--negative-float-up-down-distance));
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(var(--float-up-down-distance));
  }
}

@-webkit-keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@-webkit-keyframes pulsate-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulsate-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.close-icon {
  --close-icon-width: 1rem;
  --close-icon-bar-width: calc(var(--close-icon-width) / 12);
  --close-icon-color: rgba(0, 0, 0, 0.5);
  --close-icon-cross-color: white;
  width: var(--close-icon-width);
  height: var(--close-icon-width);
  border-radius: 50%;
  position: relative;
  display: block;
  background: var(--close-icon-color);
  cursor: pointer;
}

.close-icon::before, .close-icon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  background: var(--close-icon-cross-color);
  border-radius: 15px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::before {
  width: 50%;
  height: var(--close-icon-bar-width);
}

.close-icon::after {
  width: var(--close-icon-bar-width);
  height: 50%;
}

.chevron-icon {
  width: 1.375rem;
  height: 1.375rem;
  position: relative;
  display: inline-flex;
  box-sizing: border-box;
  cursor: pointer;
  color: var(--chevron-color);
}

.chevron-icon::before {
  width: 0.625rem;
  height: 0.625rem;
  position: absolute;
  content: "";
  box-sizing: border-box;
  border-color: currentColor;
  transform: rotate(var(--chevron-rotate-deg));
}

.chevron-icon.up {
  --chevron-rotate-deg: -45deg;
}

.chevron-icon.up::before {
  left: 0.25rem;
  bottom: 0.125rem;
  border-top: 0.125rem solid;
  border-right: 0.125rem solid;
}

.chevron-icon.right {
  --chevron-rotate-deg: -45deg;
}

.chevron-icon.right::before {
  top: 0.25rem;
  right: 0.375rem;
  border-bottom: 0.125rem solid;
  border-right: 0.125rem solid;
}

.chevron-icon.down {
  --chevron-rotate-deg: 45deg;
}

.chevron-icon.down::before {
  left: 0.25rem;
  top: 0.125rem;
  border-bottom: 0.125rem solid;
  border-right: 0.125rem solid;
}

.chevron-icon.left {
  --chevron-rotate-deg: 135deg;
}

.chevron-icon.left::before {
  left: 0.375rem;
  top: 0.25rem;
  border-bottom: 0.125rem solid;
  border-right: 0.125rem solid;
}

.chevron-icon.circle {
  border: 0.125rem solid currentColor;
  border-radius: 50%;
}

.chevron-icon.circle::before {
  width: 0.375rem;
  height: 0.375rem;
}

.chevron-icon.circle.down::before {
  left: 0.375rem;
  top: 0.3125rem;
}

.chevron-icon.circle.right::before {
  left: 0.3125rem;
  top: 0.375rem;
}

.chevron-icon.circle.up::before {
  left: 0.375rem;
  bottom: 0.3125rem;
}

.chevron-icon.circle.left::before {
  left: 0.4375rem;
  top: 0.375rem;
}

.search-icon {
  width: 1rem;
  height: 1rem;
  position: relative;
  display: inline-flex;
  box-sizing: border-box;
  margin: -0.25rem 0 0 -0.25rem;
  color: var(--search-color);
  border: 0.125rem solid currentColor;
  border-radius: 50%;
}

.search-icon::before {
  position: absolute;
  content: "";
  top: 0.625rem;
  left: 0.75rem;
  box-sizing: border-box;
  width: 0.125rem;
  height: 0.5rem;
  background: currentColor;
  border-radius: 3px;
  transform: rotate(-45deg);
}

.plus-icon {
  width: 1rem;
  height: 1rem;
  position: relative;
  display: inline-flex;
  box-sizing: border-box;
  color: var(--plus-color);
  cursor: pointer;
}

.plus-icon::before, .plus-icon::after {
  position: absolute;
  content: "";
  display: inline-flex;
  box-sizing: border-box;
  background: currentColor;
  border-radius: 10px;
}

.plus-icon::before {
  top: 0.4375rem;
  width: 1rem;
  height: 0.125rem;
}

.plus-icon::after {
  left: 0.4375rem;
  width: 0.125rem;
  height: 1rem;
}

.plus-icon.circle {
  width: 1.375rem;
  height: 1.375rem;
  border: 0.125rem solid currentColor;
  border-radius: 50%;
}

.plus-icon.circle::before, .plus-icon.circle::after {
  border-radius: 5px;
}

.plus-icon.circle::before {
  top: 0.5rem;
  left: 0.25rem;
  width: 0.625rem;
  height: 0.125rem;
}

.plus-icon.circle::after {
  top: 0.25rem;
  left: 0.5rem;
  width: 0.125rem;
  height: 0.625rem;
}

.minus-icon {
  width: 1rem;
  height: 1rem;
  position: relative;
  display: inline-flex;
  box-sizing: border-box;
  color: var(--minus-color);
  cursor: pointer;
}

.minus-icon::before {
  position: absolute;
  content: "";
  top: 0.4375rem;
  display: inline-flex;
  box-sizing: border-box;
  width: 1rem;
  height: 0.125rem;
  background: currentColor;
  border-radius: 10px;
}

.minus-icon.circle {
  width: 1.375rem;
  height: 1.375rem;
  border: 0.125rem solid currentColor;
  border-radius: 50%;
}

.minus-icon.circle::before {
  top: 0.5rem;
  left: 0.25rem;
  width: 0.625rem;
  height: 0.125rem;
  border-radius: 5px;
}

.btn {
  --btn-padding: 0.75rem 1.25rem;
  --btn-border: 1px solid var(--secondary-color);
  --btn-radius: 4px;
  position: relative;
  padding: var(--btn-padding);
  color: var(--btn-color, black);
  background: var(--btn-bg, white);
  border: var(--btn-border);
  border-radius: var(--btn-radius);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  --btn-color: white;
  --btn-bg: var(--primary-color);
  --btn-border: 1px solid var(--btn-bg);
}

.btn-primary.disabled {
  --btn-bg: var(--primary-color-lighter);
}

.btn-secondary {
  --btn-color: white;
  --btn-bg: var(--secondary-color);
  --btn-border: 1px solid var(--btn-bg);
}

.btn-secondary.disabled {
  --btn-bg: var(--secondary-color-lighter);
}

.btn-success {
  --btn-color: white;
  --btn-bg: var(--success-color);
  --btn-border: 1px solid var(--btn-bg);
}

.btn-success.disabled {
  --btn-bg: var(--success-color-lighter);
}

.btn-info {
  --btn-color: white;
  --btn-bg: var(--info-color);
  --btn-border: 1px solid var(--btn-bg);
}

.btn-info.disabled {
  --btn-bg: var(--info-color-lighter);
}

.btn-warning {
  --btn-color: white;
  --btn-bg: var(--warning-color);
  --btn-border: 1px solid var(--btn-bg);
}

.btn-warning.disabled {
  --btn-bg: var(--warning-color-lighter);
}

.btn-danger {
  --btn-color: white;
  --btn-bg: var(--danger-color);
  --btn-border: 1px solid var(--btn-bg);
}

.btn-danger.disabled {
  --btn-bg: var(--danger-color-lighter);
}

.btn-round {
  --btn-radius: 30px;
}

.btn-circle {
  --btn-padding: 0;
  --btn-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
}

.btn.disabled {
  cursor: not-allowed;
}

.btn.loading {
  --btn-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn.loading::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  content: "";
  background: none;
  border: 4px solid white;
  -webkit-clip-path: inset(0 0 50% 0);
          clip-path: inset(0 0 50% 0);
  transform: rotate(0);
  -webkit-animation: spin 0.6s linear infinite;
          animation: spin 0.6s linear infinite;
}

.btn-ghost {
  --btn-color: var(--btn-bg);
  --btn-border: 1px solid var(--btn-bg);
  background: transparent;
  transition: 0.3s;
}

.btn-ghost:hover {
  --btn-color: white;
  background: var(--btn-bg);
}

.btn-dashed {
  --btn-color: var(--btn-bg);
  --btn-border: 1px dashed var(--btn-bg);
  background: transparent;
}

.btn-link {
  --btn-color: var(--btn-bg);
  --btn-border: 0;
  background: transparent;
}

.btn-sm {
  --btn-padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.btn-group {
  --btn-group-divider-color: var(--secondary-color-lighter);
  --btn-group-divider-length: 1px;
  display: inline-flex;
}

.btn-group .btn {
  border: calc(var(--btn-group-divider-length) / 2) solid var(--btn-group-divider-color);
  border-top: none;
  border-bottom: none;
}

.btn-group .btn:first-child {
  border-left: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group .btn:last-child {
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.form-control {
  --input-padding: 0.5rem 0.75rem;
  --input-color: black;
  --input-bg: white;
  --input-border-color: rgba(0, 0, 0, 0.3);
  --input-radius: 4px;
  --input-placeholder-color: var(--secondary-color-darker);
  box-sizing: border-box;
  width: 100%;
  padding: var(--input-padding);
  margin: 0;
  color: var(--input-color);
  background: var(--input-bg);
  border: 1px solid var(--input-border-color);
  border-radius: var(--input-radius);
  transition: 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

.form-control::-webkit-input-placeholder {
  color: var(--input-placeholder-color);
}

.form-control::-moz-placeholder {
  color: var(--input-placeholder-color);
}

.form-control:-ms-input-placeholder {
  color: var(--input-placeholder-color);
}

.form-control::-ms-input-placeholder {
  color: var(--input-placeholder-color);
}

.form-control::placeholder {
  color: var(--input-placeholder-color);
}

select.form-control:not([multiple]) {
  --select-active-color: var(--input-color);
  --select-inactive-color: var(--input-placeholder-color);
  color: var(--select-active-color);
}

select.form-control:not([multiple]):required > option:first-of-type {
  color: var(--select-inactive-color);
}

select.form-control:not([multiple]):required:invalid {
  color: var(--select-inactive-color);
}

select.form-control:not([multiple]):required:invalid > option:not(:first-of-type) {
  color: var(--select-active-color);
}

select.form-control:not([multiple]):required:invalid > optgroup {
  color: var(--select-active-color);
}

.form-input-material {
  --input-default-border-color: rgba(0, 0, 0, 0.5);
  --input-invalid-border-color: var(--danger-color);
  --input-valid-border-color: var(--primary-color);
  --input-border-bottom-color: rgba(0, 0, 0, 0.3);
  position: relative;
  border-bottom: 1px solid var(--input-border-bottom-color);
}

.form-input-material::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 0.125rem;
  background: var(--input-valid-border-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

.form-input-material:focus-within::before {
  transform: scaleX(1);
}

.form-input-material label {
  position: absolute;
  top: 0.5rem;
  left: 0;
  transition: 0.3s;
  transform-origin: left;
}

.form-input-material .form-control-material {
  padding: 0.5rem 0;
  background: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

.form-input-material .form-control-material:invalid ~ label {
  color: var(--input-invalid-border-color);
}

.form-input-material .form-control-material:valid ~ label {
  color: var(--input-valid-border-color);
}

.form-input-material .form-control-material:placeholder-shown ~ label {
  color: var(--input-default-border-color);
}

.form-input-material .form-control-material:focus ~ label,
.form-input-material .form-control-material:not(:placeholder-shown) ~ label {
  transform: translateY(-120%) scale(0.75);
}

.input-group {
  display: flex;
}

.input-group .form-control:first-child,
.input-group .btn:first-child {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group .form-control:last-child,
.input-group .btn:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group .form-control:not(:first-child):not(:last-child),
.input-group .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-spinner {
  --spinner-default-color: var(--secondary-color-darkest);
  --spinner-active-color: var(--primary-color);
  --spinner-max-width: 4rem;
}

.input-spinner .btn {
  --btn-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-spinner .btn:hover, .input-spinner .btn:focus, .input-spinner .btn:active {
  border-color: var(--secondary-color);
}

.input-spinner .btn i {
  transition: 0.3s;
}

.input-spinner .form-control {
  --input-border-color: var(--secondary-color);
  box-sizing: border-box;
  max-width: var(--spinner-max-width);
  text-align: center;
  color: var(--spinner-default-color);
  border-left: none;
  border-right: none;
}

.input-spinner .plus {
  --plus-color: var(--spinner-default-color);
  border-left: none;
  padding-left: 0.625rem;
}

.input-spinner .plus:hover {
  --plus-color: var(--spinner-active-color);
}

.input-spinner .minus {
  --minus-color: var(--spinner-default-color);
  padding-right: 0.625rem;
}

.input-spinner .minus:hover {
  --minus-color: var(--spinner-active-color);
}

.form-check-input[type="checkbox"] {
  --checkbox-width: 1.125rem;
  --checkbox-bg: white;
  --checkbox-radius: 4px;
  --checkbox-border-color: var(--secondary-color);
  --checkbox-hover-border-color: var(--secondary-color-darker);
  --checkbox-checked-bg: var(--primary-color);
  --checkbox-disabled-bg: var(--secondary-color-lighter);
  --checkbox-disabled-checked-bg: var(--secondary-color-darker);
  width: var(--checkbox-width);
  height: var(--checkbox-width);
  position: relative;
  background: var(--checkbox-checked-bg);
  border: none;
  border-radius: var(--checkbox-radius);
  transition: 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  cursor: pointer;
}

.form-check-input[type="checkbox"] ~ .form-check-label {
  margin-left: 0.625rem;
  cursor: pointer;
  transition: 0.3s;
}

.form-check-input[type="checkbox"]::before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18px' height='18px' fill='none' stroke-width='2px' stroke='white' stroke-linecap='round' viewBox='0 0 21 21'%3E%3Cpolyline points='5 10.75 8.5 14.25 16 6'%3E%3C/polyline%3E%3C/svg%3E");
  transform: scale(0);
}

.form-check-input[type="checkbox"]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--checkbox-bg);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--checkbox-border-color);
  transition: 0.2s;
}

.form-check-input[type="checkbox"]:hover {
  --checkbox-border-color: var(--checkbox-hover-border-color);
}

.form-check-input[type="checkbox"]:checked::before {
  -webkit-animation: scale-in 0.1s 0.2s linear forwards;
          animation: scale-in 0.1s 0.2s linear forwards;
}

.form-check-input[type="checkbox"]:checked::after {
  transform: scale(0);
}

.form-check-input[type="checkbox"]:disabled {
  --checkbox-bg: var(--checkbox-disabled-bg);
  --checkbox-checked-bg: var(--checkbox-disabled-checked-bg);
  cursor: not-allowed;
}

.form-check-input[type="checkbox"]:disabled ~ .form-check-label {
  cursor: not-allowed;
}

.form-check-input[type="checkbox"]:indeterminate::after {
  transform: scale(0.5);
}

.form-check-input[type="radio"] {
  --radio-width: 1.125rem;
  --radio-bg: white;
  --radio-radius: 50%;
  --radio-border-color: var(--secondary-color);
  --radio-hover-border-color: var(--secondary-color-darker);
  --radio-checked-bg: var(--primary-color);
  --radio-disabled-bg: var(--secondary-color-lighter);
  --radio-disabled-checked-bg: var(--secondary-color-darker);
  width: var(--radio-width);
  height: var(--radio-width);
  position: relative;
  background: var(--radio-checked-bg);
  border: none;
  border-radius: var(--radio-radius);
  transition: 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  cursor: pointer;
}

.form-check-input[type="radio"] ~ .form-check-label {
  margin-left: 0.625rem;
  cursor: pointer;
  transition: 0.3s;
}

.form-check-input[type="radio"]::before, .form-check-input[type="radio"]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--radio-bg);
  border-radius: inherit;
}

.form-check-input[type="radio"]::before {
  transform: scale(0);
}

.form-check-input[type="radio"]::after {
  box-shadow: inset 0 0 0 1px var(--radio-border-color);
  transition: 0.2s;
}

.form-check-input[type="radio"]:hover {
  --radio-border-color: var(--radio-hover-border-color);
}

.form-check-input[type="radio"]:checked::before {
  -webkit-animation: scale-in-smaller 0.1s 0.2s linear forwards;
          animation: scale-in-smaller 0.1s 0.2s linear forwards;
}

.form-check-input[type="radio"]:checked::after {
  transform: scale(0);
}

.form-check-input[type="radio"]:disabled {
  --radio-bg: var(--radio-disabled-bg);
  --radio-checked-bg: var(--radio-disabled-checked-bg);
  cursor: not-allowed;
}

.form-check-input[type="radio"]:disabled ~ .form-check-label {
  cursor: not-allowed;
}

.form-switch {
  --switch-width: 2.5625rem;
  --switch-height: 1.3125rem;
  --switch-bg: white;
  --switch-radius: 12px;
  --switch-ball-width: 0.9375rem;
  --switch-ball-bg: var(--secondary-color);
  --switch-checked-ball-bg: white;
  --switch-border-color: var(--secondary-color);
  --switch-hover-border-color: var(--secondary-color-darker);
  --switch-checked-bg: var(--primary-color);
  --switch-disabled-bg: var(--secondary-color-lighter);
  --switch-disabled-checked-bg: var(--secondary-color-darker);
  position: relative;
  width: var(--switch-width);
  height: var(--switch-height);
  background: var(--switch-bg);
  border: 1px solid var(--switch-border-color);
  border-radius: var(--switch-radius);
  transition: 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  cursor: pointer;
}

.form-switch::before {
  width: var(--switch-ball-width);
  height: var(--switch-ball-width);
  border-radius: 50%;
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  content: "";
  background: var(--switch-ball-bg);
  transition: 0.3s;
}

.form-switch ~ .form-check-label {
  margin-left: 0.625rem;
  cursor: pointer;
  transition: 0.3s;
}

.form-switch:hover {
  --switch-border-color: var(--switch-hover-border-color);
}

.form-switch:checked {
  --switch-bg: var(--switch-checked-bg);
  --switch-border-color: var(--switch-checked-bg);
}

.form-switch:checked::before {
  --switch-ball-bg: var(--switch-checked-ball-bg);
  transform: translateX(1.25rem);
}

.form-switch:disabled {
  --switch-bg: var(--switch-disabled-bg);
  --switch-checked-bg: var(--switch-disabled-checked-bg);
  cursor: not-allowed;
}

.form-switch:disabled ~ .form-check-label {
  cursor: not-allowed;
}

.progress-bar {
  --progress-height: 0.375rem;
  --progress-radius: 1.875rem;
  --progress-bar-color: var(--secondary-color-lighter);
  --progress-color: var(--primary-color);
  height: var(--progress-height);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.progress-bar::-webkit-progress-bar {
  background: var(--progress-bar-color);
  border-radius: var(--progress-radius);
}

.progress-bar::-webkit-progress-value {
  background: var(--progress-color);
  border-radius: var(--progress-radius);
}

.form-control-range {
  --range-height: 0.125rem;
  --range-bar-bg: var(--secondary-color-lighter);
  --range-bar-radius: 30px;
  --range-thumb-width: 1.25rem;
  --range-thumb-bg: white;
  --range-thumb-border-color: var(--primary-color);
  height: var(--range-height);
  background: var(--range-bar-bg);
  border-radius: var(--range-bar-radius);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.form-control-range::-webkit-slider-thumb {
  width: var(--range-thumb-width);
  height: var(--range-thumb-width);
  border-radius: 50%;
  background: var(--range-thumb-bg);
  border: 2px solid var(--range-thumb-border-color);
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-appearance: none;
          appearance: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form-control-range:hover::-webkit-slider-thumb, .form-control-range:active::-webkit-slider-thumb {
  transform: scale(1.2);
}

.form-control-range:active::-webkit-slider-thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

[data-tooltip] {
  --tooltip-color: var(--secondary-color-darkest);
  overflow: visible !important;
}

[data-tooltip]::before, [data-tooltip]::after {
  position: absolute;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  padding: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.2;
  background: var(--tooltip-color);
  border-radius: 4px;
  white-space: nowrap;
}

[data-tooltip]::after {
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: var(--tooltip-color) transparent transparent transparent;
}

[data-tooltip]:hover::before, [data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}

[data-tooltip][data-placement^="top"]::before {
  bottom: calc(100% + 10px);
}

[data-tooltip][data-placement^="top"]::after {
  bottom: calc(100% + 5px);
}

[data-tooltip][data-placement="top"]::before, [data-tooltip][data-placement="top"]::after {
  left: 50%;
  transform: translate(-50%, 0);
}

[data-tooltip][data-placement="top-left"]::before {
  left: 0;
  transform: translate(0, 0);
}

[data-tooltip][data-placement="top-left"]::after {
  left: 10px;
}

[data-tooltip][data-placement="top-right"]::before {
  left: 100%;
  transform: translate(-100%, 0);
}

[data-tooltip][data-placement="top-right"]::after {
  right: 10px;
}

[data-tooltip][data-placement^="right"]::before {
  left: calc(100% + 10px);
}

[data-tooltip][data-placement^="right"]::after {
  left: calc(100% + 3px);
}

[data-tooltip][data-placement="right"]::before, [data-tooltip][data-placement="right"]::after {
  top: 50%;
  transform: translate(0, -50%);
}

[data-tooltip][data-placement="right"]::after {
  transform: translate(0, -50%) rotate(90deg);
}

[data-tooltip][data-placement="right-top"]::before {
  top: 0;
  transform: translate(0, 0);
}

[data-tooltip][data-placement="right-top"]::after {
  top: 10px;
  transform: translate(0, 0) rotate(90deg);
}

[data-tooltip][data-placement="right-bottom"]::before {
  top: 100%;
  transform: translate(0, -100%);
}

[data-tooltip][data-placement="right-bottom"]::after {
  bottom: 13px;
  transform: translate(0, 100%) rotate(90deg);
}

[data-tooltip][data-placement^="bottom"]::before {
  top: calc(100% + 10px);
}

[data-tooltip][data-placement^="bottom"]::after {
  top: calc(100% + 6px);
}

[data-tooltip][data-placement="bottom"]::before, [data-tooltip][data-placement="bottom"]::after {
  right: 50%;
  transform: translate(50%, 0);
}

[data-tooltip][data-placement="bottom"]::after {
  transform: translate(50%, 0) rotate(180deg);
}

[data-tooltip][data-placement="bottom-left"]::before {
  right: 0;
  transform: translate(0, 0);
}

[data-tooltip][data-placement="bottom-left"]::after {
  right: 10px;
  transform: translate(0, 0) rotate(180deg);
}

[data-tooltip][data-placement="bottom-right"]::before {
  right: 100%;
  transform: translate(100%, 0);
}

[data-tooltip][data-placement="bottom-right"]::after {
  left: 10px;
  transform: translate(100%, 0) rotate(180deg);
}

[data-tooltip][data-placement^="left"]::before {
  right: calc(100% + 10px);
}

[data-tooltip][data-placement^="left"]::after {
  right: calc(100% + 3px);
}

[data-tooltip][data-placement="left"]::before, [data-tooltip][data-placement="left"]::after {
  bottom: 50%;
  transform: translate(0, 50%);
}

[data-tooltip][data-placement="left"]::after {
  transform: translate(0, 50%) rotate(270deg);
}

[data-tooltip][data-placement="left-top"]::before {
  bottom: 100%;
  transform: translate(0, 100%);
}

[data-tooltip][data-placement="left-top"]::after {
  top: 13px;
  transform: translate(0, -100%) rotate(270deg);
}

[data-tooltip][data-placement="left-bottom"]::before {
  bottom: 0;
  transform: translate(0, 0);
}

[data-tooltip][data-placement="left-bottom"]::after {
  bottom: 10px;
  transform: translate(0, 0) rotate(270deg);
}

.dialog {
  --dialog-width: 17.5rem;
  --dialog-padding: 2rem;
  --dialog-bg: white;
  --dialog-radius: 15px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  box-sizing: border-box;
  width: var(--dialog-width);
  padding: var(--dialog-padding);
  background: var(--dialog-bg);
  border-radius: var(--dialog-radius);
  -webkit-animation: fade-in 0.6s both;
          animation: fade-in 0.6s both;
}

.dialog .close-icon {
  --close-icon-width: 3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4rem;
}

.dialog.bounce-in {
  -webkit-animation: dialog-bounce-in 0.6s forwards;
          animation: dialog-bounce-in 0.6s forwards;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  transition: 0.6s;
}

.pagination {
  --pagination-active-color: var(--primary-color);
  --pagination-disabled-color: var(--secondary-color);
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  line-height: 1;
}

.pagination .page-item {
  padding: 0 0.75rem;
  cursor: pointer;
}

.pagination .page-item:not(.disabled):hover .page-link, .pagination .page-item.active .page-link {
  color: var(--pagination-active-color);
  fill: var(--pagination-active-color);
}

.pagination .page-item.active {
  cursor: default;
}

.pagination .page-item.active .page-link {
  cursor: default;
}

.pagination .page-item.disabled {
  cursor: not-allowed;
}

.pagination .page-item.disabled .page-link {
  color: var(--pagination-disabled-color);
  fill: var(--pagination-disabled-color);
  cursor: not-allowed;
}

.pagination .page-link {
  display: block;
  color: black;
  text-decoration: none;
  transition: 0.1s;
}

.nav {
  --nav-underline-color: var(--secondary-color);
  --nav-color: black;
  --nav-active-color: var(--primary-color);
  --nav-inactive-color: rgba(0, 0, 0, 0.2);
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-bottom: 1px solid var(--nav-underline-color);
}

.nav:hover .nav-item:not(:hover) a {
  color: var(--nav-inactive-color);
}

.nav .nav-item a {
  position: relative;
  display: flex;
  padding: 1.5rem;
  color: var(--nav-color);
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav .nav-item a::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: var(--nav-active-color);
  transform: scaleX(0);
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav .nav-item a:hover::after, .nav .nav-item a.router-link-active::after {
  transform: scaleX(1);
}

.dropdown {
  --dropdown-color: black;
  --dropdown-toggle-color: var(--primary-color);
  --dropdown-item-color: white;
  --dropdown-item-hover-color: hsl(0, 0%, 96%);
  --dropdown-item-divider-color: rgba(255, 255, 255, 0.2);
  position: relative;
}

.dropdown .dropdown-toggle {
  color: var(--dropdown-toggle-color);
  text-decoration: none;
  transition: 0.4s;
}

.dropdown .dropdown-toggle::after {
  width: 0;
  height: 0;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 0.25rem;
  content: "";
  border-style: solid;
  border-width: 5px 5px 0 6px;
  border-color: var(--dropdown-toggle-color) transparent transparent transparent;
  transition: 0.4s;
}

.dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  margin: 0;
  padding: 0.25rem 0;
  list-style-type: none;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  transition: 0.4s;
}

.dropdown .dropdown-menu .dropdown-item a {
  display: block;
  padding: 0.375rem 0.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--dropdown-color);
  background: var(--dropdown-item-color);
  transition: 0.4s;
}

.dropdown .dropdown-menu .dropdown-item a:hover {
  background: var(--dropdown-item-hover-color);
}

.dropdown .dropdown-menu .dropdown-item:not(:last-child) a {
  border-bottom: 1px solid var(--dropdown-item-divider-color);
}

.dropdown:hover .dropdown-toggle::after {
  transform: scaleY(-1);
}

.dropdown:hover .dropdown-menu {
  transform: rotate(0);
}

.timeline {
  --timeline-color: black;
  --timeline-line-color: var(--secondary-color-lighter);
  --timeline-dot-bg: white;
  --timeline-dot-color: var(--primary-color);
  --timeline-timestamp-col: 3;
  position: relative;
  display: grid;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--timeline-color);
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 0.375rem;
  width: 0.25rem;
  height: 100%;
  background: var(--timeline-line-color);
}

.timeline-item__timestamp {
  display: grid;
  grid-template-columns: repeat(var(--timeline-timestamp-col), auto) 1fr;
  align-items: center;
  gap: 0.375rem;
}

.timeline-item__timestamp .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  position: relative;
  background: var(--timeline-dot-bg);
}

.timeline-item__timestamp .dot::before {
  top: -0.25rem;
  left: -0.25rem;
  right: -0.25rem;
  bottom: -0.25rem;
  position: absolute;
  content: "";
  background: var(--timeline-dot-bg);
}

.timeline-item__timestamp .dot::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border: 4px solid var(--timeline-dot-color);
  border-radius: inherit;
}

.timeline-item__timestamp a {
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

.timeline-item__content {
  margin: 1.125rem 0 0 3.9375rem;
  line-height: 1.5;
}

.accordion {
  --accordion-color: var(--secondary-color-darker);
  --accordion-active-color: var(--primary-color);
  --accordion-line-color: var(--secondary-color);
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: var(--accordion-color);
}

.accordion-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem;
  font-size: 1.3125rem;
  color: currentColor;
  text-decoration: none;
  border-bottom: 1px solid var(--accordion-line-color);
  cursor: pointer;
}

.accordion-item a .accordion-toggle {
  border-width: 1px;
  transition: 0.3s;
  transform: scale(1.5);
}

.accordion-item a .accordion-toggle::before {
  left: 0.4375rem !important;
  top: 0.375rem !important;
}

.accordion-item a:hover, .accordion-item a.active {
  color: var(--accordion-active-color);
  border-bottom: 1px solid currentColor;
}

.accordion-item.active a .accordion-toggle {
  transform: scale(1.5) rotate(0.5turn);
}

.accordion-item.active .accordion-content {
  padding: 1.125rem;
  max-height: 11.25rem;
  opacity: 1;
}

.accordion-content {
  padding: 0 1.125rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s 0.15s;
}

.rate {
  display: flex;
  flex-direction: row-reverse;
}

.rate input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.rate input:checked ~ label::after {
  opacity: 1;
}

.rate input:checked ~ label::before {
  opacity: 0;
}

.rate label {
  width: 1.125rem;
  height: 1.125rem;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.rate label:not(:first-child) {
  margin-right: 0.375rem;
}

.rate label:hover::after {
  transform: scale(1.2);
}

.rate label::before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg t='1584099080940' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='9773' width='18px' height='18px' fill='%23A9B1BC' %3E%3Cpath d='M686.153143 573.732571l174.884571-169.691429-241.152-35.401143-108.032-218.258286-108.032 218.258286-241.152 35.401143 174.884571 169.691429-41.691429 240.566857 215.990857-113.737143 215.405714 113.737143zM987.282286 369.737143q0 12.580571-14.848 27.428571l-207.433143 202.313143 49.152 285.696q0.585143 4.022857 0.585143 11.410286 0 28.598857-23.405714 28.598857-10.825143 0-22.820571-6.875429l-256.585143-134.875429-256.585143 134.875429q-12.580571 6.875429-22.820571 6.875429-11.995429 0-17.993143-8.265143t-5.997714-20.260571q0-3.437714 1.170286-11.410286l49.152-285.696-208.018286-202.313143q-14.262857-15.433143-14.262857-27.428571 0-21.138286 32.036571-26.258286l286.866286-41.691429 128.585143-260.022857q10.825143-23.405714 28.013714-23.405714t28.013714 23.405714l128.585143 260.022857 286.866286 41.691429q32.036571 5.12 32.036571 26.258286z' p-id='9774' %3E%3C/path%3E%3C/svg %3E");
  transition: 0.3s;
}

.rate label::after {
  position: absolute;
  z-index: 1;
  content: url("data:image/svg+xml,%3Csvg t='1584099189586' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='10117' fill='%23fcbb42' width='18px' height='18px'%3E%3Cpath d='M987.282286 369.737143q0 12.580571-14.848 27.428571l-207.433143 202.313143 49.152 285.696q0.585143 4.022857 0.585143 11.410286 0 11.995429-5.997714 20.260571t-17.408 8.265143q-10.825143 0-22.820571-6.875429l-256.585143-134.875429-256.585143 134.875429q-12.580571 6.875429-22.820571 6.875429-11.995429 0-17.993143-8.265143t-5.997714-20.260571q0-3.437714 1.170286-11.410286l49.152-285.696-208.018286-202.313143q-14.262857-15.433143-14.262857-27.428571 0-21.138286 32.036571-26.258286l286.866286-41.691429 128.585143-260.022857q10.825143-23.405714 28.013714-23.405714t28.013714 23.405714l128.585143 260.022857 286.866286 41.691429q32.036571 5.12 32.036571 26.258286z' p-id='10118'%3E%3C/path%3E%3C/svg%3E");
  opacity: 0;
  transition: 0.3s;
}

.rate label:hover::before,
.rate label:hover ~ label::before {
  opacity: 0 !important;
}

.rate label:hover::after,
.rate label:hover ~ label::after {
  opacity: 1 !important;
}

.rate:hover input:checked ~ label::before {
  opacity: 1;
}

.loader {
  --loader-width: 4em;
  --loader-stroke-color: var(--primary-color);
  --loader-stroke: 2px;
  --loader-border: 2px;
  --loader-border-color: var(--primary-color-transparent);
  width: var(--loader-width);
  height: var(--loader-width);
  border-radius: 50%;
  position: relative;
  box-shadow: inset 0 0 0 var(--loader-border) var(--loader-border-color);
}

.loader::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 0 var(--loader-stroke) var(--loader-stroke-color);
  -webkit-clip-path: inset(0 50% 0 0);
          clip-path: inset(0 50% 0 0);
  -webkit-mask: linear-gradient(black, transparent);
          mask: linear-gradient(black, transparent);
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

.gauge {
  --gauge-width: 5.625rem;
  --gauge-value: 500;
  --gauge-max-value: 1000;
  --gauge-percentage: calc(var(--gauge-value) / var(--gauge-max-value) * 100%);
  --gauge-bg: white;
  --gauge-circle-color: var(--primary-color);
  --gauge-circle-color-lighter: var(--primary-color-lighter);
  --gauge-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--gauge-width);
  height: var(--gauge-width);
  border-radius: 50%;
  position: relative;
  color: var(--gauge-color);
  background: conic-gradient(var(--gauge-circle-color) var(--gauge-percentage), var(--gauge-circle-color-lighter) 0);
  counter-reset: value var(--gauge-value);
}

.gauge::before {
  position: absolute;
  top: auto;
  left: auto;
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  content: counter(value);
  background: var(--gauge-bg);
  border-radius: inherit;
}

.gauge-primary {
  --gauge-circle-color: var(--primary-color);
  --gauge-circle-color-lighter: var(--primary-color-lighter);
}

.gauge-secondary {
  --gauge-circle-color: var(--secondary-color);
  --gauge-circle-color-lighter: var(--secondary-color-lighter);
}

.gauge-success {
  --gauge-circle-color: var(--success-color);
  --gauge-circle-color-lighter: var(--success-color-lighter);
}

.gauge-info {
  --gauge-circle-color: var(--info-color);
  --gauge-circle-color-lighter: var(--info-color-lighter);
}

.gauge-warning {
  --gauge-circle-color: var(--warning-color);
  --gauge-circle-color-lighter: var(--warning-color-lighter);
}

.gauge-danger {
  --gauge-circle-color: var(--danger-color);
  --gauge-circle-color-lighter: var(--danger-color-lighter);
}

[data-badge] {
  --badge-color: var(--btn-bg);
}

[data-badge]::after {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  content: attr(data-badge);
  box-sizing: border-box;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0.125rem 0.25rem;
  font-size: 0.75rem;
  line-height: 1;
  background: var(--badge-color);
  border-radius: 9px;
  box-shadow: 0 0 0 2px white;
  transform: translate(50%, -50%);
}

.breadcrumb {
  --breadcrumb-divider: "/";
  --breadcrumb-divider-color: var(--secondary-color-darker);
  --breadcrumb-color: black;
  --breadcrumb-active-color: var(--primary-color);
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.breadcrumb-item a {
  position: relative;
  text-decoration: none;
}

.breadcrumb-item a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: currentColor;
  transform: scaleX(0);
  transition: 0.3s;
}

.breadcrumb-item a:hover::before {
  transform: scaleX(1);
}

.breadcrumb-item:not(:first-child) {
  padding-left: 0.5625rem;
}

.breadcrumb-item:not(:first-child)::before {
  content: var(--breadcrumb-divider);
  padding-right: 0.5625rem;
  color: var(--breadcrumb-divider-color);
}

.breadcrumb-item:not(:last-child) a {
  color: var(--breadcrumb-color);
}

.breadcrumb-item:last-child a {
  color: var(--breadcrumb-active-color);
}

.alert {
  --alert-padding: 0.875rem 1.75rem;
  --alert-radius: 4px;
  --close-icon-color: currentColor;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--alert-padding);
  background: var(--alert-color);
  border-radius: var(--alert-radius);
  transition: 0.3s;
}

.alert-primary {
  color: var(--primary-color-darker);
  --alert-color: var(--primary-color-lighter);
}

.alert-secondary {
  color: var(--secondary-color-darker);
  --alert-color: var(--secondary-color-lighter);
}

.alert-success {
  color: var(--success-color-darker);
  --alert-color: var(--success-color-lighter);
}

.alert-info {
  color: var(--info-color-darker);
  --alert-color: var(--info-color-lighter);
}

.alert-warning {
  color: var(--warning-color-darker);
  --alert-color: var(--warning-color-lighter);
}

.alert-danger {
  color: var(--danger-color-darker);
  --alert-color: var(--danger-color-lighter);
}

.tag {
  --tag-height: 1.5rem;
  --tag-padding: 0 0.5rem;
  --tag-font-size: 0.75rem;
  --tag-radius: 4px;
  --close-icon-color: currentColor;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: var(--tag-height);
  padding: var(--tag-padding);
  font-size: var(--tag-font-size);
  background: var(--tag-color);
  border: 1px solid var(--tag-color, var(--secondary-color));
  border-radius: var(--tag-radius);
  transition: 0.3s;
}

.tag-primary {
  color: var(--primary-color-darker);
  --tag-color: var(--primary-color-lighter);
}

.tag-secondary {
  color: var(--secondary-color-darker);
  --tag-color: var(--secondary-color-lighter);
}

.tag-success {
  color: var(--success-color-darker);
  --tag-color: var(--success-color-lighter);
}

.tag-info {
  color: var(--info-color-darker);
  --tag-color: var(--info-color-lighter);
}

.tag-warning {
  color: var(--warning-color-darker);
  --tag-color: var(--warning-color-lighter);
}

.tag-danger {
  color: var(--danger-color-darker);
  --tag-color: var(--danger-color-lighter);
}

.tag .close-icon {
  margin-left: 0.25rem;
}

.table {
  --table-row-border-color: var(--secondary-color);
  --table-thead-color: var(--secondary-color-darkest);
  --table-thead-bg: var(--secondary-color-lightest);
  --table-td-padding: 0.75rem;
  --table-td-align: left;
  border-collapse: collapse;
}

.table thead {
  color: var(--table-thead-color);
  background: var(--table-thead-bg);
}

.table tbody tr {
  border-bottom: 1px solid var(--table-row-border-color);
}

.table td,
.table th {
  padding: var(--table-td-padding);
  text-align: var(--table-td-align);
}

.step {
  --step-circle-color: var(--step-default-color);
  --step-circle-bg: transparent;
  --step-line-color: var(--secondary-color);
  --step-default-color: var(--secondary-color-darker);
  --step-active-color: var(--primary-color);
  display: flex;
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  counter-reset: step;
}

.step-item {
  position: relative;
  flex: 1;
  color: var(--step-default-color);
  counter-increment: step;
}

.step-item__content {
  position: absolute;
  left: -1.5rem;
  width: 6.25rem;
  text-align: center;
}

.step-item__title {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  transition: 0.3s;
}

.step-item__desc {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  transition: 0.3s;
}

.step-item:last-child {
  max-width: 3.125rem;
}

.step-item:last-child .step-item__node::after {
  content: none;
}

.step-item__node {
  display: flex;
  align-items: center;
}

.step-item__node::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  content: counter(step);
  margin: 0 0.5rem;
  font-size: 0.75rem;
  background: var(--step-circle-bg);
  border: 1px solid var(--step-circle-color);
  transition: 0.3s;
}

.step-item__node::after {
  content: "";
  width: calc(100% - 48px);
  height: 1px;
  background: var(--step-line-color);
  transition: 0.3s;
}

.step-item.done .step-item__node::before {
  --step-circle-color: var(--step-active-color);
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18px' height='18px' fill='none' stroke-width='2px' stroke='%234ec0e9' stroke-linecap='round' viewBox='0 0 21 21'%3E%3Cpolyline points='5 10.75 8.5 14.25 16 6'%3E%3C/polyline%3E%3C/svg%3E");
  line-height: 1;
  color: var(--step-active-color);
}

.step-item.done .step-item__node::after {
  --step-line-color: var(--step-active-color);
}

.step-item.active {
  color: var(--secondary-color-darkest);
}

.step-item.active .step-item__node::before {
  --step-circle-color: var(--step-active-color);
  --step-circle-bg: var(--step-active-color);
  color: white;
}

.carousel {
  --carousel-width: 18.75rem;
  --carousel-height: 9.375rem;
  --carousel-link-width: 0.5rem;
  --carousel-link-margin: 0.5rem;
  --carousel-link-color: white;
  position: relative;
  width: var(--carousel-width);
  overflow: hidden;
}

.carousel-indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  margin-bottom: calc(var(--carousel-link-width) * 2);
}

.carousel-link {
  width: var(--carousel-link-width);
  height: var(--carousel-link-width);
  border-radius: 50%;
  content: "";
  margin: 0 var(--carousel-link-margin);
  box-shadow: inset 0 0 0 calc(var(--carousel-link-width) / 8) var(--carousel-link-color);
  transition: 0.3s;
}

.carousel-link.active {
  box-shadow: inset 0 0 0 var(--carousel-link-width) var(--carousel-link-color);
}

.carousel-inner {
  display: flex;
  overflow: hidden;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.carousel-item {
  scroll-snap-align: start;
  width: 100%;
  height: var(--carousel-height);
}

.divider {
  --divider-text: none;
  --divider-border-color: var(--secondary-color-lighter);
  --divider-color: var(--secondary-color-darkest);
  --divider-text-align: center;
  width: 100%;
  max-height: 1px;
  line-height: 1;
  border: none;
  border-top: 1px solid var(--divider-border-color);
  text-align: var(--divider-text-align);
  overflow: visible;
}

.divider::after {
  position: relative;
  content: var(--divider-text);
  top: -0.5em;
  padding: 0 0.25rem;
  color: var(--divider-color);
  background: white;
}

.back-top {
  --backtop-visibility-height: 12.5rem;
  --backtop-right: 2.5rem;
  --backtop-bottom: 5rem;
  --backtop-active-color: var(--primary-color);
  --backtop-icon-color: var(--secondary-color-darker);
  position: absolute;
  top: var(--backtop-visibility-height);
  right: var(--backtop-right);
  bottom: calc(-1 * var(--backtop-bottom));
}

.back-top-link {
  position: -webkit-sticky;
  position: sticky;
  top: calc(100vh - var(--backtop-bottom));
  color: var(--backtop-icon-color);
  border: none !important;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  transform: scale(2);
  transition: 0.3s;
}

.back-top-link::before {
  left: 0.5rem !important;
  top: 0.5625rem !important;
}

.back-top-link:hover {
  color: var(--backtop-active-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.card {
  --card-padding: 0.75rem;
  --card-bg: white;
  --card-radius: 15px;
  position: relative;
  box-sizing: border-box;
  padding: var(--card-padding);
  background: var(--card-bg);
  border-radius: var(--card-radius);
}

.avatar {
  --avatar-width: 2.5rem;
  --avatar-bg: transparent;
  --avatar-border: none;
  --avatar-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--avatar-width);
  height: var(--avatar-width);
  position: relative;
  line-height: 1;
  vertical-align: middle;
  background: var(--avatar-bg);
  border: var(--avatar-border);
  border-radius: var(--avatar-radius);
}

.avatar-primary {
  color: white;
  --avatar-bg: var(--primary-color);
}

.avatar-secondary {
  color: white;
  --avatar-bg: var(--secondary-color);
}

.avatar-success {
  color: white;
  --avatar-bg: var(--success-color);
}

.avatar-info {
  color: white;
  --avatar-bg: var(--info-color);
}

.avatar-warning {
  color: white;
  --avatar-bg: var(--warning-color);
}

.avatar-danger {
  color: white;
  --avatar-bg: var(--danger-color);
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.box-border {
  box-sizing: border-box;
}

.box-content {
  box-sizing: content-box;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.flow-root {
  display: flow-root;
}

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right;
}

.clear-both {
  clear: both;
}

.clear-none {
  clear: none;
}

.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-top {
  -o-object-position: top;
     object-position: 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-bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.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;
}

.overflow-auto {
  overflow: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-visible {
  overflow: visible;
}

.overflow-x-visible {
  overflow-x: visible;
}

.overflow-y-visible {
  overflow-y: visible;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.scrolling-touch {
  -webkit-overflow-scrolling: touch;
}

.overflow-scroll-auto {
  -webkit-overflow-scrolling: auto;
}

.overflow-scroll-contain {
  -webkit-overflow-scrolling: contain;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute !important;
}

.relative {
  position: relative;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.inset-0 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.inset-y-0 {
  top: 0;
  bottom: 0;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.inset-auto {
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.top-0 {
  top: 0rem !important;
}

.right-0 {
  right: 0rem !important;
}

.bottom-0 {
  bottom: 0rem !important;
}

.left-0 {
  left: 0rem !important;
}

.-top-0 {
  top: 0rem !important;
}

.-right-0 {
  right: 0rem !important;
}

.-bottom-0 {
  bottom: 0rem !important;
}

.-left-0 {
  left: 0rem !important;
}

.top-1 {
  top: 0.25rem !important;
}

.right-1 {
  right: 0.25rem !important;
}

.bottom-1 {
  bottom: 0.25rem !important;
}

.left-1 {
  left: 0.25rem !important;
}

.-top-1 {
  top: -0.25rem !important;
}

.-right-1 {
  right: -0.25rem !important;
}

.-bottom-1 {
  bottom: -0.25rem !important;
}

.-left-1 {
  left: -0.25rem !important;
}

.top-2 {
  top: 0.5rem !important;
}

.right-2 {
  right: 0.5rem !important;
}

.bottom-2 {
  bottom: 0.5rem !important;
}

.left-2 {
  left: 0.5rem !important;
}

.-top-2 {
  top: -0.5rem !important;
}

.-right-2 {
  right: -0.5rem !important;
}

.-bottom-2 {
  bottom: -0.5rem !important;
}

.-left-2 {
  left: -0.5rem !important;
}

.top-3 {
  top: 0.75rem !important;
}

.right-3 {
  right: 0.75rem !important;
}

.bottom-3 {
  bottom: 0.75rem !important;
}

.left-3 {
  left: 0.75rem !important;
}

.-top-3 {
  top: -0.75rem !important;
}

.-right-3 {
  right: -0.75rem !important;
}

.-bottom-3 {
  bottom: -0.75rem !important;
}

.-left-3 {
  left: -0.75rem !important;
}

.top-4 {
  top: 1rem !important;
}

.right-4 {
  right: 1rem !important;
}

.bottom-4 {
  bottom: 1rem !important;
}

.left-4 {
  left: 1rem !important;
}

.-top-4 {
  top: -1rem !important;
}

.-right-4 {
  right: -1rem !important;
}

.-bottom-4 {
  bottom: -1rem !important;
}

.-left-4 {
  left: -1rem !important;
}

.top-5 {
  top: 1.25rem !important;
}

.right-5 {
  right: 1.25rem !important;
}

.bottom-5 {
  bottom: 1.25rem !important;
}

.left-5 {
  left: 1.25rem !important;
}

.-top-5 {
  top: -1.25rem !important;
}

.-right-5 {
  right: -1.25rem !important;
}

.-bottom-5 {
  bottom: -1.25rem !important;
}

.-left-5 {
  left: -1.25rem !important;
}

.top-6 {
  top: 1.5rem !important;
}

.right-6 {
  right: 1.5rem !important;
}

.bottom-6 {
  bottom: 1.5rem !important;
}

.left-6 {
  left: 1.5rem !important;
}

.-top-6 {
  top: -1.5rem !important;
}

.-right-6 {
  right: -1.5rem !important;
}

.-bottom-6 {
  bottom: -1.5rem !important;
}

.-left-6 {
  left: -1.5rem !important;
}

.top-7 {
  top: 1.75rem !important;
}

.right-7 {
  right: 1.75rem !important;
}

.bottom-7 {
  bottom: 1.75rem !important;
}

.left-7 {
  left: 1.75rem !important;
}

.-top-7 {
  top: -1.75rem !important;
}

.-right-7 {
  right: -1.75rem !important;
}

.-bottom-7 {
  bottom: -1.75rem !important;
}

.-left-7 {
  left: -1.75rem !important;
}

.top-8 {
  top: 2rem !important;
}

.right-8 {
  right: 2rem !important;
}

.bottom-8 {
  bottom: 2rem !important;
}

.left-8 {
  left: 2rem !important;
}

.-top-8 {
  top: -2rem !important;
}

.-right-8 {
  right: -2rem !important;
}

.-bottom-8 {
  bottom: -2rem !important;
}

.-left-8 {
  left: -2rem !important;
}

.top-9 {
  top: 2.25rem !important;
}

.right-9 {
  right: 2.25rem !important;
}

.bottom-9 {
  bottom: 2.25rem !important;
}

.left-9 {
  left: 2.25rem !important;
}

.-top-9 {
  top: -2.25rem !important;
}

.-right-9 {
  right: -2.25rem !important;
}

.-bottom-9 {
  bottom: -2.25rem !important;
}

.-left-9 {
  left: -2.25rem !important;
}

.top-10 {
  top: 2.5rem !important;
}

.right-10 {
  right: 2.5rem !important;
}

.bottom-10 {
  bottom: 2.5rem !important;
}

.left-10 {
  left: 2.5rem !important;
}

.-top-10 {
  top: -2.5rem !important;
}

.-right-10 {
  right: -2.5rem !important;
}

.-bottom-10 {
  bottom: -2.5rem !important;
}

.-left-10 {
  left: -2.5rem !important;
}

.top-11 {
  top: 2.75rem !important;
}

.right-11 {
  right: 2.75rem !important;
}

.bottom-11 {
  bottom: 2.75rem !important;
}

.left-11 {
  left: 2.75rem !important;
}

.-top-11 {
  top: -2.75rem !important;
}

.-right-11 {
  right: -2.75rem !important;
}

.-bottom-11 {
  bottom: -2.75rem !important;
}

.-left-11 {
  left: -2.75rem !important;
}

.top-12 {
  top: 3rem !important;
}

.right-12 {
  right: 3rem !important;
}

.bottom-12 {
  bottom: 3rem !important;
}

.left-12 {
  left: 3rem !important;
}

.-top-12 {
  top: -3rem !important;
}

.-right-12 {
  right: -3rem !important;
}

.-bottom-12 {
  bottom: -3rem !important;
}

.-left-12 {
  left: -3rem !important;
}

.top-13 {
  top: 3.25rem !important;
}

.right-13 {
  right: 3.25rem !important;
}

.bottom-13 {
  bottom: 3.25rem !important;
}

.left-13 {
  left: 3.25rem !important;
}

.-top-13 {
  top: -3.25rem !important;
}

.-right-13 {
  right: -3.25rem !important;
}

.-bottom-13 {
  bottom: -3.25rem !important;
}

.-left-13 {
  left: -3.25rem !important;
}

.top-14 {
  top: 3.5rem !important;
}

.right-14 {
  right: 3.5rem !important;
}

.bottom-14 {
  bottom: 3.5rem !important;
}

.left-14 {
  left: 3.5rem !important;
}

.-top-14 {
  top: -3.5rem !important;
}

.-right-14 {
  right: -3.5rem !important;
}

.-bottom-14 {
  bottom: -3.5rem !important;
}

.-left-14 {
  left: -3.5rem !important;
}

.top-15 {
  top: 3.75rem !important;
}

.right-15 {
  right: 3.75rem !important;
}

.bottom-15 {
  bottom: 3.75rem !important;
}

.left-15 {
  left: 3.75rem !important;
}

.-top-15 {
  top: -3.75rem !important;
}

.-right-15 {
  right: -3.75rem !important;
}

.-bottom-15 {
  bottom: -3.75rem !important;
}

.-left-15 {
  left: -3.75rem !important;
}

.top-16 {
  top: 4rem !important;
}

.right-16 {
  right: 4rem !important;
}

.bottom-16 {
  bottom: 4rem !important;
}

.left-16 {
  left: 4rem !important;
}

.-top-16 {
  top: -4rem !important;
}

.-right-16 {
  right: -4rem !important;
}

.-bottom-16 {
  bottom: -4rem !important;
}

.-left-16 {
  left: -4rem !important;
}

.top-17 {
  top: 4.25rem !important;
}

.right-17 {
  right: 4.25rem !important;
}

.bottom-17 {
  bottom: 4.25rem !important;
}

.left-17 {
  left: 4.25rem !important;
}

.-top-17 {
  top: -4.25rem !important;
}

.-right-17 {
  right: -4.25rem !important;
}

.-bottom-17 {
  bottom: -4.25rem !important;
}

.-left-17 {
  left: -4.25rem !important;
}

.top-18 {
  top: 4.5rem !important;
}

.right-18 {
  right: 4.5rem !important;
}

.bottom-18 {
  bottom: 4.5rem !important;
}

.left-18 {
  left: 4.5rem !important;
}

.-top-18 {
  top: -4.5rem !important;
}

.-right-18 {
  right: -4.5rem !important;
}

.-bottom-18 {
  bottom: -4.5rem !important;
}

.-left-18 {
  left: -4.5rem !important;
}

.top-19 {
  top: 4.75rem !important;
}

.right-19 {
  right: 4.75rem !important;
}

.bottom-19 {
  bottom: 4.75rem !important;
}

.left-19 {
  left: 4.75rem !important;
}

.-top-19 {
  top: -4.75rem !important;
}

.-right-19 {
  right: -4.75rem !important;
}

.-bottom-19 {
  bottom: -4.75rem !important;
}

.-left-19 {
  left: -4.75rem !important;
}

.top-20 {
  top: 5rem !important;
}

.right-20 {
  right: 5rem !important;
}

.bottom-20 {
  bottom: 5rem !important;
}

.left-20 {
  left: 5rem !important;
}

.-top-20 {
  top: -5rem !important;
}

.-right-20 {
  right: -5rem !important;
}

.-bottom-20 {
  bottom: -5rem !important;
}

.-left-20 {
  left: -5rem !important;
}

.top-21 {
  top: 5.25rem !important;
}

.right-21 {
  right: 5.25rem !important;
}

.bottom-21 {
  bottom: 5.25rem !important;
}

.left-21 {
  left: 5.25rem !important;
}

.-top-21 {
  top: -5.25rem !important;
}

.-right-21 {
  right: -5.25rem !important;
}

.-bottom-21 {
  bottom: -5.25rem !important;
}

.-left-21 {
  left: -5.25rem !important;
}

.top-22 {
  top: 5.5rem !important;
}

.right-22 {
  right: 5.5rem !important;
}

.bottom-22 {
  bottom: 5.5rem !important;
}

.left-22 {
  left: 5.5rem !important;
}

.-top-22 {
  top: -5.5rem !important;
}

.-right-22 {
  right: -5.5rem !important;
}

.-bottom-22 {
  bottom: -5.5rem !important;
}

.-left-22 {
  left: -5.5rem !important;
}

.top-23 {
  top: 5.75rem !important;
}

.right-23 {
  right: 5.75rem !important;
}

.bottom-23 {
  bottom: 5.75rem !important;
}

.left-23 {
  left: 5.75rem !important;
}

.-top-23 {
  top: -5.75rem !important;
}

.-right-23 {
  right: -5.75rem !important;
}

.-bottom-23 {
  bottom: -5.75rem !important;
}

.-left-23 {
  left: -5.75rem !important;
}

.top-24 {
  top: 6rem !important;
}

.right-24 {
  right: 6rem !important;
}

.bottom-24 {
  bottom: 6rem !important;
}

.left-24 {
  left: 6rem !important;
}

.-top-24 {
  top: -6rem !important;
}

.-right-24 {
  right: -6rem !important;
}

.-bottom-24 {
  bottom: -6rem !important;
}

.-left-24 {
  left: -6rem !important;
}

.top-25 {
  top: 6.25rem !important;
}

.right-25 {
  right: 6.25rem !important;
}

.bottom-25 {
  bottom: 6.25rem !important;
}

.left-25 {
  left: 6.25rem !important;
}

.-top-25 {
  top: -6.25rem !important;
}

.-right-25 {
  right: -6.25rem !important;
}

.-bottom-25 {
  bottom: -6.25rem !important;
}

.-left-25 {
  left: -6.25rem !important;
}

.top-26 {
  top: 6.5rem !important;
}

.right-26 {
  right: 6.5rem !important;
}

.bottom-26 {
  bottom: 6.5rem !important;
}

.left-26 {
  left: 6.5rem !important;
}

.-top-26 {
  top: -6.5rem !important;
}

.-right-26 {
  right: -6.5rem !important;
}

.-bottom-26 {
  bottom: -6.5rem !important;
}

.-left-26 {
  left: -6.5rem !important;
}

.top-27 {
  top: 6.75rem !important;
}

.right-27 {
  right: 6.75rem !important;
}

.bottom-27 {
  bottom: 6.75rem !important;
}

.left-27 {
  left: 6.75rem !important;
}

.-top-27 {
  top: -6.75rem !important;
}

.-right-27 {
  right: -6.75rem !important;
}

.-bottom-27 {
  bottom: -6.75rem !important;
}

.-left-27 {
  left: -6.75rem !important;
}

.top-28 {
  top: 7rem !important;
}

.right-28 {
  right: 7rem !important;
}

.bottom-28 {
  bottom: 7rem !important;
}

.left-28 {
  left: 7rem !important;
}

.-top-28 {
  top: -7rem !important;
}

.-right-28 {
  right: -7rem !important;
}

.-bottom-28 {
  bottom: -7rem !important;
}

.-left-28 {
  left: -7rem !important;
}

.top-29 {
  top: 7.25rem !important;
}

.right-29 {
  right: 7.25rem !important;
}

.bottom-29 {
  bottom: 7.25rem !important;
}

.left-29 {
  left: 7.25rem !important;
}

.-top-29 {
  top: -7.25rem !important;
}

.-right-29 {
  right: -7.25rem !important;
}

.-bottom-29 {
  bottom: -7.25rem !important;
}

.-left-29 {
  left: -7.25rem !important;
}

.top-30 {
  top: 7.5rem !important;
}

.right-30 {
  right: 7.5rem !important;
}

.bottom-30 {
  bottom: 7.5rem !important;
}

.left-30 {
  left: 7.5rem !important;
}

.-top-30 {
  top: -7.5rem !important;
}

.-right-30 {
  right: -7.5rem !important;
}

.-bottom-30 {
  bottom: -7.5rem !important;
}

.-left-30 {
  left: -7.5rem !important;
}

.top-31 {
  top: 7.75rem !important;
}

.right-31 {
  right: 7.75rem !important;
}

.bottom-31 {
  bottom: 7.75rem !important;
}

.left-31 {
  left: 7.75rem !important;
}

.-top-31 {
  top: -7.75rem !important;
}

.-right-31 {
  right: -7.75rem !important;
}

.-bottom-31 {
  bottom: -7.75rem !important;
}

.-left-31 {
  left: -7.75rem !important;
}

.top-32 {
  top: 8rem !important;
}

.right-32 {
  right: 8rem !important;
}

.bottom-32 {
  bottom: 8rem !important;
}

.left-32 {
  left: 8rem !important;
}

.-top-32 {
  top: -8rem !important;
}

.-right-32 {
  right: -8rem !important;
}

.-bottom-32 {
  bottom: -8rem !important;
}

.-left-32 {
  left: -8rem !important;
}

.top-33 {
  top: 8.25rem !important;
}

.right-33 {
  right: 8.25rem !important;
}

.bottom-33 {
  bottom: 8.25rem !important;
}

.left-33 {
  left: 8.25rem !important;
}

.-top-33 {
  top: -8.25rem !important;
}

.-right-33 {
  right: -8.25rem !important;
}

.-bottom-33 {
  bottom: -8.25rem !important;
}

.-left-33 {
  left: -8.25rem !important;
}

.top-34 {
  top: 8.5rem !important;
}

.right-34 {
  right: 8.5rem !important;
}

.bottom-34 {
  bottom: 8.5rem !important;
}

.left-34 {
  left: 8.5rem !important;
}

.-top-34 {
  top: -8.5rem !important;
}

.-right-34 {
  right: -8.5rem !important;
}

.-bottom-34 {
  bottom: -8.5rem !important;
}

.-left-34 {
  left: -8.5rem !important;
}

.top-35 {
  top: 8.75rem !important;
}

.right-35 {
  right: 8.75rem !important;
}

.bottom-35 {
  bottom: 8.75rem !important;
}

.left-35 {
  left: 8.75rem !important;
}

.-top-35 {
  top: -8.75rem !important;
}

.-right-35 {
  right: -8.75rem !important;
}

.-bottom-35 {
  bottom: -8.75rem !important;
}

.-left-35 {
  left: -8.75rem !important;
}

.top-36 {
  top: 9rem !important;
}

.right-36 {
  right: 9rem !important;
}

.bottom-36 {
  bottom: 9rem !important;
}

.left-36 {
  left: 9rem !important;
}

.-top-36 {
  top: -9rem !important;
}

.-right-36 {
  right: -9rem !important;
}

.-bottom-36 {
  bottom: -9rem !important;
}

.-left-36 {
  left: -9rem !important;
}

.top-37 {
  top: 9.25rem !important;
}

.right-37 {
  right: 9.25rem !important;
}

.bottom-37 {
  bottom: 9.25rem !important;
}

.left-37 {
  left: 9.25rem !important;
}

.-top-37 {
  top: -9.25rem !important;
}

.-right-37 {
  right: -9.25rem !important;
}

.-bottom-37 {
  bottom: -9.25rem !important;
}

.-left-37 {
  left: -9.25rem !important;
}

.top-38 {
  top: 9.5rem !important;
}

.right-38 {
  right: 9.5rem !important;
}

.bottom-38 {
  bottom: 9.5rem !important;
}

.left-38 {
  left: 9.5rem !important;
}

.-top-38 {
  top: -9.5rem !important;
}

.-right-38 {
  right: -9.5rem !important;
}

.-bottom-38 {
  bottom: -9.5rem !important;
}

.-left-38 {
  left: -9.5rem !important;
}

.top-39 {
  top: 9.75rem !important;
}

.right-39 {
  right: 9.75rem !important;
}

.bottom-39 {
  bottom: 9.75rem !important;
}

.left-39 {
  left: 9.75rem !important;
}

.-top-39 {
  top: -9.75rem !important;
}

.-right-39 {
  right: -9.75rem !important;
}

.-bottom-39 {
  bottom: -9.75rem !important;
}

.-left-39 {
  left: -9.75rem !important;
}

.top-40 {
  top: 10rem !important;
}

.right-40 {
  right: 10rem !important;
}

.bottom-40 {
  bottom: 10rem !important;
}

.left-40 {
  left: 10rem !important;
}

.-top-40 {
  top: -10rem !important;
}

.-right-40 {
  right: -10rem !important;
}

.-bottom-40 {
  bottom: -10rem !important;
}

.-left-40 {
  left: -10rem !important;
}

.top-41 {
  top: 10.25rem !important;
}

.right-41 {
  right: 10.25rem !important;
}

.bottom-41 {
  bottom: 10.25rem !important;
}

.left-41 {
  left: 10.25rem !important;
}

.-top-41 {
  top: -10.25rem !important;
}

.-right-41 {
  right: -10.25rem !important;
}

.-bottom-41 {
  bottom: -10.25rem !important;
}

.-left-41 {
  left: -10.25rem !important;
}

.top-42 {
  top: 10.5rem !important;
}

.right-42 {
  right: 10.5rem !important;
}

.bottom-42 {
  bottom: 10.5rem !important;
}

.left-42 {
  left: 10.5rem !important;
}

.-top-42 {
  top: -10.5rem !important;
}

.-right-42 {
  right: -10.5rem !important;
}

.-bottom-42 {
  bottom: -10.5rem !important;
}

.-left-42 {
  left: -10.5rem !important;
}

.top-43 {
  top: 10.75rem !important;
}

.right-43 {
  right: 10.75rem !important;
}

.bottom-43 {
  bottom: 10.75rem !important;
}

.left-43 {
  left: 10.75rem !important;
}

.-top-43 {
  top: -10.75rem !important;
}

.-right-43 {
  right: -10.75rem !important;
}

.-bottom-43 {
  bottom: -10.75rem !important;
}

.-left-43 {
  left: -10.75rem !important;
}

.top-44 {
  top: 11rem !important;
}

.right-44 {
  right: 11rem !important;
}

.bottom-44 {
  bottom: 11rem !important;
}

.left-44 {
  left: 11rem !important;
}

.-top-44 {
  top: -11rem !important;
}

.-right-44 {
  right: -11rem !important;
}

.-bottom-44 {
  bottom: -11rem !important;
}

.-left-44 {
  left: -11rem !important;
}

.top-45 {
  top: 11.25rem !important;
}

.right-45 {
  right: 11.25rem !important;
}

.bottom-45 {
  bottom: 11.25rem !important;
}

.left-45 {
  left: 11.25rem !important;
}

.-top-45 {
  top: -11.25rem !important;
}

.-right-45 {
  right: -11.25rem !important;
}

.-bottom-45 {
  bottom: -11.25rem !important;
}

.-left-45 {
  left: -11.25rem !important;
}

.top-46 {
  top: 11.5rem !important;
}

.right-46 {
  right: 11.5rem !important;
}

.bottom-46 {
  bottom: 11.5rem !important;
}

.left-46 {
  left: 11.5rem !important;
}

.-top-46 {
  top: -11.5rem !important;
}

.-right-46 {
  right: -11.5rem !important;
}

.-bottom-46 {
  bottom: -11.5rem !important;
}

.-left-46 {
  left: -11.5rem !important;
}

.top-47 {
  top: 11.75rem !important;
}

.right-47 {
  right: 11.75rem !important;
}

.bottom-47 {
  bottom: 11.75rem !important;
}

.left-47 {
  left: 11.75rem !important;
}

.-top-47 {
  top: -11.75rem !important;
}

.-right-47 {
  right: -11.75rem !important;
}

.-bottom-47 {
  bottom: -11.75rem !important;
}

.-left-47 {
  left: -11.75rem !important;
}

.top-48 {
  top: 12rem !important;
}

.right-48 {
  right: 12rem !important;
}

.bottom-48 {
  bottom: 12rem !important;
}

.left-48 {
  left: 12rem !important;
}

.-top-48 {
  top: -12rem !important;
}

.-right-48 {
  right: -12rem !important;
}

.-bottom-48 {
  bottom: -12rem !important;
}

.-left-48 {
  left: -12rem !important;
}

.top-49 {
  top: 12.25rem !important;
}

.right-49 {
  right: 12.25rem !important;
}

.bottom-49 {
  bottom: 12.25rem !important;
}

.left-49 {
  left: 12.25rem !important;
}

.-top-49 {
  top: -12.25rem !important;
}

.-right-49 {
  right: -12.25rem !important;
}

.-bottom-49 {
  bottom: -12.25rem !important;
}

.-left-49 {
  left: -12.25rem !important;
}

.top-50 {
  top: 12.5rem !important;
}

.right-50 {
  right: 12.5rem !important;
}

.bottom-50 {
  bottom: 12.5rem !important;
}

.left-50 {
  left: 12.5rem !important;
}

.-top-50 {
  top: -12.5rem !important;
}

.-right-50 {
  right: -12.5rem !important;
}

.-bottom-50 {
  bottom: -12.5rem !important;
}

.-left-50 {
  left: -12.5rem !important;
}

.top-51 {
  top: 12.75rem !important;
}

.right-51 {
  right: 12.75rem !important;
}

.bottom-51 {
  bottom: 12.75rem !important;
}

.left-51 {
  left: 12.75rem !important;
}

.-top-51 {
  top: -12.75rem !important;
}

.-right-51 {
  right: -12.75rem !important;
}

.-bottom-51 {
  bottom: -12.75rem !important;
}

.-left-51 {
  left: -12.75rem !important;
}

.top-52 {
  top: 13rem !important;
}

.right-52 {
  right: 13rem !important;
}

.bottom-52 {
  bottom: 13rem !important;
}

.left-52 {
  left: 13rem !important;
}

.-top-52 {
  top: -13rem !important;
}

.-right-52 {
  right: -13rem !important;
}

.-bottom-52 {
  bottom: -13rem !important;
}

.-left-52 {
  left: -13rem !important;
}

.top-53 {
  top: 13.25rem !important;
}

.right-53 {
  right: 13.25rem !important;
}

.bottom-53 {
  bottom: 13.25rem !important;
}

.left-53 {
  left: 13.25rem !important;
}

.-top-53 {
  top: -13.25rem !important;
}

.-right-53 {
  right: -13.25rem !important;
}

.-bottom-53 {
  bottom: -13.25rem !important;
}

.-left-53 {
  left: -13.25rem !important;
}

.top-54 {
  top: 13.5rem !important;
}

.right-54 {
  right: 13.5rem !important;
}

.bottom-54 {
  bottom: 13.5rem !important;
}

.left-54 {
  left: 13.5rem !important;
}

.-top-54 {
  top: -13.5rem !important;
}

.-right-54 {
  right: -13.5rem !important;
}

.-bottom-54 {
  bottom: -13.5rem !important;
}

.-left-54 {
  left: -13.5rem !important;
}

.top-55 {
  top: 13.75rem !important;
}

.right-55 {
  right: 13.75rem !important;
}

.bottom-55 {
  bottom: 13.75rem !important;
}

.left-55 {
  left: 13.75rem !important;
}

.-top-55 {
  top: -13.75rem !important;
}

.-right-55 {
  right: -13.75rem !important;
}

.-bottom-55 {
  bottom: -13.75rem !important;
}

.-left-55 {
  left: -13.75rem !important;
}

.top-56 {
  top: 14rem !important;
}

.right-56 {
  right: 14rem !important;
}

.bottom-56 {
  bottom: 14rem !important;
}

.left-56 {
  left: 14rem !important;
}

.-top-56 {
  top: -14rem !important;
}

.-right-56 {
  right: -14rem !important;
}

.-bottom-56 {
  bottom: -14rem !important;
}

.-left-56 {
  left: -14rem !important;
}

.top-57 {
  top: 14.25rem !important;
}

.right-57 {
  right: 14.25rem !important;
}

.bottom-57 {
  bottom: 14.25rem !important;
}

.left-57 {
  left: 14.25rem !important;
}

.-top-57 {
  top: -14.25rem !important;
}

.-right-57 {
  right: -14.25rem !important;
}

.-bottom-57 {
  bottom: -14.25rem !important;
}

.-left-57 {
  left: -14.25rem !important;
}

.top-58 {
  top: 14.5rem !important;
}

.right-58 {
  right: 14.5rem !important;
}

.bottom-58 {
  bottom: 14.5rem !important;
}

.left-58 {
  left: 14.5rem !important;
}

.-top-58 {
  top: -14.5rem !important;
}

.-right-58 {
  right: -14.5rem !important;
}

.-bottom-58 {
  bottom: -14.5rem !important;
}

.-left-58 {
  left: -14.5rem !important;
}

.top-59 {
  top: 14.75rem !important;
}

.right-59 {
  right: 14.75rem !important;
}

.bottom-59 {
  bottom: 14.75rem !important;
}

.left-59 {
  left: 14.75rem !important;
}

.-top-59 {
  top: -14.75rem !important;
}

.-right-59 {
  right: -14.75rem !important;
}

.-bottom-59 {
  bottom: -14.75rem !important;
}

.-left-59 {
  left: -14.75rem !important;
}

.top-60 {
  top: 15rem !important;
}

.right-60 {
  right: 15rem !important;
}

.bottom-60 {
  bottom: 15rem !important;
}

.left-60 {
  left: 15rem !important;
}

.-top-60 {
  top: -15rem !important;
}

.-right-60 {
  right: -15rem !important;
}

.-bottom-60 {
  bottom: -15rem !important;
}

.-left-60 {
  left: -15rem !important;
}

.top-61 {
  top: 15.25rem !important;
}

.right-61 {
  right: 15.25rem !important;
}

.bottom-61 {
  bottom: 15.25rem !important;
}

.left-61 {
  left: 15.25rem !important;
}

.-top-61 {
  top: -15.25rem !important;
}

.-right-61 {
  right: -15.25rem !important;
}

.-bottom-61 {
  bottom: -15.25rem !important;
}

.-left-61 {
  left: -15.25rem !important;
}

.top-62 {
  top: 15.5rem !important;
}

.right-62 {
  right: 15.5rem !important;
}

.bottom-62 {
  bottom: 15.5rem !important;
}

.left-62 {
  left: 15.5rem !important;
}

.-top-62 {
  top: -15.5rem !important;
}

.-right-62 {
  right: -15.5rem !important;
}

.-bottom-62 {
  bottom: -15.5rem !important;
}

.-left-62 {
  left: -15.5rem !important;
}

.top-63 {
  top: 15.75rem !important;
}

.right-63 {
  right: 15.75rem !important;
}

.bottom-63 {
  bottom: 15.75rem !important;
}

.left-63 {
  left: 15.75rem !important;
}

.-top-63 {
  top: -15.75rem !important;
}

.-right-63 {
  right: -15.75rem !important;
}

.-bottom-63 {
  bottom: -15.75rem !important;
}

.-left-63 {
  left: -15.75rem !important;
}

.top-64 {
  top: 16rem !important;
}

.right-64 {
  right: 16rem !important;
}

.bottom-64 {
  bottom: 16rem !important;
}

.left-64 {
  left: 16rem !important;
}

.-top-64 {
  top: -16rem !important;
}

.-right-64 {
  right: -16rem !important;
}

.-bottom-64 {
  bottom: -16rem !important;
}

.-left-64 {
  left: -16rem !important;
}

.top-65 {
  top: 16.25rem !important;
}

.right-65 {
  right: 16.25rem !important;
}

.bottom-65 {
  bottom: 16.25rem !important;
}

.left-65 {
  left: 16.25rem !important;
}

.-top-65 {
  top: -16.25rem !important;
}

.-right-65 {
  right: -16.25rem !important;
}

.-bottom-65 {
  bottom: -16.25rem !important;
}

.-left-65 {
  left: -16.25rem !important;
}

.top-66 {
  top: 16.5rem !important;
}

.right-66 {
  right: 16.5rem !important;
}

.bottom-66 {
  bottom: 16.5rem !important;
}

.left-66 {
  left: 16.5rem !important;
}

.-top-66 {
  top: -16.5rem !important;
}

.-right-66 {
  right: -16.5rem !important;
}

.-bottom-66 {
  bottom: -16.5rem !important;
}

.-left-66 {
  left: -16.5rem !important;
}

.top-67 {
  top: 16.75rem !important;
}

.right-67 {
  right: 16.75rem !important;
}

.bottom-67 {
  bottom: 16.75rem !important;
}

.left-67 {
  left: 16.75rem !important;
}

.-top-67 {
  top: -16.75rem !important;
}

.-right-67 {
  right: -16.75rem !important;
}

.-bottom-67 {
  bottom: -16.75rem !important;
}

.-left-67 {
  left: -16.75rem !important;
}

.top-68 {
  top: 17rem !important;
}

.right-68 {
  right: 17rem !important;
}

.bottom-68 {
  bottom: 17rem !important;
}

.left-68 {
  left: 17rem !important;
}

.-top-68 {
  top: -17rem !important;
}

.-right-68 {
  right: -17rem !important;
}

.-bottom-68 {
  bottom: -17rem !important;
}

.-left-68 {
  left: -17rem !important;
}

.top-69 {
  top: 17.25rem !important;
}

.right-69 {
  right: 17.25rem !important;
}

.bottom-69 {
  bottom: 17.25rem !important;
}

.left-69 {
  left: 17.25rem !important;
}

.-top-69 {
  top: -17.25rem !important;
}

.-right-69 {
  right: -17.25rem !important;
}

.-bottom-69 {
  bottom: -17.25rem !important;
}

.-left-69 {
  left: -17.25rem !important;
}

.top-70 {
  top: 17.5rem !important;
}

.right-70 {
  right: 17.5rem !important;
}

.bottom-70 {
  bottom: 17.5rem !important;
}

.left-70 {
  left: 17.5rem !important;
}

.-top-70 {
  top: -17.5rem !important;
}

.-right-70 {
  right: -17.5rem !important;
}

.-bottom-70 {
  bottom: -17.5rem !important;
}

.-left-70 {
  left: -17.5rem !important;
}

.top-71 {
  top: 17.75rem !important;
}

.right-71 {
  right: 17.75rem !important;
}

.bottom-71 {
  bottom: 17.75rem !important;
}

.left-71 {
  left: 17.75rem !important;
}

.-top-71 {
  top: -17.75rem !important;
}

.-right-71 {
  right: -17.75rem !important;
}

.-bottom-71 {
  bottom: -17.75rem !important;
}

.-left-71 {
  left: -17.75rem !important;
}

.top-72 {
  top: 18rem !important;
}

.right-72 {
  right: 18rem !important;
}

.bottom-72 {
  bottom: 18rem !important;
}

.left-72 {
  left: 18rem !important;
}

.-top-72 {
  top: -18rem !important;
}

.-right-72 {
  right: -18rem !important;
}

.-bottom-72 {
  bottom: -18rem !important;
}

.-left-72 {
  left: -18rem !important;
}

.top-73 {
  top: 18.25rem !important;
}

.right-73 {
  right: 18.25rem !important;
}

.bottom-73 {
  bottom: 18.25rem !important;
}

.left-73 {
  left: 18.25rem !important;
}

.-top-73 {
  top: -18.25rem !important;
}

.-right-73 {
  right: -18.25rem !important;
}

.-bottom-73 {
  bottom: -18.25rem !important;
}

.-left-73 {
  left: -18.25rem !important;
}

.top-74 {
  top: 18.5rem !important;
}

.right-74 {
  right: 18.5rem !important;
}

.bottom-74 {
  bottom: 18.5rem !important;
}

.left-74 {
  left: 18.5rem !important;
}

.-top-74 {
  top: -18.5rem !important;
}

.-right-74 {
  right: -18.5rem !important;
}

.-bottom-74 {
  bottom: -18.5rem !important;
}

.-left-74 {
  left: -18.5rem !important;
}

.top-75 {
  top: 18.75rem !important;
}

.right-75 {
  right: 18.75rem !important;
}

.bottom-75 {
  bottom: 18.75rem !important;
}

.left-75 {
  left: 18.75rem !important;
}

.-top-75 {
  top: -18.75rem !important;
}

.-right-75 {
  right: -18.75rem !important;
}

.-bottom-75 {
  bottom: -18.75rem !important;
}

.-left-75 {
  left: -18.75rem !important;
}

.top-76 {
  top: 19rem !important;
}

.right-76 {
  right: 19rem !important;
}

.bottom-76 {
  bottom: 19rem !important;
}

.left-76 {
  left: 19rem !important;
}

.-top-76 {
  top: -19rem !important;
}

.-right-76 {
  right: -19rem !important;
}

.-bottom-76 {
  bottom: -19rem !important;
}

.-left-76 {
  left: -19rem !important;
}

.top-77 {
  top: 19.25rem !important;
}

.right-77 {
  right: 19.25rem !important;
}

.bottom-77 {
  bottom: 19.25rem !important;
}

.left-77 {
  left: 19.25rem !important;
}

.-top-77 {
  top: -19.25rem !important;
}

.-right-77 {
  right: -19.25rem !important;
}

.-bottom-77 {
  bottom: -19.25rem !important;
}

.-left-77 {
  left: -19.25rem !important;
}

.top-78 {
  top: 19.5rem !important;
}

.right-78 {
  right: 19.5rem !important;
}

.bottom-78 {
  bottom: 19.5rem !important;
}

.left-78 {
  left: 19.5rem !important;
}

.-top-78 {
  top: -19.5rem !important;
}

.-right-78 {
  right: -19.5rem !important;
}

.-bottom-78 {
  bottom: -19.5rem !important;
}

.-left-78 {
  left: -19.5rem !important;
}

.top-79 {
  top: 19.75rem !important;
}

.right-79 {
  right: 19.75rem !important;
}

.bottom-79 {
  bottom: 19.75rem !important;
}

.left-79 {
  left: 19.75rem !important;
}

.-top-79 {
  top: -19.75rem !important;
}

.-right-79 {
  right: -19.75rem !important;
}

.-bottom-79 {
  bottom: -19.75rem !important;
}

.-left-79 {
  left: -19.75rem !important;
}

.top-80 {
  top: 20rem !important;
}

.right-80 {
  right: 20rem !important;
}

.bottom-80 {
  bottom: 20rem !important;
}

.left-80 {
  left: 20rem !important;
}

.-top-80 {
  top: -20rem !important;
}

.-right-80 {
  right: -20rem !important;
}

.-bottom-80 {
  bottom: -20rem !important;
}

.-left-80 {
  left: -20rem !important;
}

.top-81 {
  top: 20.25rem !important;
}

.right-81 {
  right: 20.25rem !important;
}

.bottom-81 {
  bottom: 20.25rem !important;
}

.left-81 {
  left: 20.25rem !important;
}

.-top-81 {
  top: -20.25rem !important;
}

.-right-81 {
  right: -20.25rem !important;
}

.-bottom-81 {
  bottom: -20.25rem !important;
}

.-left-81 {
  left: -20.25rem !important;
}

.top-82 {
  top: 20.5rem !important;
}

.right-82 {
  right: 20.5rem !important;
}

.bottom-82 {
  bottom: 20.5rem !important;
}

.left-82 {
  left: 20.5rem !important;
}

.-top-82 {
  top: -20.5rem !important;
}

.-right-82 {
  right: -20.5rem !important;
}

.-bottom-82 {
  bottom: -20.5rem !important;
}

.-left-82 {
  left: -20.5rem !important;
}

.top-83 {
  top: 20.75rem !important;
}

.right-83 {
  right: 20.75rem !important;
}

.bottom-83 {
  bottom: 20.75rem !important;
}

.left-83 {
  left: 20.75rem !important;
}

.-top-83 {
  top: -20.75rem !important;
}

.-right-83 {
  right: -20.75rem !important;
}

.-bottom-83 {
  bottom: -20.75rem !important;
}

.-left-83 {
  left: -20.75rem !important;
}

.top-84 {
  top: 21rem !important;
}

.right-84 {
  right: 21rem !important;
}

.bottom-84 {
  bottom: 21rem !important;
}

.left-84 {
  left: 21rem !important;
}

.-top-84 {
  top: -21rem !important;
}

.-right-84 {
  right: -21rem !important;
}

.-bottom-84 {
  bottom: -21rem !important;
}

.-left-84 {
  left: -21rem !important;
}

.top-85 {
  top: 21.25rem !important;
}

.right-85 {
  right: 21.25rem !important;
}

.bottom-85 {
  bottom: 21.25rem !important;
}

.left-85 {
  left: 21.25rem !important;
}

.-top-85 {
  top: -21.25rem !important;
}

.-right-85 {
  right: -21.25rem !important;
}

.-bottom-85 {
  bottom: -21.25rem !important;
}

.-left-85 {
  left: -21.25rem !important;
}

.top-86 {
  top: 21.5rem !important;
}

.right-86 {
  right: 21.5rem !important;
}

.bottom-86 {
  bottom: 21.5rem !important;
}

.left-86 {
  left: 21.5rem !important;
}

.-top-86 {
  top: -21.5rem !important;
}

.-right-86 {
  right: -21.5rem !important;
}

.-bottom-86 {
  bottom: -21.5rem !important;
}

.-left-86 {
  left: -21.5rem !important;
}

.top-87 {
  top: 21.75rem !important;
}

.right-87 {
  right: 21.75rem !important;
}

.bottom-87 {
  bottom: 21.75rem !important;
}

.left-87 {
  left: 21.75rem !important;
}

.-top-87 {
  top: -21.75rem !important;
}

.-right-87 {
  right: -21.75rem !important;
}

.-bottom-87 {
  bottom: -21.75rem !important;
}

.-left-87 {
  left: -21.75rem !important;
}

.top-88 {
  top: 22rem !important;
}

.right-88 {
  right: 22rem !important;
}

.bottom-88 {
  bottom: 22rem !important;
}

.left-88 {
  left: 22rem !important;
}

.-top-88 {
  top: -22rem !important;
}

.-right-88 {
  right: -22rem !important;
}

.-bottom-88 {
  bottom: -22rem !important;
}

.-left-88 {
  left: -22rem !important;
}

.top-89 {
  top: 22.25rem !important;
}

.right-89 {
  right: 22.25rem !important;
}

.bottom-89 {
  bottom: 22.25rem !important;
}

.left-89 {
  left: 22.25rem !important;
}

.-top-89 {
  top: -22.25rem !important;
}

.-right-89 {
  right: -22.25rem !important;
}

.-bottom-89 {
  bottom: -22.25rem !important;
}

.-left-89 {
  left: -22.25rem !important;
}

.top-90 {
  top: 22.5rem !important;
}

.right-90 {
  right: 22.5rem !important;
}

.bottom-90 {
  bottom: 22.5rem !important;
}

.left-90 {
  left: 22.5rem !important;
}

.-top-90 {
  top: -22.5rem !important;
}

.-right-90 {
  right: -22.5rem !important;
}

.-bottom-90 {
  bottom: -22.5rem !important;
}

.-left-90 {
  left: -22.5rem !important;
}

.top-91 {
  top: 22.75rem !important;
}

.right-91 {
  right: 22.75rem !important;
}

.bottom-91 {
  bottom: 22.75rem !important;
}

.left-91 {
  left: 22.75rem !important;
}

.-top-91 {
  top: -22.75rem !important;
}

.-right-91 {
  right: -22.75rem !important;
}

.-bottom-91 {
  bottom: -22.75rem !important;
}

.-left-91 {
  left: -22.75rem !important;
}

.top-92 {
  top: 23rem !important;
}

.right-92 {
  right: 23rem !important;
}

.bottom-92 {
  bottom: 23rem !important;
}

.left-92 {
  left: 23rem !important;
}

.-top-92 {
  top: -23rem !important;
}

.-right-92 {
  right: -23rem !important;
}

.-bottom-92 {
  bottom: -23rem !important;
}

.-left-92 {
  left: -23rem !important;
}

.top-93 {
  top: 23.25rem !important;
}

.right-93 {
  right: 23.25rem !important;
}

.bottom-93 {
  bottom: 23.25rem !important;
}

.left-93 {
  left: 23.25rem !important;
}

.-top-93 {
  top: -23.25rem !important;
}

.-right-93 {
  right: -23.25rem !important;
}

.-bottom-93 {
  bottom: -23.25rem !important;
}

.-left-93 {
  left: -23.25rem !important;
}

.top-94 {
  top: 23.5rem !important;
}

.right-94 {
  right: 23.5rem !important;
}

.bottom-94 {
  bottom: 23.5rem !important;
}

.left-94 {
  left: 23.5rem !important;
}

.-top-94 {
  top: -23.5rem !important;
}

.-right-94 {
  right: -23.5rem !important;
}

.-bottom-94 {
  bottom: -23.5rem !important;
}

.-left-94 {
  left: -23.5rem !important;
}

.top-95 {
  top: 23.75rem !important;
}

.right-95 {
  right: 23.75rem !important;
}

.bottom-95 {
  bottom: 23.75rem !important;
}

.left-95 {
  left: 23.75rem !important;
}

.-top-95 {
  top: -23.75rem !important;
}

.-right-95 {
  right: -23.75rem !important;
}

.-bottom-95 {
  bottom: -23.75rem !important;
}

.-left-95 {
  left: -23.75rem !important;
}

.top-96 {
  top: 24rem !important;
}

.right-96 {
  right: 24rem !important;
}

.bottom-96 {
  bottom: 24rem !important;
}

.left-96 {
  left: 24rem !important;
}

.-top-96 {
  top: -24rem !important;
}

.-right-96 {
  right: -24rem !important;
}

.-bottom-96 {
  bottom: -24rem !important;
}

.-left-96 {
  left: -24rem !important;
}

.top-97 {
  top: 24.25rem !important;
}

.right-97 {
  right: 24.25rem !important;
}

.bottom-97 {
  bottom: 24.25rem !important;
}

.left-97 {
  left: 24.25rem !important;
}

.-top-97 {
  top: -24.25rem !important;
}

.-right-97 {
  right: -24.25rem !important;
}

.-bottom-97 {
  bottom: -24.25rem !important;
}

.-left-97 {
  left: -24.25rem !important;
}

.top-98 {
  top: 24.5rem !important;
}

.right-98 {
  right: 24.5rem !important;
}

.bottom-98 {
  bottom: 24.5rem !important;
}

.left-98 {
  left: 24.5rem !important;
}

.-top-98 {
  top: -24.5rem !important;
}

.-right-98 {
  right: -24.5rem !important;
}

.-bottom-98 {
  bottom: -24.5rem !important;
}

.-left-98 {
  left: -24.5rem !important;
}

.top-99 {
  top: 24.75rem !important;
}

.right-99 {
  right: 24.75rem !important;
}

.bottom-99 {
  bottom: 24.75rem !important;
}

.left-99 {
  left: 24.75rem !important;
}

.-top-99 {
  top: -24.75rem !important;
}

.-right-99 {
  right: -24.75rem !important;
}

.-bottom-99 {
  bottom: -24.75rem !important;
}

.-left-99 {
  left: -24.75rem !important;
}

.top-100 {
  top: 25rem !important;
}

.right-100 {
  right: 25rem !important;
}

.bottom-100 {
  bottom: 25rem !important;
}

.left-100 {
  left: 25rem !important;
}

.-top-100 {
  top: -25rem !important;
}

.-right-100 {
  right: -25rem !important;
}

.-bottom-100 {
  bottom: -25rem !important;
}

.-left-100 {
  left: -25rem !important;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.-z-1 {
  z-index: -1;
}

.z-2 {
  z-index: 2;
}

.-z-2 {
  z-index: -2;
}

.z-3 {
  z-index: 3;
}

.-z-3 {
  z-index: -3;
}

.z-4 {
  z-index: 4;
}

.-z-4 {
  z-index: -4;
}

.z-5 {
  z-index: 5;
}

.-z-5 {
  z-index: -5;
}

.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-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.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;
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.place-items-center {
  place-items: center;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.order-first {
  order: -9999;
}

.order-last {
  order: 9999;
}

.order-none {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-start-1 {
  grid-column-start: 1;
}

.col-end-1 {
  grid-column-end: 1;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-start-2 {
  grid-column-start: 2;
}

.col-end-2 {
  grid-column-end: 2;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.col-start-3 {
  grid-column-start: 3;
}

.col-end-3 {
  grid-column-end: 3;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-start-4 {
  grid-column-start: 4;
}

.col-end-4 {
  grid-column-end: 4;
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.col-span-5 {
  grid-column: span 5 / span 5;
}

.col-start-5 {
  grid-column-start: 5;
}

.col-end-5 {
  grid-column-end: 5;
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.col-start-6 {
  grid-column-start: 6;
}

.col-end-6 {
  grid-column-end: 6;
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.col-span-7 {
  grid-column: span 7 / span 7;
}

.col-start-7 {
  grid-column-start: 7;
}

.col-end-7 {
  grid-column-end: 7;
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.col-span-8 {
  grid-column: span 8 / span 8;
}

.col-start-8 {
  grid-column-start: 8;
}

.col-end-8 {
  grid-column-end: 8;
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.col-span-9 {
  grid-column: span 9 / span 9;
}

.col-start-9 {
  grid-column-start: 9;
}

.col-end-9 {
  grid-column-end: 9;
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.col-span-10 {
  grid-column: span 10 / span 10;
}

.col-start-10 {
  grid-column-start: 10;
}

.col-end-10 {
  grid-column-end: 10;
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.col-span-11 {
  grid-column: span 11 / span 11;
}

.col-start-11 {
  grid-column-start: 11;
}

.col-end-11 {
  grid-column-end: 11;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.col-start-12 {
  grid-column-start: 12;
}

.col-end-12 {
  grid-column-end: 12;
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.row-span-1 {
  grid-row: span 1 / span 1;
}

.row-start-1 {
  grid-row-start: 1;
}

.row-end-1 {
  grid-row-end: 1;
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.row-span-2 {
  grid-row: span 2 / span 2;
}

.row-start-2 {
  grid-row-start: 2;
}

.row-end-2 {
  grid-row-end: 2;
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.row-span-3 {
  grid-row: span 3 / span 3;
}

.row-start-3 {
  grid-row-start: 3;
}

.row-end-3 {
  grid-row-end: 3;
}

.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.row-span-4 {
  grid-row: span 4 / span 4;
}

.row-start-4 {
  grid-row-start: 4;
}

.row-end-4 {
  grid-row-end: 4;
}

.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.row-span-5 {
  grid-row: span 5 / span 5;
}

.row-start-5 {
  grid-row-start: 5;
}

.row-end-5 {
  grid-row-end: 5;
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.row-span-6 {
  grid-row: span 6 / span 6;
}

.row-start-6 {
  grid-row-start: 6;
}

.row-end-6 {
  grid-row-end: 6;
}

.grid-cols-none {
  grid-template-columns: none;
}

.grid-rows-none {
  grid-template-rows: none;
}

.col-span-full {
  grid-column: 1 / -1;
}

.row-span-full {
  grid-row: 1 / -1;
}

.col-start-auto {
  grid-column-start: auto;
}

.col-end-auto {
  grid-column-end: auto;
}

.row-start-auto {
  grid-row-start: auto;
}

.row-end-auto {
  grid-row-end: auto;
}

.grid-flow-row {
  grid-auto-flow: row;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-flow-row-dense {
  grid-auto-flow: row dense;
}

.grid-flow-column-dense {
  grid-auto-flow: column dense;
}

.gap-0 {
  gap: 0rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-9 {
  gap: 2.25rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-11 {
  gap: 2.75rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-13 {
  gap: 3.25rem;
}

.gap-14 {
  gap: 3.5rem;
}

.gap-15 {
  gap: 3.75rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-17 {
  gap: 4.25rem;
}

.gap-18 {
  gap: 4.5rem;
}

.gap-19 {
  gap: 4.75rem;
}

.gap-20 {
  gap: 5rem;
}

.gap-21 {
  gap: 5.25rem;
}

.gap-22 {
  gap: 5.5rem;
}

.gap-23 {
  gap: 5.75rem;
}

.gap-24 {
  gap: 6rem;
}

.gap-25 {
  gap: 6.25rem;
}

.gap-26 {
  gap: 6.5rem;
}

.gap-27 {
  gap: 6.75rem;
}

.gap-28 {
  gap: 7rem;
}

.gap-29 {
  gap: 7.25rem;
}

.gap-30 {
  gap: 7.5rem;
}

.gap-31 {
  gap: 7.75rem;
}

.gap-32 {
  gap: 8rem;
}

.gap-33 {
  gap: 8.25rem;
}

.gap-34 {
  gap: 8.5rem;
}

.gap-35 {
  gap: 8.75rem;
}

.gap-36 {
  gap: 9rem;
}

.gap-37 {
  gap: 9.25rem;
}

.gap-38 {
  gap: 9.5rem;
}

.gap-39 {
  gap: 9.75rem;
}

.gap-40 {
  gap: 10rem;
}

.gap-41 {
  gap: 10.25rem;
}

.gap-42 {
  gap: 10.5rem;
}

.gap-43 {
  gap: 10.75rem;
}

.gap-44 {
  gap: 11rem;
}

.gap-45 {
  gap: 11.25rem;
}

.gap-46 {
  gap: 11.5rem;
}

.gap-47 {
  gap: 11.75rem;
}

.gap-48 {
  gap: 12rem;
}

.gap-49 {
  gap: 12.25rem;
}

.gap-50 {
  gap: 12.5rem;
}

.gap-51 {
  gap: 12.75rem;
}

.gap-52 {
  gap: 13rem;
}

.gap-53 {
  gap: 13.25rem;
}

.gap-54 {
  gap: 13.5rem;
}

.gap-55 {
  gap: 13.75rem;
}

.gap-56 {
  gap: 14rem;
}

.gap-57 {
  gap: 14.25rem;
}

.gap-58 {
  gap: 14.5rem;
}

.gap-59 {
  gap: 14.75rem;
}

.gap-60 {
  gap: 15rem;
}

.gap-61 {
  gap: 15.25rem;
}

.gap-62 {
  gap: 15.5rem;
}

.gap-63 {
  gap: 15.75rem;
}

.gap-64 {
  gap: 16rem;
}

.gap-65 {
  gap: 16.25rem;
}

.gap-66 {
  gap: 16.5rem;
}

.gap-67 {
  gap: 16.75rem;
}

.gap-68 {
  gap: 17rem;
}

.gap-69 {
  gap: 17.25rem;
}

.gap-70 {
  gap: 17.5rem;
}

.gap-71 {
  gap: 17.75rem;
}

.gap-72 {
  gap: 18rem;
}

.gap-73 {
  gap: 18.25rem;
}

.gap-74 {
  gap: 18.5rem;
}

.gap-75 {
  gap: 18.75rem;
}

.gap-76 {
  gap: 19rem;
}

.gap-77 {
  gap: 19.25rem;
}

.gap-78 {
  gap: 19.5rem;
}

.gap-79 {
  gap: 19.75rem;
}

.gap-80 {
  gap: 20rem;
}

.gap-81 {
  gap: 20.25rem;
}

.gap-82 {
  gap: 20.5rem;
}

.gap-83 {
  gap: 20.75rem;
}

.gap-84 {
  gap: 21rem;
}

.gap-85 {
  gap: 21.25rem;
}

.gap-86 {
  gap: 21.5rem;
}

.gap-87 {
  gap: 21.75rem;
}

.gap-88 {
  gap: 22rem;
}

.gap-89 {
  gap: 22.25rem;
}

.gap-90 {
  gap: 22.5rem;
}

.gap-91 {
  gap: 22.75rem;
}

.gap-92 {
  gap: 23rem;
}

.gap-93 {
  gap: 23.25rem;
}

.gap-94 {
  gap: 23.5rem;
}

.gap-95 {
  gap: 23.75rem;
}

.gap-96 {
  gap: 24rem;
}

.gap-97 {
  gap: 24.25rem;
}

.gap-98 {
  gap: 24.5rem;
}

.gap-99 {
  gap: 24.75rem;
}

.gap-100 {
  gap: 25rem;
}

.p-0 {
  padding: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.m-0 {
  margin: 0rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.-mt-0 {
  margin-top: 0rem !important;
}

.-mb-0 {
  margin-bottom: 0rem !important;
}

.-ml-0 {
  margin-left: 0rem !important;
}

.-mr-0 {
  margin-right: 0rem !important;
}

.mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.space-x-0 > * + * {
  margin-left: 0rem !important;
}

.space-y-0 > * + * {
  margin-top: 0rem !important;
}

.-space-x-0 > * + * {
  margin-left: 0rem !important;
}

.-space-y-0 > * + * {
  margin-top: 0rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.-mt-1 {
  margin-top: -0.25rem !important;
}

.-mb-1 {
  margin-bottom: -0.25rem !important;
}

.-ml-1 {
  margin-left: -0.25rem !important;
}

.-mr-1 {
  margin-right: -0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.space-x-1 > * + * {
  margin-left: 0.25rem !important;
}

.space-y-1 > * + * {
  margin-top: 0.25rem !important;
}

.-space-x-1 > * + * {
  margin-left: -0.25rem !important;
}

.-space-y-1 > * + * {
  margin-top: -0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.-mt-2 {
  margin-top: -0.5rem !important;
}

.-mb-2 {
  margin-bottom: -0.5rem !important;
}

.-ml-2 {
  margin-left: -0.5rem !important;
}

.-mr-2 {
  margin-right: -0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.space-x-2 > * + * {
  margin-left: 0.5rem !important;
}

.space-y-2 > * + * {
  margin-top: 0.5rem !important;
}

.-space-x-2 > * + * {
  margin-left: -0.5rem !important;
}

.-space-y-2 > * + * {
  margin-top: -0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.-mt-3 {
  margin-top: -0.75rem !important;
}

.-mb-3 {
  margin-bottom: -0.75rem !important;
}

.-ml-3 {
  margin-left: -0.75rem !important;
}

.-mr-3 {
  margin-right: -0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.space-x-3 > * + * {
  margin-left: 0.75rem !important;
}

.space-y-3 > * + * {
  margin-top: 0.75rem !important;
}

.-space-x-3 > * + * {
  margin-left: -0.75rem !important;
}

.-space-y-3 > * + * {
  margin-top: -0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.-mt-4 {
  margin-top: -1rem !important;
}

.-mb-4 {
  margin-bottom: -1rem !important;
}

.-ml-4 {
  margin-left: -1rem !important;
}

.-mr-4 {
  margin-right: -1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.space-x-4 > * + * {
  margin-left: 1rem !important;
}

.space-y-4 > * + * {
  margin-top: 1rem !important;
}

.-space-x-4 > * + * {
  margin-left: -1rem !important;
}

.-space-y-4 > * + * {
  margin-top: -1rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.-mt-5 {
  margin-top: -1.25rem !important;
}

.-mb-5 {
  margin-bottom: -1.25rem !important;
}

.-ml-5 {
  margin-left: -1.25rem !important;
}

.-mr-5 {
  margin-right: -1.25rem !important;
}

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.space-x-5 > * + * {
  margin-left: 1.25rem !important;
}

.space-y-5 > * + * {
  margin-top: 1.25rem !important;
}

.-space-x-5 > * + * {
  margin-left: -1.25rem !important;
}

.-space-y-5 > * + * {
  margin-top: -1.25rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.-mt-6 {
  margin-top: -1.5rem !important;
}

.-mb-6 {
  margin-bottom: -1.5rem !important;
}

.-ml-6 {
  margin-left: -1.5rem !important;
}

.-mr-6 {
  margin-right: -1.5rem !important;
}

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.space-x-6 > * + * {
  margin-left: 1.5rem !important;
}

.space-y-6 > * + * {
  margin-top: 1.5rem !important;
}

.-space-x-6 > * + * {
  margin-left: -1.5rem !important;
}

.-space-y-6 > * + * {
  margin-top: -1.5rem !important;
}

.p-7 {
  padding: 1.75rem !important;
}

.pl-7 {
  padding-left: 1.75rem !important;
}

.pr-7 {
  padding-right: 1.75rem !important;
}

.pt-7 {
  padding-top: 1.75rem !important;
}

.pb-7 {
  padding-bottom: 1.75rem !important;
}

.px-7 {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

.py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.m-7 {
  margin: 1.75rem !important;
}

.mt-7 {
  margin-top: 1.75rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

.ml-7 {
  margin-left: 1.75rem !important;
}

.mr-7 {
  margin-right: 1.75rem !important;
}

.-mt-7 {
  margin-top: -1.75rem !important;
}

.-mb-7 {
  margin-bottom: -1.75rem !important;
}

.-ml-7 {
  margin-left: -1.75rem !important;
}

.-mr-7 {
  margin-right: -1.75rem !important;
}

.mx-7 {
  margin-left: 1.75rem !important;
  margin-right: 1.75rem !important;
}

.my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.space-x-7 > * + * {
  margin-left: 1.75rem !important;
}

.space-y-7 > * + * {
  margin-top: 1.75rem !important;
}

.-space-x-7 > * + * {
  margin-left: -1.75rem !important;
}

.-space-y-7 > * + * {
  margin-top: -1.75rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.-mt-8 {
  margin-top: -2rem !important;
}

.-mb-8 {
  margin-bottom: -2rem !important;
}

.-ml-8 {
  margin-left: -2rem !important;
}

.-mr-8 {
  margin-right: -2rem !important;
}

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.space-x-8 > * + * {
  margin-left: 2rem !important;
}

.space-y-8 > * + * {
  margin-top: 2rem !important;
}

.-space-x-8 > * + * {
  margin-left: -2rem !important;
}

.-space-y-8 > * + * {
  margin-top: -2rem !important;
}

.p-9 {
  padding: 2.25rem !important;
}

.pl-9 {
  padding-left: 2.25rem !important;
}

.pr-9 {
  padding-right: 2.25rem !important;
}

.pt-9 {
  padding-top: 2.25rem !important;
}

.pb-9 {
  padding-bottom: 2.25rem !important;
}

.px-9 {
  padding-left: 2.25rem !important;
  padding-right: 2.25rem !important;
}

.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.m-9 {
  margin: 2.25rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.ml-9 {
  margin-left: 2.25rem !important;
}

.mr-9 {
  margin-right: 2.25rem !important;
}

.-mt-9 {
  margin-top: -2.25rem !important;
}

.-mb-9 {
  margin-bottom: -2.25rem !important;
}

.-ml-9 {
  margin-left: -2.25rem !important;
}

.-mr-9 {
  margin-right: -2.25rem !important;
}

.mx-9 {
  margin-left: 2.25rem !important;
  margin-right: 2.25rem !important;
}

.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.space-x-9 > * + * {
  margin-left: 2.25rem !important;
}

.space-y-9 > * + * {
  margin-top: 2.25rem !important;
}

.-space-x-9 > * + * {
  margin-left: -2.25rem !important;
}

.-space-y-9 > * + * {
  margin-top: -2.25rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.pl-10 {
  padding-left: 2.5rem !important;
}

.pr-10 {
  padding-right: 2.5rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.-mt-10 {
  margin-top: -2.5rem !important;
}

.-mb-10 {
  margin-bottom: -2.5rem !important;
}

.-ml-10 {
  margin-left: -2.5rem !important;
}

.-mr-10 {
  margin-right: -2.5rem !important;
}

.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.space-x-10 > * + * {
  margin-left: 2.5rem !important;
}

.space-y-10 > * + * {
  margin-top: 2.5rem !important;
}

.-space-x-10 > * + * {
  margin-left: -2.5rem !important;
}

.-space-y-10 > * + * {
  margin-top: -2.5rem !important;
}

.p-11 {
  padding: 2.75rem !important;
}

.pl-11 {
  padding-left: 2.75rem !important;
}

.pr-11 {
  padding-right: 2.75rem !important;
}

.pt-11 {
  padding-top: 2.75rem !important;
}

.pb-11 {
  padding-bottom: 2.75rem !important;
}

.px-11 {
  padding-left: 2.75rem !important;
  padding-right: 2.75rem !important;
}

.py-11 {
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}

.m-11 {
  margin: 2.75rem !important;
}

.mt-11 {
  margin-top: 2.75rem !important;
}

.mb-11 {
  margin-bottom: 2.75rem !important;
}

.ml-11 {
  margin-left: 2.75rem !important;
}

.mr-11 {
  margin-right: 2.75rem !important;
}

.-mt-11 {
  margin-top: -2.75rem !important;
}

.-mb-11 {
  margin-bottom: -2.75rem !important;
}

.-ml-11 {
  margin-left: -2.75rem !important;
}

.-mr-11 {
  margin-right: -2.75rem !important;
}

.mx-11 {
  margin-left: 2.75rem !important;
  margin-right: 2.75rem !important;
}

.my-11 {
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}

.space-x-11 > * + * {
  margin-left: 2.75rem !important;
}

.space-y-11 > * + * {
  margin-top: 2.75rem !important;
}

.-space-x-11 > * + * {
  margin-left: -2.75rem !important;
}

.-space-y-11 > * + * {
  margin-top: -2.75rem !important;
}

.p-12 {
  padding: 3rem !important;
}

.pl-12 {
  padding-left: 3rem !important;
}

.pr-12 {
  padding-right: 3rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.m-12 {
  margin: 3rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.-mt-12 {
  margin-top: -3rem !important;
}

.-mb-12 {
  margin-bottom: -3rem !important;
}

.-ml-12 {
  margin-left: -3rem !important;
}

.-mr-12 {
  margin-right: -3rem !important;
}

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.space-x-12 > * + * {
  margin-left: 3rem !important;
}

.space-y-12 > * + * {
  margin-top: 3rem !important;
}

.-space-x-12 > * + * {
  margin-left: -3rem !important;
}

.-space-y-12 > * + * {
  margin-top: -3rem !important;
}

.p-13 {
  padding: 3.25rem !important;
}

.pl-13 {
  padding-left: 3.25rem !important;
}

.pr-13 {
  padding-right: 3.25rem !important;
}

.pt-13 {
  padding-top: 3.25rem !important;
}

.pb-13 {
  padding-bottom: 3.25rem !important;
}

.px-13 {
  padding-left: 3.25rem !important;
  padding-right: 3.25rem !important;
}

.py-13 {
  padding-top: 3.25rem !important;
  padding-bottom: 3.25rem !important;
}

.m-13 {
  margin: 3.25rem !important;
}

.mt-13 {
  margin-top: 3.25rem !important;
}

.mb-13 {
  margin-bottom: 3.25rem !important;
}

.ml-13 {
  margin-left: 3.25rem !important;
}

.mr-13 {
  margin-right: 3.25rem !important;
}

.-mt-13 {
  margin-top: -3.25rem !important;
}

.-mb-13 {
  margin-bottom: -3.25rem !important;
}

.-ml-13 {
  margin-left: -3.25rem !important;
}

.-mr-13 {
  margin-right: -3.25rem !important;
}

.mx-13 {
  margin-left: 3.25rem !important;
  margin-right: 3.25rem !important;
}

.my-13 {
  margin-top: 3.25rem !important;
  margin-bottom: 3.25rem !important;
}

.space-x-13 > * + * {
  margin-left: 3.25rem !important;
}

.space-y-13 > * + * {
  margin-top: 3.25rem !important;
}

.-space-x-13 > * + * {
  margin-left: -3.25rem !important;
}

.-space-y-13 > * + * {
  margin-top: -3.25rem !important;
}

.p-14 {
  padding: 3.5rem !important;
}

.pl-14 {
  padding-left: 3.5rem !important;
}

.pr-14 {
  padding-right: 3.5rem !important;
}

.pt-14 {
  padding-top: 3.5rem !important;
}

.pb-14 {
  padding-bottom: 3.5rem !important;
}

.px-14 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.m-14 {
  margin: 3.5rem !important;
}

.mt-14 {
  margin-top: 3.5rem !important;
}

.mb-14 {
  margin-bottom: 3.5rem !important;
}

.ml-14 {
  margin-left: 3.5rem !important;
}

.mr-14 {
  margin-right: 3.5rem !important;
}

.-mt-14 {
  margin-top: -3.5rem !important;
}

.-mb-14 {
  margin-bottom: -3.5rem !important;
}

.-ml-14 {
  margin-left: -3.5rem !important;
}

.-mr-14 {
  margin-right: -3.5rem !important;
}

.mx-14 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

.my-14 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.space-x-14 > * + * {
  margin-left: 3.5rem !important;
}

.space-y-14 > * + * {
  margin-top: 3.5rem !important;
}

.-space-x-14 > * + * {
  margin-left: -3.5rem !important;
}

.-space-y-14 > * + * {
  margin-top: -3.5rem !important;
}

.p-15 {
  padding: 3.75rem !important;
}

.pl-15 {
  padding-left: 3.75rem !important;
}

.pr-15 {
  padding-right: 3.75rem !important;
}

.pt-15 {
  padding-top: 3.75rem !important;
}

.pb-15 {
  padding-bottom: 3.75rem !important;
}

.px-15 {
  padding-left: 3.75rem !important;
  padding-right: 3.75rem !important;
}

.py-15 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.m-15 {
  margin: 3.75rem !important;
}

.mt-15 {
  margin-top: 3.75rem !important;
}

.mb-15 {
  margin-bottom: 3.75rem !important;
}

.ml-15 {
  margin-left: 3.75rem !important;
}

.mr-15 {
  margin-right: 3.75rem !important;
}

.-mt-15 {
  margin-top: -3.75rem !important;
}

.-mb-15 {
  margin-bottom: -3.75rem !important;
}

.-ml-15 {
  margin-left: -3.75rem !important;
}

.-mr-15 {
  margin-right: -3.75rem !important;
}

.mx-15 {
  margin-left: 3.75rem !important;
  margin-right: 3.75rem !important;
}

.my-15 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.space-x-15 > * + * {
  margin-left: 3.75rem !important;
}

.space-y-15 > * + * {
  margin-top: 3.75rem !important;
}

.-space-x-15 > * + * {
  margin-left: -3.75rem !important;
}

.-space-y-15 > * + * {
  margin-top: -3.75rem !important;
}

.p-16 {
  padding: 4rem !important;
}

.pl-16 {
  padding-left: 4rem !important;
}

.pr-16 {
  padding-right: 4rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.m-16 {
  margin: 4rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.ml-16 {
  margin-left: 4rem !important;
}

.mr-16 {
  margin-right: 4rem !important;
}

.-mt-16 {
  margin-top: -4rem !important;
}

.-mb-16 {
  margin-bottom: -4rem !important;
}

.-ml-16 {
  margin-left: -4rem !important;
}

.-mr-16 {
  margin-right: -4rem !important;
}

.mx-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.space-x-16 > * + * {
  margin-left: 4rem !important;
}

.space-y-16 > * + * {
  margin-top: 4rem !important;
}

.-space-x-16 > * + * {
  margin-left: -4rem !important;
}

.-space-y-16 > * + * {
  margin-top: -4rem !important;
}

.p-17 {
  padding: 4.25rem !important;
}

.pl-17 {
  padding-left: 4.25rem !important;
}

.pr-17 {
  padding-right: 4.25rem !important;
}

.pt-17 {
  padding-top: 4.25rem !important;
}

.pb-17 {
  padding-bottom: 4.25rem !important;
}

.px-17 {
  padding-left: 4.25rem !important;
  padding-right: 4.25rem !important;
}

.py-17 {
  padding-top: 4.25rem !important;
  padding-bottom: 4.25rem !important;
}

.m-17 {
  margin: 4.25rem !important;
}

.mt-17 {
  margin-top: 4.25rem !important;
}

.mb-17 {
  margin-bottom: 4.25rem !important;
}

.ml-17 {
  margin-left: 4.25rem !important;
}

.mr-17 {
  margin-right: 4.25rem !important;
}

.-mt-17 {
  margin-top: -4.25rem !important;
}

.-mb-17 {
  margin-bottom: -4.25rem !important;
}

.-ml-17 {
  margin-left: -4.25rem !important;
}

.-mr-17 {
  margin-right: -4.25rem !important;
}

.mx-17 {
  margin-left: 4.25rem !important;
  margin-right: 4.25rem !important;
}

.my-17 {
  margin-top: 4.25rem !important;
  margin-bottom: 4.25rem !important;
}

.space-x-17 > * + * {
  margin-left: 4.25rem !important;
}

.space-y-17 > * + * {
  margin-top: 4.25rem !important;
}

.-space-x-17 > * + * {
  margin-left: -4.25rem !important;
}

.-space-y-17 > * + * {
  margin-top: -4.25rem !important;
}

.p-18 {
  padding: 4.5rem !important;
}

.pl-18 {
  padding-left: 4.5rem !important;
}

.pr-18 {
  padding-right: 4.5rem !important;
}

.pt-18 {
  padding-top: 4.5rem !important;
}

.pb-18 {
  padding-bottom: 4.5rem !important;
}

.px-18 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}

.py-18 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.m-18 {
  margin: 4.5rem !important;
}

.mt-18 {
  margin-top: 4.5rem !important;
}

.mb-18 {
  margin-bottom: 4.5rem !important;
}

.ml-18 {
  margin-left: 4.5rem !important;
}

.mr-18 {
  margin-right: 4.5rem !important;
}

.-mt-18 {
  margin-top: -4.5rem !important;
}

.-mb-18 {
  margin-bottom: -4.5rem !important;
}

.-ml-18 {
  margin-left: -4.5rem !important;
}

.-mr-18 {
  margin-right: -4.5rem !important;
}

.mx-18 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

.my-18 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.space-x-18 > * + * {
  margin-left: 4.5rem !important;
}

.space-y-18 > * + * {
  margin-top: 4.5rem !important;
}

.-space-x-18 > * + * {
  margin-left: -4.5rem !important;
}

.-space-y-18 > * + * {
  margin-top: -4.5rem !important;
}

.p-19 {
  padding: 4.75rem !important;
}

.pl-19 {
  padding-left: 4.75rem !important;
}

.pr-19 {
  padding-right: 4.75rem !important;
}

.pt-19 {
  padding-top: 4.75rem !important;
}

.pb-19 {
  padding-bottom: 4.75rem !important;
}

.px-19 {
  padding-left: 4.75rem !important;
  padding-right: 4.75rem !important;
}

.py-19 {
  padding-top: 4.75rem !important;
  padding-bottom: 4.75rem !important;
}

.m-19 {
  margin: 4.75rem !important;
}

.mt-19 {
  margin-top: 4.75rem !important;
}

.mb-19 {
  margin-bottom: 4.75rem !important;
}

.ml-19 {
  margin-left: 4.75rem !important;
}

.mr-19 {
  margin-right: 4.75rem !important;
}

.-mt-19 {
  margin-top: -4.75rem !important;
}

.-mb-19 {
  margin-bottom: -4.75rem !important;
}

.-ml-19 {
  margin-left: -4.75rem !important;
}

.-mr-19 {
  margin-right: -4.75rem !important;
}

.mx-19 {
  margin-left: 4.75rem !important;
  margin-right: 4.75rem !important;
}

.my-19 {
  margin-top: 4.75rem !important;
  margin-bottom: 4.75rem !important;
}

.space-x-19 > * + * {
  margin-left: 4.75rem !important;
}

.space-y-19 > * + * {
  margin-top: 4.75rem !important;
}

.-space-x-19 > * + * {
  margin-left: -4.75rem !important;
}

.-space-y-19 > * + * {
  margin-top: -4.75rem !important;
}

.p-20 {
  padding: 5rem !important;
}

.pl-20 {
  padding-left: 5rem !important;
}

.pr-20 {
  padding-right: 5rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.px-20 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.m-20 {
  margin: 5rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.ml-20 {
  margin-left: 5rem !important;
}

.mr-20 {
  margin-right: 5rem !important;
}

.-mt-20 {
  margin-top: -5rem !important;
}

.-mb-20 {
  margin-bottom: -5rem !important;
}

.-ml-20 {
  margin-left: -5rem !important;
}

.-mr-20 {
  margin-right: -5rem !important;
}

.mx-20 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.space-x-20 > * + * {
  margin-left: 5rem !important;
}

.space-y-20 > * + * {
  margin-top: 5rem !important;
}

.-space-x-20 > * + * {
  margin-left: -5rem !important;
}

.-space-y-20 > * + * {
  margin-top: -5rem !important;
}

.p-21 {
  padding: 5.25rem !important;
}

.pl-21 {
  padding-left: 5.25rem !important;
}

.pr-21 {
  padding-right: 5.25rem !important;
}

.pt-21 {
  padding-top: 5.25rem !important;
}

.pb-21 {
  padding-bottom: 5.25rem !important;
}

.px-21 {
  padding-left: 5.25rem !important;
  padding-right: 5.25rem !important;
}

.py-21 {
  padding-top: 5.25rem !important;
  padding-bottom: 5.25rem !important;
}

.m-21 {
  margin: 5.25rem !important;
}

.mt-21 {
  margin-top: 5.25rem !important;
}

.mb-21 {
  margin-bottom: 5.25rem !important;
}

.ml-21 {
  margin-left: 5.25rem !important;
}

.mr-21 {
  margin-right: 5.25rem !important;
}

.-mt-21 {
  margin-top: -5.25rem !important;
}

.-mb-21 {
  margin-bottom: -5.25rem !important;
}

.-ml-21 {
  margin-left: -5.25rem !important;
}

.-mr-21 {
  margin-right: -5.25rem !important;
}

.mx-21 {
  margin-left: 5.25rem !important;
  margin-right: 5.25rem !important;
}

.my-21 {
  margin-top: 5.25rem !important;
  margin-bottom: 5.25rem !important;
}

.space-x-21 > * + * {
  margin-left: 5.25rem !important;
}

.space-y-21 > * + * {
  margin-top: 5.25rem !important;
}

.-space-x-21 > * + * {
  margin-left: -5.25rem !important;
}

.-space-y-21 > * + * {
  margin-top: -5.25rem !important;
}

.p-22 {
  padding: 5.5rem !important;
}

.pl-22 {
  padding-left: 5.5rem !important;
}

.pr-22 {
  padding-right: 5.5rem !important;
}

.pt-22 {
  padding-top: 5.5rem !important;
}

.pb-22 {
  padding-bottom: 5.5rem !important;
}

.px-22 {
  padding-left: 5.5rem !important;
  padding-right: 5.5rem !important;
}

.py-22 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.m-22 {
  margin: 5.5rem !important;
}

.mt-22 {
  margin-top: 5.5rem !important;
}

.mb-22 {
  margin-bottom: 5.5rem !important;
}

.ml-22 {
  margin-left: 5.5rem !important;
}

.mr-22 {
  margin-right: 5.5rem !important;
}

.-mt-22 {
  margin-top: -5.5rem !important;
}

.-mb-22 {
  margin-bottom: -5.5rem !important;
}

.-ml-22 {
  margin-left: -5.5rem !important;
}

.-mr-22 {
  margin-right: -5.5rem !important;
}

.mx-22 {
  margin-left: 5.5rem !important;
  margin-right: 5.5rem !important;
}

.my-22 {
  margin-top: 5.5rem !important;
  margin-bottom: 5.5rem !important;
}

.space-x-22 > * + * {
  margin-left: 5.5rem !important;
}

.space-y-22 > * + * {
  margin-top: 5.5rem !important;
}

.-space-x-22 > * + * {
  margin-left: -5.5rem !important;
}

.-space-y-22 > * + * {
  margin-top: -5.5rem !important;
}

.p-23 {
  padding: 5.75rem !important;
}

.pl-23 {
  padding-left: 5.75rem !important;
}

.pr-23 {
  padding-right: 5.75rem !important;
}

.pt-23 {
  padding-top: 5.75rem !important;
}

.pb-23 {
  padding-bottom: 5.75rem !important;
}

.px-23 {
  padding-left: 5.75rem !important;
  padding-right: 5.75rem !important;
}

.py-23 {
  padding-top: 5.75rem !important;
  padding-bottom: 5.75rem !important;
}

.m-23 {
  margin: 5.75rem !important;
}

.mt-23 {
  margin-top: 5.75rem !important;
}

.mb-23 {
  margin-bottom: 5.75rem !important;
}

.ml-23 {
  margin-left: 5.75rem !important;
}

.mr-23 {
  margin-right: 5.75rem !important;
}

.-mt-23 {
  margin-top: -5.75rem !important;
}

.-mb-23 {
  margin-bottom: -5.75rem !important;
}

.-ml-23 {
  margin-left: -5.75rem !important;
}

.-mr-23 {
  margin-right: -5.75rem !important;
}

.mx-23 {
  margin-left: 5.75rem !important;
  margin-right: 5.75rem !important;
}

.my-23 {
  margin-top: 5.75rem !important;
  margin-bottom: 5.75rem !important;
}

.space-x-23 > * + * {
  margin-left: 5.75rem !important;
}

.space-y-23 > * + * {
  margin-top: 5.75rem !important;
}

.-space-x-23 > * + * {
  margin-left: -5.75rem !important;
}

.-space-y-23 > * + * {
  margin-top: -5.75rem !important;
}

.p-24 {
  padding: 6rem !important;
}

.pl-24 {
  padding-left: 6rem !important;
}

.pr-24 {
  padding-right: 6rem !important;
}

.pt-24 {
  padding-top: 6rem !important;
}

.pb-24 {
  padding-bottom: 6rem !important;
}

.px-24 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py-24 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.m-24 {
  margin: 6rem !important;
}

.mt-24 {
  margin-top: 6rem !important;
}

.mb-24 {
  margin-bottom: 6rem !important;
}

.ml-24 {
  margin-left: 6rem !important;
}

.mr-24 {
  margin-right: 6rem !important;
}

.-mt-24 {
  margin-top: -6rem !important;
}

.-mb-24 {
  margin-bottom: -6rem !important;
}

.-ml-24 {
  margin-left: -6rem !important;
}

.-mr-24 {
  margin-right: -6rem !important;
}

.mx-24 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-24 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.space-x-24 > * + * {
  margin-left: 6rem !important;
}

.space-y-24 > * + * {
  margin-top: 6rem !important;
}

.-space-x-24 > * + * {
  margin-left: -6rem !important;
}

.-space-y-24 > * + * {
  margin-top: -6rem !important;
}

.p-25 {
  padding: 6.25rem !important;
}

.pl-25 {
  padding-left: 6.25rem !important;
}

.pr-25 {
  padding-right: 6.25rem !important;
}

.pt-25 {
  padding-top: 6.25rem !important;
}

.pb-25 {
  padding-bottom: 6.25rem !important;
}

.px-25 {
  padding-left: 6.25rem !important;
  padding-right: 6.25rem !important;
}

.py-25 {
  padding-top: 6.25rem !important;
  padding-bottom: 6.25rem !important;
}

.m-25 {
  margin: 6.25rem !important;
}

.mt-25 {
  margin-top: 6.25rem !important;
}

.mb-25 {
  margin-bottom: 6.25rem !important;
}

.ml-25 {
  margin-left: 6.25rem !important;
}

.mr-25 {
  margin-right: 6.25rem !important;
}

.-mt-25 {
  margin-top: -6.25rem !important;
}

.-mb-25 {
  margin-bottom: -6.25rem !important;
}

.-ml-25 {
  margin-left: -6.25rem !important;
}

.-mr-25 {
  margin-right: -6.25rem !important;
}

.mx-25 {
  margin-left: 6.25rem !important;
  margin-right: 6.25rem !important;
}

.my-25 {
  margin-top: 6.25rem !important;
  margin-bottom: 6.25rem !important;
}

.space-x-25 > * + * {
  margin-left: 6.25rem !important;
}

.space-y-25 > * + * {
  margin-top: 6.25rem !important;
}

.-space-x-25 > * + * {
  margin-left: -6.25rem !important;
}

.-space-y-25 > * + * {
  margin-top: -6.25rem !important;
}

.p-26 {
  padding: 6.5rem !important;
}

.pl-26 {
  padding-left: 6.5rem !important;
}

.pr-26 {
  padding-right: 6.5rem !important;
}

.pt-26 {
  padding-top: 6.5rem !important;
}

.pb-26 {
  padding-bottom: 6.5rem !important;
}

.px-26 {
  padding-left: 6.5rem !important;
  padding-right: 6.5rem !important;
}

.py-26 {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}

.m-26 {
  margin: 6.5rem !important;
}

.mt-26 {
  margin-top: 6.5rem !important;
}

.mb-26 {
  margin-bottom: 6.5rem !important;
}

.ml-26 {
  margin-left: 6.5rem !important;
}

.mr-26 {
  margin-right: 6.5rem !important;
}

.-mt-26 {
  margin-top: -6.5rem !important;
}

.-mb-26 {
  margin-bottom: -6.5rem !important;
}

.-ml-26 {
  margin-left: -6.5rem !important;
}

.-mr-26 {
  margin-right: -6.5rem !important;
}

.mx-26 {
  margin-left: 6.5rem !important;
  margin-right: 6.5rem !important;
}

.my-26 {
  margin-top: 6.5rem !important;
  margin-bottom: 6.5rem !important;
}

.space-x-26 > * + * {
  margin-left: 6.5rem !important;
}

.space-y-26 > * + * {
  margin-top: 6.5rem !important;
}

.-space-x-26 > * + * {
  margin-left: -6.5rem !important;
}

.-space-y-26 > * + * {
  margin-top: -6.5rem !important;
}

.p-27 {
  padding: 6.75rem !important;
}

.pl-27 {
  padding-left: 6.75rem !important;
}

.pr-27 {
  padding-right: 6.75rem !important;
}

.pt-27 {
  padding-top: 6.75rem !important;
}

.pb-27 {
  padding-bottom: 6.75rem !important;
}

.px-27 {
  padding-left: 6.75rem !important;
  padding-right: 6.75rem !important;
}

.py-27 {
  padding-top: 6.75rem !important;
  padding-bottom: 6.75rem !important;
}

.m-27 {
  margin: 6.75rem !important;
}

.mt-27 {
  margin-top: 6.75rem !important;
}

.mb-27 {
  margin-bottom: 6.75rem !important;
}

.ml-27 {
  margin-left: 6.75rem !important;
}

.mr-27 {
  margin-right: 6.75rem !important;
}

.-mt-27 {
  margin-top: -6.75rem !important;
}

.-mb-27 {
  margin-bottom: -6.75rem !important;
}

.-ml-27 {
  margin-left: -6.75rem !important;
}

.-mr-27 {
  margin-right: -6.75rem !important;
}

.mx-27 {
  margin-left: 6.75rem !important;
  margin-right: 6.75rem !important;
}

.my-27 {
  margin-top: 6.75rem !important;
  margin-bottom: 6.75rem !important;
}

.space-x-27 > * + * {
  margin-left: 6.75rem !important;
}

.space-y-27 > * + * {
  margin-top: 6.75rem !important;
}

.-space-x-27 > * + * {
  margin-left: -6.75rem !important;
}

.-space-y-27 > * + * {
  margin-top: -6.75rem !important;
}

.p-28 {
  padding: 7rem !important;
}

.pl-28 {
  padding-left: 7rem !important;
}

.pr-28 {
  padding-right: 7rem !important;
}

.pt-28 {
  padding-top: 7rem !important;
}

.pb-28 {
  padding-bottom: 7rem !important;
}

.px-28 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.py-28 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.m-28 {
  margin: 7rem !important;
}

.mt-28 {
  margin-top: 7rem !important;
}

.mb-28 {
  margin-bottom: 7rem !important;
}

.ml-28 {
  margin-left: 7rem !important;
}

.mr-28 {
  margin-right: 7rem !important;
}

.-mt-28 {
  margin-top: -7rem !important;
}

.-mb-28 {
  margin-bottom: -7rem !important;
}

.-ml-28 {
  margin-left: -7rem !important;
}

.-mr-28 {
  margin-right: -7rem !important;
}

.mx-28 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.my-28 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.space-x-28 > * + * {
  margin-left: 7rem !important;
}

.space-y-28 > * + * {
  margin-top: 7rem !important;
}

.-space-x-28 > * + * {
  margin-left: -7rem !important;
}

.-space-y-28 > * + * {
  margin-top: -7rem !important;
}

.p-29 {
  padding: 7.25rem !important;
}

.pl-29 {
  padding-left: 7.25rem !important;
}

.pr-29 {
  padding-right: 7.25rem !important;
}

.pt-29 {
  padding-top: 7.25rem !important;
}

.pb-29 {
  padding-bottom: 7.25rem !important;
}

.px-29 {
  padding-left: 7.25rem !important;
  padding-right: 7.25rem !important;
}

.py-29 {
  padding-top: 7.25rem !important;
  padding-bottom: 7.25rem !important;
}

.m-29 {
  margin: 7.25rem !important;
}

.mt-29 {
  margin-top: 7.25rem !important;
}

.mb-29 {
  margin-bottom: 7.25rem !important;
}

.ml-29 {
  margin-left: 7.25rem !important;
}

.mr-29 {
  margin-right: 7.25rem !important;
}

.-mt-29 {
  margin-top: -7.25rem !important;
}

.-mb-29 {
  margin-bottom: -7.25rem !important;
}

.-ml-29 {
  margin-left: -7.25rem !important;
}

.-mr-29 {
  margin-right: -7.25rem !important;
}

.mx-29 {
  margin-left: 7.25rem !important;
  margin-right: 7.25rem !important;
}

.my-29 {
  margin-top: 7.25rem !important;
  margin-bottom: 7.25rem !important;
}

.space-x-29 > * + * {
  margin-left: 7.25rem !important;
}

.space-y-29 > * + * {
  margin-top: 7.25rem !important;
}

.-space-x-29 > * + * {
  margin-left: -7.25rem !important;
}

.-space-y-29 > * + * {
  margin-top: -7.25rem !important;
}

.p-30 {
  padding: 7.5rem !important;
}

.pl-30 {
  padding-left: 7.5rem !important;
}

.pr-30 {
  padding-right: 7.5rem !important;
}

.pt-30 {
  padding-top: 7.5rem !important;
}

.pb-30 {
  padding-bottom: 7.5rem !important;
}

.px-30 {
  padding-left: 7.5rem !important;
  padding-right: 7.5rem !important;
}

.py-30 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.m-30 {
  margin: 7.5rem !important;
}

.mt-30 {
  margin-top: 7.5rem !important;
}

.mb-30 {
  margin-bottom: 7.5rem !important;
}

.ml-30 {
  margin-left: 7.5rem !important;
}

.mr-30 {
  margin-right: 7.5rem !important;
}

.-mt-30 {
  margin-top: -7.5rem !important;
}

.-mb-30 {
  margin-bottom: -7.5rem !important;
}

.-ml-30 {
  margin-left: -7.5rem !important;
}

.-mr-30 {
  margin-right: -7.5rem !important;
}

.mx-30 {
  margin-left: 7.5rem !important;
  margin-right: 7.5rem !important;
}

.my-30 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.space-x-30 > * + * {
  margin-left: 7.5rem !important;
}

.space-y-30 > * + * {
  margin-top: 7.5rem !important;
}

.-space-x-30 > * + * {
  margin-left: -7.5rem !important;
}

.-space-y-30 > * + * {
  margin-top: -7.5rem !important;
}

.p-31 {
  padding: 7.75rem !important;
}

.pl-31 {
  padding-left: 7.75rem !important;
}

.pr-31 {
  padding-right: 7.75rem !important;
}

.pt-31 {
  padding-top: 7.75rem !important;
}

.pb-31 {
  padding-bottom: 7.75rem !important;
}

.px-31 {
  padding-left: 7.75rem !important;
  padding-right: 7.75rem !important;
}

.py-31 {
  padding-top: 7.75rem !important;
  padding-bottom: 7.75rem !important;
}

.m-31 {
  margin: 7.75rem !important;
}

.mt-31 {
  margin-top: 7.75rem !important;
}

.mb-31 {
  margin-bottom: 7.75rem !important;
}

.ml-31 {
  margin-left: 7.75rem !important;
}

.mr-31 {
  margin-right: 7.75rem !important;
}

.-mt-31 {
  margin-top: -7.75rem !important;
}

.-mb-31 {
  margin-bottom: -7.75rem !important;
}

.-ml-31 {
  margin-left: -7.75rem !important;
}

.-mr-31 {
  margin-right: -7.75rem !important;
}

.mx-31 {
  margin-left: 7.75rem !important;
  margin-right: 7.75rem !important;
}

.my-31 {
  margin-top: 7.75rem !important;
  margin-bottom: 7.75rem !important;
}

.space-x-31 > * + * {
  margin-left: 7.75rem !important;
}

.space-y-31 > * + * {
  margin-top: 7.75rem !important;
}

.-space-x-31 > * + * {
  margin-left: -7.75rem !important;
}

.-space-y-31 > * + * {
  margin-top: -7.75rem !important;
}

.p-32 {
  padding: 8rem !important;
}

.pl-32 {
  padding-left: 8rem !important;
}

.pr-32 {
  padding-right: 8rem !important;
}

.pt-32 {
  padding-top: 8rem !important;
}

.pb-32 {
  padding-bottom: 8rem !important;
}

.px-32 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.py-32 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.m-32 {
  margin: 8rem !important;
}

.mt-32 {
  margin-top: 8rem !important;
}

.mb-32 {
  margin-bottom: 8rem !important;
}

.ml-32 {
  margin-left: 8rem !important;
}

.mr-32 {
  margin-right: 8rem !important;
}

.-mt-32 {
  margin-top: -8rem !important;
}

.-mb-32 {
  margin-bottom: -8rem !important;
}

.-ml-32 {
  margin-left: -8rem !important;
}

.-mr-32 {
  margin-right: -8rem !important;
}

.mx-32 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my-32 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.space-x-32 > * + * {
  margin-left: 8rem !important;
}

.space-y-32 > * + * {
  margin-top: 8rem !important;
}

.-space-x-32 > * + * {
  margin-left: -8rem !important;
}

.-space-y-32 > * + * {
  margin-top: -8rem !important;
}

.p-33 {
  padding: 8.25rem !important;
}

.pl-33 {
  padding-left: 8.25rem !important;
}

.pr-33 {
  padding-right: 8.25rem !important;
}

.pt-33 {
  padding-top: 8.25rem !important;
}

.pb-33 {
  padding-bottom: 8.25rem !important;
}

.px-33 {
  padding-left: 8.25rem !important;
  padding-right: 8.25rem !important;
}

.py-33 {
  padding-top: 8.25rem !important;
  padding-bottom: 8.25rem !important;
}

.m-33 {
  margin: 8.25rem !important;
}

.mt-33 {
  margin-top: 8.25rem !important;
}

.mb-33 {
  margin-bottom: 8.25rem !important;
}

.ml-33 {
  margin-left: 8.25rem !important;
}

.mr-33 {
  margin-right: 8.25rem !important;
}

.-mt-33 {
  margin-top: -8.25rem !important;
}

.-mb-33 {
  margin-bottom: -8.25rem !important;
}

.-ml-33 {
  margin-left: -8.25rem !important;
}

.-mr-33 {
  margin-right: -8.25rem !important;
}

.mx-33 {
  margin-left: 8.25rem !important;
  margin-right: 8.25rem !important;
}

.my-33 {
  margin-top: 8.25rem !important;
  margin-bottom: 8.25rem !important;
}

.space-x-33 > * + * {
  margin-left: 8.25rem !important;
}

.space-y-33 > * + * {
  margin-top: 8.25rem !important;
}

.-space-x-33 > * + * {
  margin-left: -8.25rem !important;
}

.-space-y-33 > * + * {
  margin-top: -8.25rem !important;
}

.p-34 {
  padding: 8.5rem !important;
}

.pl-34 {
  padding-left: 8.5rem !important;
}

.pr-34 {
  padding-right: 8.5rem !important;
}

.pt-34 {
  padding-top: 8.5rem !important;
}

.pb-34 {
  padding-bottom: 8.5rem !important;
}

.px-34 {
  padding-left: 8.5rem !important;
  padding-right: 8.5rem !important;
}

.py-34 {
  padding-top: 8.5rem !important;
  padding-bottom: 8.5rem !important;
}

.m-34 {
  margin: 8.5rem !important;
}

.mt-34 {
  margin-top: 8.5rem !important;
}

.mb-34 {
  margin-bottom: 8.5rem !important;
}

.ml-34 {
  margin-left: 8.5rem !important;
}

.mr-34 {
  margin-right: 8.5rem !important;
}

.-mt-34 {
  margin-top: -8.5rem !important;
}

.-mb-34 {
  margin-bottom: -8.5rem !important;
}

.-ml-34 {
  margin-left: -8.5rem !important;
}

.-mr-34 {
  margin-right: -8.5rem !important;
}

.mx-34 {
  margin-left: 8.5rem !important;
  margin-right: 8.5rem !important;
}

.my-34 {
  margin-top: 8.5rem !important;
  margin-bottom: 8.5rem !important;
}

.space-x-34 > * + * {
  margin-left: 8.5rem !important;
}

.space-y-34 > * + * {
  margin-top: 8.5rem !important;
}

.-space-x-34 > * + * {
  margin-left: -8.5rem !important;
}

.-space-y-34 > * + * {
  margin-top: -8.5rem !important;
}

.p-35 {
  padding: 8.75rem !important;
}

.pl-35 {
  padding-left: 8.75rem !important;
}

.pr-35 {
  padding-right: 8.75rem !important;
}

.pt-35 {
  padding-top: 8.75rem !important;
}

.pb-35 {
  padding-bottom: 8.75rem !important;
}

.px-35 {
  padding-left: 8.75rem !important;
  padding-right: 8.75rem !important;
}

.py-35 {
  padding-top: 8.75rem !important;
  padding-bottom: 8.75rem !important;
}

.m-35 {
  margin: 8.75rem !important;
}

.mt-35 {
  margin-top: 8.75rem !important;
}

.mb-35 {
  margin-bottom: 8.75rem !important;
}

.ml-35 {
  margin-left: 8.75rem !important;
}

.mr-35 {
  margin-right: 8.75rem !important;
}

.-mt-35 {
  margin-top: -8.75rem !important;
}

.-mb-35 {
  margin-bottom: -8.75rem !important;
}

.-ml-35 {
  margin-left: -8.75rem !important;
}

.-mr-35 {
  margin-right: -8.75rem !important;
}

.mx-35 {
  margin-left: 8.75rem !important;
  margin-right: 8.75rem !important;
}

.my-35 {
  margin-top: 8.75rem !important;
  margin-bottom: 8.75rem !important;
}

.space-x-35 > * + * {
  margin-left: 8.75rem !important;
}

.space-y-35 > * + * {
  margin-top: 8.75rem !important;
}

.-space-x-35 > * + * {
  margin-left: -8.75rem !important;
}

.-space-y-35 > * + * {
  margin-top: -8.75rem !important;
}

.p-36 {
  padding: 9rem !important;
}

.pl-36 {
  padding-left: 9rem !important;
}

.pr-36 {
  padding-right: 9rem !important;
}

.pt-36 {
  padding-top: 9rem !important;
}

.pb-36 {
  padding-bottom: 9rem !important;
}

.px-36 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.py-36 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.m-36 {
  margin: 9rem !important;
}

.mt-36 {
  margin-top: 9rem !important;
}

.mb-36 {
  margin-bottom: 9rem !important;
}

.ml-36 {
  margin-left: 9rem !important;
}

.mr-36 {
  margin-right: 9rem !important;
}

.-mt-36 {
  margin-top: -9rem !important;
}

.-mb-36 {
  margin-bottom: -9rem !important;
}

.-ml-36 {
  margin-left: -9rem !important;
}

.-mr-36 {
  margin-right: -9rem !important;
}

.mx-36 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.my-36 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.space-x-36 > * + * {
  margin-left: 9rem !important;
}

.space-y-36 > * + * {
  margin-top: 9rem !important;
}

.-space-x-36 > * + * {
  margin-left: -9rem !important;
}

.-space-y-36 > * + * {
  margin-top: -9rem !important;
}

.p-37 {
  padding: 9.25rem !important;
}

.pl-37 {
  padding-left: 9.25rem !important;
}

.pr-37 {
  padding-right: 9.25rem !important;
}

.pt-37 {
  padding-top: 9.25rem !important;
}

.pb-37 {
  padding-bottom: 9.25rem !important;
}

.px-37 {
  padding-left: 9.25rem !important;
  padding-right: 9.25rem !important;
}

.py-37 {
  padding-top: 9.25rem !important;
  padding-bottom: 9.25rem !important;
}

.m-37 {
  margin: 9.25rem !important;
}

.mt-37 {
  margin-top: 9.25rem !important;
}

.mb-37 {
  margin-bottom: 9.25rem !important;
}

.ml-37 {
  margin-left: 9.25rem !important;
}

.mr-37 {
  margin-right: 9.25rem !important;
}

.-mt-37 {
  margin-top: -9.25rem !important;
}

.-mb-37 {
  margin-bottom: -9.25rem !important;
}

.-ml-37 {
  margin-left: -9.25rem !important;
}

.-mr-37 {
  margin-right: -9.25rem !important;
}

.mx-37 {
  margin-left: 9.25rem !important;
  margin-right: 9.25rem !important;
}

.my-37 {
  margin-top: 9.25rem !important;
  margin-bottom: 9.25rem !important;
}

.space-x-37 > * + * {
  margin-left: 9.25rem !important;
}

.space-y-37 > * + * {
  margin-top: 9.25rem !important;
}

.-space-x-37 > * + * {
  margin-left: -9.25rem !important;
}

.-space-y-37 > * + * {
  margin-top: -9.25rem !important;
}

.p-38 {
  padding: 9.5rem !important;
}

.pl-38 {
  padding-left: 9.5rem !important;
}

.pr-38 {
  padding-right: 9.5rem !important;
}

.pt-38 {
  padding-top: 9.5rem !important;
}

.pb-38 {
  padding-bottom: 9.5rem !important;
}

.px-38 {
  padding-left: 9.5rem !important;
  padding-right: 9.5rem !important;
}

.py-38 {
  padding-top: 9.5rem !important;
  padding-bottom: 9.5rem !important;
}

.m-38 {
  margin: 9.5rem !important;
}

.mt-38 {
  margin-top: 9.5rem !important;
}

.mb-38 {
  margin-bottom: 9.5rem !important;
}

.ml-38 {
  margin-left: 9.5rem !important;
}

.mr-38 {
  margin-right: 9.5rem !important;
}

.-mt-38 {
  margin-top: -9.5rem !important;
}

.-mb-38 {
  margin-bottom: -9.5rem !important;
}

.-ml-38 {
  margin-left: -9.5rem !important;
}

.-mr-38 {
  margin-right: -9.5rem !important;
}

.mx-38 {
  margin-left: 9.5rem !important;
  margin-right: 9.5rem !important;
}

.my-38 {
  margin-top: 9.5rem !important;
  margin-bottom: 9.5rem !important;
}

.space-x-38 > * + * {
  margin-left: 9.5rem !important;
}

.space-y-38 > * + * {
  margin-top: 9.5rem !important;
}

.-space-x-38 > * + * {
  margin-left: -9.5rem !important;
}

.-space-y-38 > * + * {
  margin-top: -9.5rem !important;
}

.p-39 {
  padding: 9.75rem !important;
}

.pl-39 {
  padding-left: 9.75rem !important;
}

.pr-39 {
  padding-right: 9.75rem !important;
}

.pt-39 {
  padding-top: 9.75rem !important;
}

.pb-39 {
  padding-bottom: 9.75rem !important;
}

.px-39 {
  padding-left: 9.75rem !important;
  padding-right: 9.75rem !important;
}

.py-39 {
  padding-top: 9.75rem !important;
  padding-bottom: 9.75rem !important;
}

.m-39 {
  margin: 9.75rem !important;
}

.mt-39 {
  margin-top: 9.75rem !important;
}

.mb-39 {
  margin-bottom: 9.75rem !important;
}

.ml-39 {
  margin-left: 9.75rem !important;
}

.mr-39 {
  margin-right: 9.75rem !important;
}

.-mt-39 {
  margin-top: -9.75rem !important;
}

.-mb-39 {
  margin-bottom: -9.75rem !important;
}

.-ml-39 {
  margin-left: -9.75rem !important;
}

.-mr-39 {
  margin-right: -9.75rem !important;
}

.mx-39 {
  margin-left: 9.75rem !important;
  margin-right: 9.75rem !important;
}

.my-39 {
  margin-top: 9.75rem !important;
  margin-bottom: 9.75rem !important;
}

.space-x-39 > * + * {
  margin-left: 9.75rem !important;
}

.space-y-39 > * + * {
  margin-top: 9.75rem !important;
}

.-space-x-39 > * + * {
  margin-left: -9.75rem !important;
}

.-space-y-39 > * + * {
  margin-top: -9.75rem !important;
}

.p-40 {
  padding: 10rem !important;
}

.pl-40 {
  padding-left: 10rem !important;
}

.pr-40 {
  padding-right: 10rem !important;
}

.pt-40 {
  padding-top: 10rem !important;
}

.pb-40 {
  padding-bottom: 10rem !important;
}

.px-40 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.py-40 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.m-40 {
  margin: 10rem !important;
}

.mt-40 {
  margin-top: 10rem !important;
}

.mb-40 {
  margin-bottom: 10rem !important;
}

.ml-40 {
  margin-left: 10rem !important;
}

.mr-40 {
  margin-right: 10rem !important;
}

.-mt-40 {
  margin-top: -10rem !important;
}

.-mb-40 {
  margin-bottom: -10rem !important;
}

.-ml-40 {
  margin-left: -10rem !important;
}

.-mr-40 {
  margin-right: -10rem !important;
}

.mx-40 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.my-40 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.space-x-40 > * + * {
  margin-left: 10rem !important;
}

.space-y-40 > * + * {
  margin-top: 10rem !important;
}

.-space-x-40 > * + * {
  margin-left: -10rem !important;
}

.-space-y-40 > * + * {
  margin-top: -10rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.w-0 {
  width: 0rem !important;
}

.max-w-0 {
  max-width: 0rem !important;
}

.h-0 {
  height: 0rem !important;
}

.max-h-0 {
  max-height: 0rem !important;
}

.w-1 {
  width: 0.25rem !important;
}

.max-w-1 {
  max-width: 0.25rem !important;
}

.h-1 {
  height: 0.25rem !important;
}

.max-h-1 {
  max-height: 0.25rem !important;
}

.w-2 {
  width: 0.5rem !important;
}

.max-w-2 {
  max-width: 0.5rem !important;
}

.h-2 {
  height: 0.5rem !important;
}

.max-h-2 {
  max-height: 0.5rem !important;
}

.w-3 {
  width: 0.75rem !important;
}

.max-w-3 {
  max-width: 0.75rem !important;
}

.h-3 {
  height: 0.75rem !important;
}

.max-h-3 {
  max-height: 0.75rem !important;
}

.w-4 {
  width: 1rem !important;
}

.max-w-4 {
  max-width: 1rem !important;
}

.h-4 {
  height: 1rem !important;
}

.max-h-4 {
  max-height: 1rem !important;
}

.w-5 {
  width: 1.25rem !important;
}

.max-w-5 {
  max-width: 1.25rem !important;
}

.h-5 {
  height: 1.25rem !important;
}

.max-h-5 {
  max-height: 1.25rem !important;
}

.w-6 {
  width: 1.5rem !important;
}

.max-w-6 {
  max-width: 1.5rem !important;
}

.h-6 {
  height: 1.5rem !important;
}

.max-h-6 {
  max-height: 1.5rem !important;
}

.w-7 {
  width: 1.75rem !important;
}

.max-w-7 {
  max-width: 1.75rem !important;
}

.h-7 {
  height: 1.75rem !important;
}

.max-h-7 {
  max-height: 1.75rem !important;
}

.w-8 {
  width: 2rem !important;
}

.max-w-8 {
  max-width: 2rem !important;
}

.h-8 {
  height: 2rem !important;
}

.max-h-8 {
  max-height: 2rem !important;
}

.w-9 {
  width: 2.25rem !important;
}

.max-w-9 {
  max-width: 2.25rem !important;
}

.h-9 {
  height: 2.25rem !important;
}

.max-h-9 {
  max-height: 2.25rem !important;
}

.w-10 {
  width: 2.5rem !important;
}

.max-w-10 {
  max-width: 2.5rem !important;
}

.h-10 {
  height: 2.5rem !important;
}

.max-h-10 {
  max-height: 2.5rem !important;
}

.w-11 {
  width: 2.75rem !important;
}

.max-w-11 {
  max-width: 2.75rem !important;
}

.h-11 {
  height: 2.75rem !important;
}

.max-h-11 {
  max-height: 2.75rem !important;
}

.w-12 {
  width: 3rem !important;
}

.max-w-12 {
  max-width: 3rem !important;
}

.h-12 {
  height: 3rem !important;
}

.max-h-12 {
  max-height: 3rem !important;
}

.w-13 {
  width: 3.25rem !important;
}

.max-w-13 {
  max-width: 3.25rem !important;
}

.h-13 {
  height: 3.25rem !important;
}

.max-h-13 {
  max-height: 3.25rem !important;
}

.w-14 {
  width: 3.5rem !important;
}

.max-w-14 {
  max-width: 3.5rem !important;
}

.h-14 {
  height: 3.5rem !important;
}

.max-h-14 {
  max-height: 3.5rem !important;
}

.w-15 {
  width: 3.75rem !important;
}

.max-w-15 {
  max-width: 3.75rem !important;
}

.h-15 {
  height: 3.75rem !important;
}

.max-h-15 {
  max-height: 3.75rem !important;
}

.w-16 {
  width: 4rem !important;
}

.max-w-16 {
  max-width: 4rem !important;
}

.h-16 {
  height: 4rem !important;
}

.max-h-16 {
  max-height: 4rem !important;
}

.w-17 {
  width: 4.25rem !important;
}

.max-w-17 {
  max-width: 4.25rem !important;
}

.h-17 {
  height: 4.25rem !important;
}

.max-h-17 {
  max-height: 4.25rem !important;
}

.w-18 {
  width: 4.5rem !important;
}

.max-w-18 {
  max-width: 4.5rem !important;
}

.h-18 {
  height: 4.5rem !important;
}

.max-h-18 {
  max-height: 4.5rem !important;
}

.w-19 {
  width: 4.75rem !important;
}

.max-w-19 {
  max-width: 4.75rem !important;
}

.h-19 {
  height: 4.75rem !important;
}

.max-h-19 {
  max-height: 4.75rem !important;
}

.w-20 {
  width: 5rem !important;
}

.max-w-20 {
  max-width: 5rem !important;
}

.h-20 {
  height: 5rem !important;
}

.max-h-20 {
  max-height: 5rem !important;
}

.w-21 {
  width: 5.25rem !important;
}

.max-w-21 {
  max-width: 5.25rem !important;
}

.h-21 {
  height: 5.25rem !important;
}

.max-h-21 {
  max-height: 5.25rem !important;
}

.w-22 {
  width: 5.5rem !important;
}

.max-w-22 {
  max-width: 5.5rem !important;
}

.h-22 {
  height: 5.5rem !important;
}

.max-h-22 {
  max-height: 5.5rem !important;
}

.w-23 {
  width: 5.75rem !important;
}

.max-w-23 {
  max-width: 5.75rem !important;
}

.h-23 {
  height: 5.75rem !important;
}

.max-h-23 {
  max-height: 5.75rem !important;
}

.w-24 {
  width: 6rem !important;
}

.max-w-24 {
  max-width: 6rem !important;
}

.h-24 {
  height: 6rem !important;
}

.max-h-24 {
  max-height: 6rem !important;
}

.w-25 {
  width: 6.25rem !important;
}

.max-w-25 {
  max-width: 6.25rem !important;
}

.h-25 {
  height: 6.25rem !important;
}

.max-h-25 {
  max-height: 6.25rem !important;
}

.w-26 {
  width: 6.5rem !important;
}

.max-w-26 {
  max-width: 6.5rem !important;
}

.h-26 {
  height: 6.5rem !important;
}

.max-h-26 {
  max-height: 6.5rem !important;
}

.w-27 {
  width: 6.75rem !important;
}

.max-w-27 {
  max-width: 6.75rem !important;
}

.h-27 {
  height: 6.75rem !important;
}

.max-h-27 {
  max-height: 6.75rem !important;
}

.w-28 {
  width: 7rem !important;
}

.max-w-28 {
  max-width: 7rem !important;
}

.h-28 {
  height: 7rem !important;
}

.max-h-28 {
  max-height: 7rem !important;
}

.w-29 {
  width: 7.25rem !important;
}

.max-w-29 {
  max-width: 7.25rem !important;
}

.h-29 {
  height: 7.25rem !important;
}

.max-h-29 {
  max-height: 7.25rem !important;
}

.w-30 {
  width: 7.5rem !important;
}

.max-w-30 {
  max-width: 7.5rem !important;
}

.h-30 {
  height: 7.5rem !important;
}

.max-h-30 {
  max-height: 7.5rem !important;
}

.w-31 {
  width: 7.75rem !important;
}

.max-w-31 {
  max-width: 7.75rem !important;
}

.h-31 {
  height: 7.75rem !important;
}

.max-h-31 {
  max-height: 7.75rem !important;
}

.w-32 {
  width: 8rem !important;
}

.max-w-32 {
  max-width: 8rem !important;
}

.h-32 {
  height: 8rem !important;
}

.max-h-32 {
  max-height: 8rem !important;
}

.w-33 {
  width: 8.25rem !important;
}

.max-w-33 {
  max-width: 8.25rem !important;
}

.h-33 {
  height: 8.25rem !important;
}

.max-h-33 {
  max-height: 8.25rem !important;
}

.w-34 {
  width: 8.5rem !important;
}

.max-w-34 {
  max-width: 8.5rem !important;
}

.h-34 {
  height: 8.5rem !important;
}

.max-h-34 {
  max-height: 8.5rem !important;
}

.w-35 {
  width: 8.75rem !important;
}

.max-w-35 {
  max-width: 8.75rem !important;
}

.h-35 {
  height: 8.75rem !important;
}

.max-h-35 {
  max-height: 8.75rem !important;
}

.w-36 {
  width: 9rem !important;
}

.max-w-36 {
  max-width: 9rem !important;
}

.h-36 {
  height: 9rem !important;
}

.max-h-36 {
  max-height: 9rem !important;
}

.w-37 {
  width: 9.25rem !important;
}

.max-w-37 {
  max-width: 9.25rem !important;
}

.h-37 {
  height: 9.25rem !important;
}

.max-h-37 {
  max-height: 9.25rem !important;
}

.w-38 {
  width: 9.5rem !important;
}

.max-w-38 {
  max-width: 9.5rem !important;
}

.h-38 {
  height: 9.5rem !important;
}

.max-h-38 {
  max-height: 9.5rem !important;
}

.w-39 {
  width: 9.75rem !important;
}

.max-w-39 {
  max-width: 9.75rem !important;
}

.h-39 {
  height: 9.75rem !important;
}

.max-h-39 {
  max-height: 9.75rem !important;
}

.w-40 {
  width: 10rem !important;
}

.max-w-40 {
  max-width: 10rem !important;
}

.h-40 {
  height: 10rem !important;
}

.max-h-40 {
  max-height: 10rem !important;
}

.w-41 {
  width: 10.25rem !important;
}

.max-w-41 {
  max-width: 10.25rem !important;
}

.h-41 {
  height: 10.25rem !important;
}

.max-h-41 {
  max-height: 10.25rem !important;
}

.w-42 {
  width: 10.5rem !important;
}

.max-w-42 {
  max-width: 10.5rem !important;
}

.h-42 {
  height: 10.5rem !important;
}

.max-h-42 {
  max-height: 10.5rem !important;
}

.w-43 {
  width: 10.75rem !important;
}

.max-w-43 {
  max-width: 10.75rem !important;
}

.h-43 {
  height: 10.75rem !important;
}

.max-h-43 {
  max-height: 10.75rem !important;
}

.w-44 {
  width: 11rem !important;
}

.max-w-44 {
  max-width: 11rem !important;
}

.h-44 {
  height: 11rem !important;
}

.max-h-44 {
  max-height: 11rem !important;
}

.w-45 {
  width: 11.25rem !important;
}

.max-w-45 {
  max-width: 11.25rem !important;
}

.h-45 {
  height: 11.25rem !important;
}

.max-h-45 {
  max-height: 11.25rem !important;
}

.w-46 {
  width: 11.5rem !important;
}

.max-w-46 {
  max-width: 11.5rem !important;
}

.h-46 {
  height: 11.5rem !important;
}

.max-h-46 {
  max-height: 11.5rem !important;
}

.w-47 {
  width: 11.75rem !important;
}

.max-w-47 {
  max-width: 11.75rem !important;
}

.h-47 {
  height: 11.75rem !important;
}

.max-h-47 {
  max-height: 11.75rem !important;
}

.w-48 {
  width: 12rem !important;
}

.max-w-48 {
  max-width: 12rem !important;
}

.h-48 {
  height: 12rem !important;
}

.max-h-48 {
  max-height: 12rem !important;
}

.w-49 {
  width: 12.25rem !important;
}

.max-w-49 {
  max-width: 12.25rem !important;
}

.h-49 {
  height: 12.25rem !important;
}

.max-h-49 {
  max-height: 12.25rem !important;
}

.w-50 {
  width: 12.5rem !important;
}

.max-w-50 {
  max-width: 12.5rem !important;
}

.h-50 {
  height: 12.5rem !important;
}

.max-h-50 {
  max-height: 12.5rem !important;
}

.w-51 {
  width: 12.75rem !important;
}

.max-w-51 {
  max-width: 12.75rem !important;
}

.h-51 {
  height: 12.75rem !important;
}

.max-h-51 {
  max-height: 12.75rem !important;
}

.w-52 {
  width: 13rem !important;
}

.max-w-52 {
  max-width: 13rem !important;
}

.h-52 {
  height: 13rem !important;
}

.max-h-52 {
  max-height: 13rem !important;
}

.w-53 {
  width: 13.25rem !important;
}

.max-w-53 {
  max-width: 13.25rem !important;
}

.h-53 {
  height: 13.25rem !important;
}

.max-h-53 {
  max-height: 13.25rem !important;
}

.w-54 {
  width: 13.5rem !important;
}

.max-w-54 {
  max-width: 13.5rem !important;
}

.h-54 {
  height: 13.5rem !important;
}

.max-h-54 {
  max-height: 13.5rem !important;
}

.w-55 {
  width: 13.75rem !important;
}

.max-w-55 {
  max-width: 13.75rem !important;
}

.h-55 {
  height: 13.75rem !important;
}

.max-h-55 {
  max-height: 13.75rem !important;
}

.w-56 {
  width: 14rem !important;
}

.max-w-56 {
  max-width: 14rem !important;
}

.h-56 {
  height: 14rem !important;
}

.max-h-56 {
  max-height: 14rem !important;
}

.w-57 {
  width: 14.25rem !important;
}

.max-w-57 {
  max-width: 14.25rem !important;
}

.h-57 {
  height: 14.25rem !important;
}

.max-h-57 {
  max-height: 14.25rem !important;
}

.w-58 {
  width: 14.5rem !important;
}

.max-w-58 {
  max-width: 14.5rem !important;
}

.h-58 {
  height: 14.5rem !important;
}

.max-h-58 {
  max-height: 14.5rem !important;
}

.w-59 {
  width: 14.75rem !important;
}

.max-w-59 {
  max-width: 14.75rem !important;
}

.h-59 {
  height: 14.75rem !important;
}

.max-h-59 {
  max-height: 14.75rem !important;
}

.w-60 {
  width: 15rem !important;
}

.max-w-60 {
  max-width: 15rem !important;
}

.h-60 {
  height: 15rem !important;
}

.max-h-60 {
  max-height: 15rem !important;
}

.w-61 {
  width: 15.25rem !important;
}

.max-w-61 {
  max-width: 15.25rem !important;
}

.h-61 {
  height: 15.25rem !important;
}

.max-h-61 {
  max-height: 15.25rem !important;
}

.w-62 {
  width: 15.5rem !important;
}

.max-w-62 {
  max-width: 15.5rem !important;
}

.h-62 {
  height: 15.5rem !important;
}

.max-h-62 {
  max-height: 15.5rem !important;
}

.w-63 {
  width: 15.75rem !important;
}

.max-w-63 {
  max-width: 15.75rem !important;
}

.h-63 {
  height: 15.75rem !important;
}

.max-h-63 {
  max-height: 15.75rem !important;
}

.w-64 {
  width: 16rem !important;
}

.max-w-64 {
  max-width: 16rem !important;
}

.h-64 {
  height: 16rem !important;
}

.max-h-64 {
  max-height: 16rem !important;
}

.w-65 {
  width: 16.25rem !important;
}

.max-w-65 {
  max-width: 16.25rem !important;
}

.h-65 {
  height: 16.25rem !important;
}

.max-h-65 {
  max-height: 16.25rem !important;
}

.w-66 {
  width: 16.5rem !important;
}

.max-w-66 {
  max-width: 16.5rem !important;
}

.h-66 {
  height: 16.5rem !important;
}

.max-h-66 {
  max-height: 16.5rem !important;
}

.w-67 {
  width: 16.75rem !important;
}

.max-w-67 {
  max-width: 16.75rem !important;
}

.h-67 {
  height: 16.75rem !important;
}

.max-h-67 {
  max-height: 16.75rem !important;
}

.w-68 {
  width: 17rem !important;
}

.max-w-68 {
  max-width: 17rem !important;
}

.h-68 {
  height: 17rem !important;
}

.max-h-68 {
  max-height: 17rem !important;
}

.w-69 {
  width: 17.25rem !important;
}

.max-w-69 {
  max-width: 17.25rem !important;
}

.h-69 {
  height: 17.25rem !important;
}

.max-h-69 {
  max-height: 17.25rem !important;
}

.w-70 {
  width: 17.5rem !important;
}

.max-w-70 {
  max-width: 17.5rem !important;
}

.h-70 {
  height: 17.5rem !important;
}

.max-h-70 {
  max-height: 17.5rem !important;
}

.w-71 {
  width: 17.75rem !important;
}

.max-w-71 {
  max-width: 17.75rem !important;
}

.h-71 {
  height: 17.75rem !important;
}

.max-h-71 {
  max-height: 17.75rem !important;
}

.w-72 {
  width: 18rem !important;
}

.max-w-72 {
  max-width: 18rem !important;
}

.h-72 {
  height: 18rem !important;
}

.max-h-72 {
  max-height: 18rem !important;
}

.w-73 {
  width: 18.25rem !important;
}

.max-w-73 {
  max-width: 18.25rem !important;
}

.h-73 {
  height: 18.25rem !important;
}

.max-h-73 {
  max-height: 18.25rem !important;
}

.w-74 {
  width: 18.5rem !important;
}

.max-w-74 {
  max-width: 18.5rem !important;
}

.h-74 {
  height: 18.5rem !important;
}

.max-h-74 {
  max-height: 18.5rem !important;
}

.w-75 {
  width: 18.75rem !important;
}

.max-w-75 {
  max-width: 18.75rem !important;
}

.h-75 {
  height: 18.75rem !important;
}

.max-h-75 {
  max-height: 18.75rem !important;
}

.w-76 {
  width: 19rem !important;
}

.max-w-76 {
  max-width: 19rem !important;
}

.h-76 {
  height: 19rem !important;
}

.max-h-76 {
  max-height: 19rem !important;
}

.w-77 {
  width: 19.25rem !important;
}

.max-w-77 {
  max-width: 19.25rem !important;
}

.h-77 {
  height: 19.25rem !important;
}

.max-h-77 {
  max-height: 19.25rem !important;
}

.w-78 {
  width: 19.5rem !important;
}

.max-w-78 {
  max-width: 19.5rem !important;
}

.h-78 {
  height: 19.5rem !important;
}

.max-h-78 {
  max-height: 19.5rem !important;
}

.w-79 {
  width: 19.75rem !important;
}

.max-w-79 {
  max-width: 19.75rem !important;
}

.h-79 {
  height: 19.75rem !important;
}

.max-h-79 {
  max-height: 19.75rem !important;
}

.w-80 {
  width: 20rem !important;
}

.max-w-80 {
  max-width: 20rem !important;
}

.h-80 {
  height: 20rem !important;
}

.max-h-80 {
  max-height: 20rem !important;
}

.w-81 {
  width: 20.25rem !important;
}

.max-w-81 {
  max-width: 20.25rem !important;
}

.h-81 {
  height: 20.25rem !important;
}

.max-h-81 {
  max-height: 20.25rem !important;
}

.w-82 {
  width: 20.5rem !important;
}

.max-w-82 {
  max-width: 20.5rem !important;
}

.h-82 {
  height: 20.5rem !important;
}

.max-h-82 {
  max-height: 20.5rem !important;
}

.w-83 {
  width: 20.75rem !important;
}

.max-w-83 {
  max-width: 20.75rem !important;
}

.h-83 {
  height: 20.75rem !important;
}

.max-h-83 {
  max-height: 20.75rem !important;
}

.w-84 {
  width: 21rem !important;
}

.max-w-84 {
  max-width: 21rem !important;
}

.h-84 {
  height: 21rem !important;
}

.max-h-84 {
  max-height: 21rem !important;
}

.w-85 {
  width: 21.25rem !important;
}

.max-w-85 {
  max-width: 21.25rem !important;
}

.h-85 {
  height: 21.25rem !important;
}

.max-h-85 {
  max-height: 21.25rem !important;
}

.w-86 {
  width: 21.5rem !important;
}

.max-w-86 {
  max-width: 21.5rem !important;
}

.h-86 {
  height: 21.5rem !important;
}

.max-h-86 {
  max-height: 21.5rem !important;
}

.w-87 {
  width: 21.75rem !important;
}

.max-w-87 {
  max-width: 21.75rem !important;
}

.h-87 {
  height: 21.75rem !important;
}

.max-h-87 {
  max-height: 21.75rem !important;
}

.w-88 {
  width: 22rem !important;
}

.max-w-88 {
  max-width: 22rem !important;
}

.h-88 {
  height: 22rem !important;
}

.max-h-88 {
  max-height: 22rem !important;
}

.w-89 {
  width: 22.25rem !important;
}

.max-w-89 {
  max-width: 22.25rem !important;
}

.h-89 {
  height: 22.25rem !important;
}

.max-h-89 {
  max-height: 22.25rem !important;
}

.w-90 {
  width: 22.5rem !important;
}

.max-w-90 {
  max-width: 22.5rem !important;
}

.h-90 {
  height: 22.5rem !important;
}

.max-h-90 {
  max-height: 22.5rem !important;
}

.w-91 {
  width: 22.75rem !important;
}

.max-w-91 {
  max-width: 22.75rem !important;
}

.h-91 {
  height: 22.75rem !important;
}

.max-h-91 {
  max-height: 22.75rem !important;
}

.w-92 {
  width: 23rem !important;
}

.max-w-92 {
  max-width: 23rem !important;
}

.h-92 {
  height: 23rem !important;
}

.max-h-92 {
  max-height: 23rem !important;
}

.w-93 {
  width: 23.25rem !important;
}

.max-w-93 {
  max-width: 23.25rem !important;
}

.h-93 {
  height: 23.25rem !important;
}

.max-h-93 {
  max-height: 23.25rem !important;
}

.w-94 {
  width: 23.5rem !important;
}

.max-w-94 {
  max-width: 23.5rem !important;
}

.h-94 {
  height: 23.5rem !important;
}

.max-h-94 {
  max-height: 23.5rem !important;
}

.w-95 {
  width: 23.75rem !important;
}

.max-w-95 {
  max-width: 23.75rem !important;
}

.h-95 {
  height: 23.75rem !important;
}

.max-h-95 {
  max-height: 23.75rem !important;
}

.w-96 {
  width: 24rem !important;
}

.max-w-96 {
  max-width: 24rem !important;
}

.h-96 {
  height: 24rem !important;
}

.max-h-96 {
  max-height: 24rem !important;
}

.w-97 {
  width: 24.25rem !important;
}

.max-w-97 {
  max-width: 24.25rem !important;
}

.h-97 {
  height: 24.25rem !important;
}

.max-h-97 {
  max-height: 24.25rem !important;
}

.w-98 {
  width: 24.5rem !important;
}

.max-w-98 {
  max-width: 24.5rem !important;
}

.h-98 {
  height: 24.5rem !important;
}

.max-h-98 {
  max-height: 24.5rem !important;
}

.w-99 {
  width: 24.75rem !important;
}

.max-w-99 {
  max-width: 24.75rem !important;
}

.h-99 {
  height: 24.75rem !important;
}

.max-h-99 {
  max-height: 24.75rem !important;
}

.w-100 {
  width: 25rem !important;
}

.max-w-100 {
  max-width: 25rem !important;
}

.h-100 {
  height: 25rem !important;
}

.max-h-100 {
  max-height: 25rem !important;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.w-min {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.w-max {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.max-w-full {
  max-width: 100%;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.min-h-screen {
  min-height: 100vh;
}

.max-h-screen {
  max-height: 100vh;
}

.min-w-0 {
  min-width: 0;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-7xl {
  font-size: 4.5rem;
}

.text-8xl {
  font-size: 6rem;
}

.text-9xl {
  font-size: 8rem;
}

.italic {
  font-style: italic;
}

.not-italic {
  font-style: normal;
}

.font-normal {
  font-weight: 400;
}

.font-bold {
  font-weight: bold;
}

.tracking-normal {
  letter-spacing: 0;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-snug {
  line-height: 1.375;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-loose {
  line-height: 2;
}

.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-white {
  color: white;
}

.text-black {
  color: black;
}

.text-current {
  color: currentColor;
}

.text-primary {
  color: var(--primary-color);
}

.text-primary-darker {
  color: var(--primary-color-darker);
}

.text-primary-lighter {
  color: var(--primary-color-lighter);
}

.bg-primary {
  background: var(--primary-color);
}

.bg-primary-darker {
  background: var(--primary-color-darker);
}

.bg-primary-lighter {
  background: var(--primary-color-lighter);
}

.border-primary {
  border-color: var(--primary-color);
}

.border-primary-darker {
  border-color: var(--primary-color-darker);
}

.border-primary-lighter {
  border-color: var(--primary-color-lighter);
}

.ring-primary {
  --ring-color: var(--primary-color);
}

.ring-primary-darker {
  --ring-color: var(--primary-color-darker);
}

.ring-primary-lighter {
  --ring-color: var(--primary-color-lighter);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-secondary-darker {
  color: var(--secondary-color-darker);
}

.text-secondary-lighter {
  color: var(--secondary-color-lighter);
}

.bg-secondary {
  background: var(--secondary-color);
}

.bg-secondary-darker {
  background: var(--secondary-color-darker);
}

.bg-secondary-lighter {
  background: var(--secondary-color-lighter);
}

.border-secondary {
  border-color: var(--secondary-color);
}

.border-secondary-darker {
  border-color: var(--secondary-color-darker);
}

.border-secondary-lighter {
  border-color: var(--secondary-color-lighter);
}

.ring-secondary {
  --ring-color: var(--secondary-color);
}

.ring-secondary-darker {
  --ring-color: var(--secondary-color-darker);
}

.ring-secondary-lighter {
  --ring-color: var(--secondary-color-lighter);
}

.text-success {
  color: var(--success-color);
}

.text-success-darker {
  color: var(--success-color-darker);
}

.text-success-lighter {
  color: var(--success-color-lighter);
}

.bg-success {
  background: var(--success-color);
}

.bg-success-darker {
  background: var(--success-color-darker);
}

.bg-success-lighter {
  background: var(--success-color-lighter);
}

.border-success {
  border-color: var(--success-color);
}

.border-success-darker {
  border-color: var(--success-color-darker);
}

.border-success-lighter {
  border-color: var(--success-color-lighter);
}

.ring-success {
  --ring-color: var(--success-color);
}

.ring-success-darker {
  --ring-color: var(--success-color-darker);
}

.ring-success-lighter {
  --ring-color: var(--success-color-lighter);
}

.text-info {
  color: var(--info-color);
}

.text-info-darker {
  color: var(--info-color-darker);
}

.text-info-lighter {
  color: var(--info-color-lighter);
}

.bg-info {
  background: var(--info-color);
}

.bg-info-darker {
  background: var(--info-color-darker);
}

.bg-info-lighter {
  background: var(--info-color-lighter);
}

.border-info {
  border-color: var(--info-color);
}

.border-info-darker {
  border-color: var(--info-color-darker);
}

.border-info-lighter {
  border-color: var(--info-color-lighter);
}

.ring-info {
  --ring-color: var(--info-color);
}

.ring-info-darker {
  --ring-color: var(--info-color-darker);
}

.ring-info-lighter {
  --ring-color: var(--info-color-lighter);
}

.text-warning {
  color: var(--warning-color);
}

.text-warning-darker {
  color: var(--warning-color-darker);
}

.text-warning-lighter {
  color: var(--warning-color-lighter);
}

.bg-warning {
  background: var(--warning-color);
}

.bg-warning-darker {
  background: var(--warning-color-darker);
}

.bg-warning-lighter {
  background: var(--warning-color-lighter);
}

.border-warning {
  border-color: var(--warning-color);
}

.border-warning-darker {
  border-color: var(--warning-color-darker);
}

.border-warning-lighter {
  border-color: var(--warning-color-lighter);
}

.ring-warning {
  --ring-color: var(--warning-color);
}

.ring-warning-darker {
  --ring-color: var(--warning-color-darker);
}

.ring-warning-lighter {
  --ring-color: var(--warning-color-lighter);
}

.text-danger {
  color: var(--danger-color);
}

.text-danger-darker {
  color: var(--danger-color-darker);
}

.text-danger-lighter {
  color: var(--danger-color-lighter);
}

.bg-danger {
  background: var(--danger-color);
}

.bg-danger-darker {
  background: var(--danger-color-darker);
}

.bg-danger-lighter {
  background: var(--danger-color-lighter);
}

.border-danger {
  border-color: var(--danger-color);
}

.border-danger-darker {
  border-color: var(--danger-color-darker);
}

.border-danger-lighter {
  border-color: var(--danger-color-lighter);
}

.ring-danger {
  --ring-color: var(--danger-color);
}

.ring-danger-darker {
  --ring-color: var(--danger-color-darker);
}

.ring-danger-lighter {
  --ring-color: var(--danger-color-lighter);
}

.text-secondary-lightest {
  color: var(--secondary-color-lightest);
}

.text-secondary-darkest {
  color: var(--secondary-color-darkest);
}

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

.no-underline {
  text-decoration: none;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.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;
}

.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-normal {
  overflow-wrap: normal;
  word-break: normal;
}

.break-words {
  overflow-wrap: break-word;
}

.break-all {
  word-break: break-all;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-multi {
  --line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: var(--line-clamp);
  -webkit-box-orient: vertical;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-local {
  background-attachment: local;
}

.bg-scroll {
  background-attachment: scroll;
}

.bg-clip-border {
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

.bg-clip-padding {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.bg-clip-content {
  -webkit-background-clip: content-box;
  background-clip: content-box;
}

.bg-clip-text {
  background-clip: text;
  -webkit-background-clip: text;
}

.bg-transparent {
  background: transparent !important;
}

.bg-current {
  background: currentColor;
}

.bg-white {
  background: white;
}

.bg-black {
  background: black;
}

.bg-secondary-lightest {
  background: var(--secondary-color-lightest);
}

.bg-secondary-darkest {
  background: var(--secondary-color-darkest);
}

.bg-origin-padding {
  background-origin: padding-box;
}

.bg-origin-content {
  background-origin: content-box;
}

.rounded-none {
  border-radius: 0 !important;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 50%;
}

.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;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l {
  border-left-width: 1px;
}

.border-0 {
  border-width: 0px !important;
}

.border-t-0 {
  border-top-width: 0px !important;
}

.border-r-0 {
  border-right-width: 0px !important;
}

.border-b-0 {
  border-bottom-width: 0px !important;
}

.border-l-0 {
  border-left-width: 0px !important;
}

.border-x-0 {
  border-left-width: 0px !important;
  border-right-width: 0px !important;
}

.border-y-0 {
  border-top-width: 0px !important;
  border-bottom-width: 0px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-t-2 {
  border-top-width: 2px !important;
}

.border-r-2 {
  border-right-width: 2px !important;
}

.border-b-2 {
  border-bottom-width: 2px !important;
}

.border-l-2 {
  border-left-width: 2px !important;
}

.border-x-2 {
  border-left-width: 2px !important;
  border-right-width: 2px !important;
}

.border-y-2 {
  border-top-width: 2px !important;
  border-bottom-width: 2px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-t-4 {
  border-top-width: 4px !important;
}

.border-r-4 {
  border-right-width: 4px !important;
}

.border-b-4 {
  border-bottom-width: 4px !important;
}

.border-l-4 {
  border-left-width: 4px !important;
}

.border-x-4 {
  border-left-width: 4px !important;
  border-right-width: 4px !important;
}

.border-y-4 {
  border-top-width: 4px !important;
  border-bottom-width: 4px !important;
}

.border-8 {
  border-width: 8px !important;
}

.border-t-8 {
  border-top-width: 8px !important;
}

.border-r-8 {
  border-right-width: 8px !important;
}

.border-b-8 {
  border-bottom-width: 8px !important;
}

.border-l-8 {
  border-left-width: 8px !important;
}

.border-x-8 {
  border-left-width: 8px !important;
  border-right-width: 8px !important;
}

.border-y-8 {
  border-top-width: 8px !important;
  border-bottom-width: 8px !important;
}

.border-transparent {
  border-color: transparent;
}

.border-current {
  border-color: currentColor;
}

.border-black {
  border-color: black;
}

.border-white {
  border-color: white;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-double {
  border-style: double;
}

.border-none {
  border-style: none;
}

.divide-y > * + * {
  border-top-width: 1px;
}

.divide-x > * + * {
  border-left-width: 1px;
}

.divide-x-2 > * + * {
  border-left-width: 2px;
}

.divide-y-2 > * + * {
  border-top-width: 2px;
}

.divide-x-4 > * + * {
  border-left-width: 4px;
}

.divide-y-4 > * + * {
  border-top-width: 4px;
}

.divide-x-8 > * + * {
  border-left-width: 8px;
}

.divide-y-8 > * + * {
  border-top-width: 8px;
}

.divide-transparent > * + * {
  border-color: transparent;
}

.divide-current > * + * {
  border-color: currentColor;
}

.divide-black > * + * {
  border-color: black;
}

.divide-white > * + * {
  border-color: white;
}

.divide-solid > * + * {
  border-style: solid;
}

.divide-dashed > * + * {
  border-style: dashed;
}

.divide-dotted > * + * {
  border-style: dotted;
}

.divide-double > * + * {
  border-style: double;
}

.divide-none > * + * {
  border-style: none;
}

.ring-0 {
  --ring-shadow: var(--ring-inset, /*!*/ /*!*/)
      0
      0
      0
      calc(0px + var(--ring-offset-width, 0px))
      var(--ring-color);
  box-shadow: var(--ring-offset-shadow, 0 0 transparent), var(--ring-shadow, 0 0 transparent);
}

.ring-offset-0 {
  --ring-offset-width: 0px;
  --ring-offset-shadow: 0
      0
      0
      var(--ring-offset-width)
      var(--ring-offset-color, white);
}

.ring-1 {
  --ring-shadow: var(--ring-inset, /*!*/ /*!*/)
      0
      0
      0
      calc(1px + var(--ring-offset-width, 0px))
      var(--ring-color);
  box-shadow: var(--ring-offset-shadow, 0 0 transparent), var(--ring-shadow, 0 0 transparent);
}

.ring-offset-1 {
  --ring-offset-width: 1px;
  --ring-offset-shadow: 0
      0
      0
      var(--ring-offset-width)
      var(--ring-offset-color, white);
}

.ring-2 {
  --ring-shadow: var(--ring-inset, /*!*/ /*!*/)
      0
      0
      0
      calc(2px + var(--ring-offset-width, 0px))
      var(--ring-color);
  box-shadow: var(--ring-offset-shadow, 0 0 transparent), var(--ring-shadow, 0 0 transparent);
}

.ring-offset-2 {
  --ring-offset-width: 2px;
  --ring-offset-shadow: 0
      0
      0
      var(--ring-offset-width)
      var(--ring-offset-color, white);
}

.ring-4 {
  --ring-shadow: var(--ring-inset, /*!*/ /*!*/)
      0
      0
      0
      calc(4px + var(--ring-offset-width, 0px))
      var(--ring-color);
  box-shadow: var(--ring-offset-shadow, 0 0 transparent), var(--ring-shadow, 0 0 transparent);
}

.ring-offset-4 {
  --ring-offset-width: 4px;
  --ring-offset-shadow: 0
      0
      0
      var(--ring-offset-width)
      var(--ring-offset-color, white);
}

.ring-8 {
  --ring-shadow: var(--ring-inset, /*!*/ /*!*/)
      0
      0
      0
      calc(8px + var(--ring-offset-width, 0px))
      var(--ring-color);
  box-shadow: var(--ring-offset-shadow, 0 0 transparent), var(--ring-shadow, 0 0 transparent);
}

.ring-offset-8 {
  --ring-offset-width: 8px;
  --ring-offset-shadow: 0
      0
      0
      var(--ring-offset-width)
      var(--ring-offset-color, white);
}

.ring-inset {
  --ring-inset: inset;
}

.ring-current {
  --ring-color: currentColor;
}

.ring-black {
  --ring-color: black;
}

.ring-white {
  --ring-color: white;
}

.ring-offset-black {
  --ring-offset-color: black;
}

.shadow-xs {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.shadow-outline {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.shadow-none {
  box-shadow: none !important;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.transition-none {
  transition-property: none;
}

.transition-all {
  transition-property: all;
}

.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
}

.transition-opacity {
  transition-property: opacity;
}

.transition-shadow {
  transition-property: box-shadow;
}

.transition-transform {
  transition-property: transform;
}

.duration-75 {
  transition-duration: 75ms;
}

.duration-100 {
  transition-duration: 100ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-600 {
  transition-duration: 600ms;
}

.duration-1000 {
  transition-duration: 1000ms;
}

.ease-linear {
  transition-timing-function: linear;
}

.ease-in {
  transition-timing-function: ease-in;
}

.ease-out {
  transition-timing-function: ease-out;
}

.ease-in-out {
  transition-timing-function: ease-in-out;
}

.delay-75 {
  transition-delay: 75ms;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-150 {
  transition-delay: 150ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.delay-600 {
  transition-delay: 600ms;
}

.delay-1000 {
  transition-delay: 1000ms;
}

.scale-0 {
  transform: scale(0);
}

.scale-25 {
  transform: scale(0.25);
}

.scale-50 {
  transform: scale(0.5);
}

.scale-75 {
  transform: scale(0.75);
}

.scale-100 {
  transform: scale(1);
}

.scale-150 {
  transform: scale(1.5);
}

.scale-200 {
  transform: scale(2);
}

.-scale-x-100 {
  transform: scaleX(-1);
}

.-scale-y-100 {
  transform: scaleY(-1);
}

.-scale-100 {
  transform: scale(-1);
}

.rotate-0 {
  transform: rotate(0);
}

.rotate-45 {
  transform: rotate(45deg);
}

.-rotate-45 {
  transform: rotate(-45deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.-rotate-90 {
  transform: rotate(-90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.-rotate-180 {
  transform: rotate(-180deg);
}

.origin-top {
  transform-origin: top;
}

.origin-right {
  transform-origin: right;
}

.origin-bottom {
  transform-origin: bottom;
}

.origin-left {
  transform-origin: left;
}

.outline-none {
  outline: 0;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.pointer-events-auto {
  pointer-events: auto;
}

.pointer-events-none {
  pointer-events: none;
}

.resize {
  resize: both;
}

.resize-y {
  resize: vertical;
}

.resize-x {
  resize: horizontal;
}

.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.select-all {
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

.fill-current {
  fill: currentColor;
}

.stroke-current {
  stroke: currentColor;
}

.stroke-0 {
  stroke-width: 0;
}

.stroke-1 {
  stroke-width: 1;
}

.stroke-2 {
  stroke-width: 2;
}

.invisible-block {
  height: var(--height);
}

.lazyload[src] {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.indent-sm {
  text-indent: 2em;
}

.indent-md {
  text-indent: 3em;
}

.indent-lg {
  text-indent: 4em;
}

.writing-mode-horizontal {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}

.writing-mode-vertical {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.writing-mode-vertical-rl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.filter-none {
  -webkit-filter: none;
          filter: none;
}

.filter-blur {
  -webkit-filter: blur(20px);
          filter: blur(20px);
}

.filter-grayscale {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  transform: rotateZ(0);
}

.filter-invert {
  -webkit-filter: invert(1);
          filter: invert(1);
  transform: rotateZ(0);
}

.filter-sepia {
  -webkit-filter: sepia(1);
          filter: sepia(1);
  transform: rotateZ(0);
}

.backdrop-filter-blur {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.mix-blend-normal {
  mix-blend-mode: normal;
}

.mix-blend-multiply {
  mix-blend-mode: multiply;
}

.mix-blend-screen {
  mix-blend-mode: screen;
}

.mix-blend-overlay {
  mix-blend-mode: overlay;
}

.mix-blend-darken {
  mix-blend-mode: darken;
}

.mix-blend-lighten {
  mix-blend-mode: lighten;
}

.mix-blend-color-dodge {
  mix-blend-mode: color-dodge;
}

.mix-blend-color-burn {
  mix-blend-mode: color-burn;
}

.mix-blend-hard-light {
  mix-blend-mode: hard-light;
}

.mix-blend-soft-light {
  mix-blend-mode: soft-light;
}

.mix-blend-difference {
  mix-blend-mode: difference;
}

.mix-blend-exclusion {
  mix-blend-mode: exclusion;
}

.mix-blend-hue {
  mix-blend-mode: hue;
}

.mix-blend-saturation {
  mix-blend-mode: saturation;
}

.mix-blend-color {
  mix-blend-mode: color;
}

.mix-blend-luminosity {
  mix-blend-mode: luminosity;
}

.tap-highlight-none {
  -webkit-tap-highlight-color: none;
}

.form-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.form-check {
  display: flex;
  align-items: center;
  margin: 12px 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
}

.hv-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.h-center {
  left: 50%;
  transform: translateX(-50%);
}

.v-center {
  top: 50%;
  transform: translateY(-50%);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-center {
  display: grid;
  place-items: center;
}

.fade-in {
  -webkit-animation: fade-in 0.6s both;
          animation: fade-in 0.6s both;
}

.heartbeat {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}

.mask-top {
  -webkit-mask: linear-gradient(0deg, black, transparent);
          mask: linear-gradient(0deg, black, transparent);
}

.mask-right {
  -webkit-mask: linear-gradient(90deg, black, transparent);
          mask: linear-gradient(90deg, black, transparent);
}

.mask-bottom {
  -webkit-mask: linear-gradient(180deg, black, transparent);
          mask: linear-gradient(180deg, black, transparent);
}

.mask-left {
  -webkit-mask: linear-gradient(270deg, black, transparent);
          mask: linear-gradient(270deg, black, transparent);
}

.text-grad {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.text-stroke {
  position: relative;
  color: transparent;
}

.text-stroke::before, .text-stroke::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: attr(data-stroke-text);
  color: var(--stroke-inner-color, white);
}

.text-stroke::before {
  z-index: 0;
  -webkit-text-stroke: var(--stroke-width, 3px) var(--stroke-outer-color, black);
}

.text-stroke::after {
  z-index: 1;
}

.stroke-inner-black {
  --stroke-inner-color: black;
}

.stroke-outer-white {
  --stroke-outer-color: white;
}

.stroke-inner-primary {
  --stroke-inner-color: var(--primary-color);
}

.stroke-outer-primary {
  --stroke-outer-color: var(--primary-color);
}

.all-unset {
  all: unset;
}

.border-stripe {
  --stripe-width: 0.5rem;
  --stripe-deg: -45deg;
  --stripe-offset-1: 2px;
  --stripe-offset-2: 1rem;
  --stripe-radius: 15px;
  --stripe-inset: calc(var(--stripe-width) * -1);
}

.border-stripe::before {
  top: var(--stripe-inset);
  left: var(--stripe-inset);
  right: var(--stripe-inset);
  bottom: var(--stripe-inset);
  content: "";
  z-index: -1;
  background: repeating-linear-gradient(var(--stripe-deg), var(--stripe-color-1) 0 var(--stripe-offset-1), var(--stripe-color-2) 0 var(--stripe-offset-2));
  border-radius: var(--stripe-radius);
}

.cover {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.w-half {
  width: 50%;
}

.w-quarter {
  width: 25%;
}

.w-1px {
  width: 1px;
}

.h-1px {
  height: 1px;
}

.w-2px {
  width: 2px;
}

.h-2px {
  height: 2px;
}

.m-1px {
  margin: 1px;
}

.p-1px {
  padding: 1px;
}

.m-2px {
  margin: 2px;
}

.p-2px {
  padding: 2px;
}

.animation-none {
  -webkit-animation: none !important;
          animation: none !important;
}

.border-grad {
  --border-grad: var(--primary-color);
  --border-grad-width: 2px;
  --border-grad-radius: 1rem;
  position: relative;
  border-radius: var(--border-grad-radius);
}

.border-grad::after {
  position: absolute;
  top: calc(-1 * var(--border-grad-width));
  left: calc(-1 * var(--border-grad-width));
  width: calc(100% + var(--border-grad-width) * 2);
  height: calc(100% + var(--border-grad-width) * 2);
  content: "";
  z-index: -1;
  background: var(--border-grad);
  border-radius: inherit;
}

.scroll-auto {
  scroll-behavior: auto;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.will-change-auto {
  will-change: auto;
}

.will-change-transform {
  will-change: transform;
}

.snap-none {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.snap-x {
  -ms-scroll-snap-type: x var(--scroll-snap-strictness);
      scroll-snap-type: x var(--scroll-snap-strictness);
}

.snap-y {
  -ms-scroll-snap-type: y var(--scroll-snap-strictness);
      scroll-snap-type: y var(--scroll-snap-strictness);
}

.snap-both {
  -ms-scroll-snap-type: both var(--scroll-snap-strictness);
      scroll-snap-type: both var(--scroll-snap-strictness);
}

.snap-mandatory {
  --scroll-snap-strictness: mandatory;
}

.snap-proximity {
  --scroll-snap-strictness: proximity;
}

.snap-align-none {
  scroll-snap-align: none;
}

.snap-start {
  scroll-snap-align: start;
}

.snap-end {
  scroll-snap-align: end;
}

.snap-center {
  scroll-snap-align: center;
}

.snap-normal {
  scroll-snap-stop: normal;
}

.snap-always {
  scroll-snap-stop: always;
}

.float-up-down {
  --float-up-down-distance: 5px;
  --negative-float-up-down-distance: calc(var(--float-up-down-distance) * -1);
  -webkit-animation: float-up-down 1s infinite linear alternate;
          animation: float-up-down 1s infinite linear alternate;
}

.blink {
  -webkit-animation: blink 2s linear both infinite;
          animation: blink 2s linear both infinite;
}

.bounce-in {
  -webkit-animation: bounce-in 0.6s forwards;
          animation: bounce-in 0.6s forwards;
}

.pulsate-fwd {
  -webkit-animation: pulsate-fwd 0.8s ease-in-out infinite both;
          animation: pulsate-fwd 0.8s ease-in-out infinite both;
}

.hollow {
  opacity: 0;
  pointer-events: none;
}

.rich-text img {
  max-width: 100%;
}

.no-scroll {
  overflow: hidden;
}
/*# sourceMappingURL=aqua.css.map */