@charset "UTF-8";:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Estilos base para el contenedor del loader */
.loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Animación para el logo */
.loader-logo {
  width: 280px;
  height: 280px;
  fill: none;
  stroke: #154270;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10000;
  stroke-dashoffset: -1038.66;
  animation: loader-stroke 1.8s infinite alternate;
}

@keyframes loader-stroke {
  0% {
    fill: rgba(242, 109, 36, 0);
    stroke: rgba(21, 66, 112, 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2;
  }
  40% {
    fill: rgba(242, 109, 36, 0);
    stroke: rgba(21, 66, 112, 1);
  }
  60% {
    fill: rgba(242, 109, 36, 0);
    stroke: rgba(21, 66, 112, 1);
    stroke-width: 3;
  }
  90% {
    fill: rgba(242, 109, 36, 1);
    stroke: rgba(21, 66, 112, 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
  100% {
    fill: rgba(242, 109, 36, 1);
    stroke: rgba(21, 66, 112, 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}

/* Estilos para el texto */
.loader-texto {
  margin-top: 30px;
  width: 420px;
  height: 85px;
  font-family: Arial, sans-serif;
  font-size: 52px;
  font-weight: bold;
}

.loader-texto text {
  animation: loader-strokeTexto 1.8s infinite alternate;
  stroke-width: 2;
  stroke: #154270;
  fill: rgba(21, 66, 112, 0);
}

@keyframes loader-strokeTexto {
  0% {
    fill: rgba(21, 66, 112, 0);
    stroke: rgba(21, 66, 112, 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2;
  }
  40% {
    fill: rgba(21, 66, 112, 0);
    stroke: rgba(21, 66, 112, 1);
  }
  60% {
    fill: rgba(21, 66, 112, 0);
    stroke: rgba(21, 66, 112, 1);
    stroke-width: 3;
  }
  90% {
    fill: rgba(21, 66, 112, 1);
    stroke: rgba(21, 66, 112, 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
  100% {
    fill: rgba(21, 66, 112, 1);
    stroke: rgba(21, 66, 112, 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}

.loader-r {
  font-size: 26px;
  vertical-align: super;
  stroke-width: 1;
}

/* Animación de typing loader */
.loader-span {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.loader-typing_loader {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: loader-typing 1.8s linear infinite alternate;
  margin: 15px auto;
  position: relative;
}

@keyframes loader-typing {
  0% {
    background-color: rgba(21, 66, 112, 0.8);
    box-shadow: 12px 0 0 0 rgba(242, 109, 36, 0.5),
      -12px 0 0 0 rgba(242, 109, 36, 0.5),
      24px 0 0 0 rgba(21, 66, 112, 0.8),
      -24px 0 0 0 rgba(21, 66, 112, 0.8);
  }
  25% {
    background-color: rgba(242, 109, 36, 0.5);
    box-shadow: 12px 0 0 0 rgba(21, 66, 112, 0.8),
      -12px 0 0 0 rgba(21, 66, 112, 0.8),
      24px 0 0 0 rgba(242, 109, 36, 0.5),
      -24px 0 0 0 rgba(242, 109, 36, 0.5);
  }
  50% {
    background-color: rgba(21, 66, 112, 0.8);
    box-shadow: 12px 0 0 0 rgba(242, 109, 36, 0.5),
      -12px 0 0 0 rgba(242, 109, 36, 0.5),
      24px 0 0 0 rgba(21, 66, 112, 0.8),
      -24px 0 0 0 rgba(21, 66, 112, 0.8);
  }
  75% {
    background-color: rgba(242, 109, 36, 0.5);
    box-shadow: 12px 0 0 0 rgba(21, 66, 112, 0.8),
      -12px 0 0 0 rgba(21, 66, 112, 0.8),
      24px 0 0 0 rgba(242, 109, 36, 0.5),
      -24px 0 0 0 rgba(242, 109, 36, 0.5);
  }
}

/* Clase para prevenir selección */
.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
}

.grid > .col,
.grid > [class*=col] {
  box-sizing: border-box;
}

.grid-nogutter {
  margin-right: 0;
  margin-left: 0;
  margin-top: 0;
}

.grid-nogutter > .col,
.grid-nogutter > [class*=col-] {
  padding: 0;
}

.col {
  flex-grow: 1;
  flex-basis: 0;
  padding: 0.5rem;
}

.col-fixed {
  flex: 0 0 auto;
  padding: 0.5rem;
}

.col-1 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 8.3333%;
}

.col-2 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 16.6667%;
}

.col-3 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 33.3333%;
}

.col-5 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 41.6667%;
}

.col-6 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 58.3333%;
}

.col-8 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 66.6667%;
}

.col-9 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 83.3333%;
}

.col-11 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 91.6667%;
}

.col-12 {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 100%;
}

@media screen and (min-width: 576px) {
  .sm\:col {
    flex-grow: 1;
    flex-basis: 0;
    padding: 0.5rem;
  }
  .sm\:col-fixed {
    flex: 0 0 auto;
    padding: 0.5rem;
  }
  .sm\:col-1 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 8.3333%;
  }
  .sm\:col-2 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 16.6667%;
  }
  .sm\:col-3 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 25%;
  }
  .sm\:col-4 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 33.3333%;
  }
  .sm\:col-5 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 41.6667%;
  }
  .sm\:col-6 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 50%;
  }
  .sm\:col-7 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 58.3333%;
  }
  .sm\:col-8 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 66.6667%;
  }
  .sm\:col-9 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 75%;
  }
  .sm\:col-10 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 83.3333%;
  }
  .sm\:col-11 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 91.6667%;
  }
  .sm\:col-12 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .md\:col {
    flex-grow: 1;
    flex-basis: 0;
    padding: 0.5rem;
  }
  .md\:col-fixed {
    flex: 0 0 auto;
    padding: 0.5rem;
  }
  .md\:col-1 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 8.3333%;
  }
  .md\:col-2 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 16.6667%;
  }
  .md\:col-3 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 25%;
  }
  .md\:col-4 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 33.3333%;
  }
  .md\:col-5 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 41.6667%;
  }
  .md\:col-6 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 50%;
  }
  .md\:col-7 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 58.3333%;
  }
  .md\:col-8 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 66.6667%;
  }
  .md\:col-9 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 75%;
  }
  .md\:col-10 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 83.3333%;
  }
  .md\:col-11 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 91.6667%;
  }
  .md\:col-12 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .lg\:col {
    flex-grow: 1;
    flex-basis: 0;
    padding: 0.5rem;
  }
  .lg\:col-fixed {
    flex: 0 0 auto;
    padding: 0.5rem;
  }
  .lg\:col-1 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 8.3333%;
  }
  .lg\:col-2 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 16.6667%;
  }
  .lg\:col-3 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 25%;
  }
  .lg\:col-4 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 33.3333%;
  }
  .lg\:col-5 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 41.6667%;
  }
  .lg\:col-6 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 50%;
  }
  .lg\:col-7 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 58.3333%;
  }
  .lg\:col-8 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 66.6667%;
  }
  .lg\:col-9 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 75%;
  }
  .lg\:col-10 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 83.3333%;
  }
  .lg\:col-11 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 91.6667%;
  }
  .lg\:col-12 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:col {
    flex-grow: 1;
    flex-basis: 0;
    padding: 0.5rem;
  }
  .xl\:col-fixed {
    flex: 0 0 auto;
    padding: 0.5rem;
  }
  .xl\:col-1 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 8.3333%;
  }
  .xl\:col-2 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 16.6667%;
  }
  .xl\:col-3 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 25%;
  }
  .xl\:col-4 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 33.3333%;
  }
  .xl\:col-5 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 41.6667%;
  }
  .xl\:col-6 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 50%;
  }
  .xl\:col-7 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 58.3333%;
  }
  .xl\:col-8 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 66.6667%;
  }
  .xl\:col-9 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 75%;
  }
  .xl\:col-10 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 83.3333%;
  }
  .xl\:col-11 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 91.6667%;
  }
  .xl\:col-12 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 100%;
  }
}
.col-offset-0 {
  margin-left: 0 !important;
}

.col-offset-1 {
  margin-left: 8.3333% !important;
}

.col-offset-2 {
  margin-left: 16.6667% !important;
}

.col-offset-3 {
  margin-left: 25% !important;
}

.col-offset-4 {
  margin-left: 33.3333% !important;
}

.col-offset-5 {
  margin-left: 41.6667% !important;
}

.col-offset-6 {
  margin-left: 50% !important;
}

.col-offset-7 {
  margin-left: 58.3333% !important;
}

.col-offset-8 {
  margin-left: 66.6667% !important;
}

.col-offset-9 {
  margin-left: 75% !important;
}

.col-offset-10 {
  margin-left: 83.3333% !important;
}

.col-offset-11 {
  margin-left: 91.6667% !important;
}

.col-offset-12 {
  margin-left: 100% !important;
}

@media screen and (min-width: 576px) {
  .sm\:col-offset-0 {
    margin-left: 0 !important;
  }
  .sm\:col-offset-1 {
    margin-left: 8.3333% !important;
  }
  .sm\:col-offset-2 {
    margin-left: 16.6667% !important;
  }
  .sm\:col-offset-3 {
    margin-left: 25% !important;
  }
  .sm\:col-offset-4 {
    margin-left: 33.3333% !important;
  }
  .sm\:col-offset-5 {
    margin-left: 41.6667% !important;
  }
  .sm\:col-offset-6 {
    margin-left: 50% !important;
  }
  .sm\:col-offset-7 {
    margin-left: 58.3333% !important;
  }
  .sm\:col-offset-8 {
    margin-left: 66.6667% !important;
  }
  .sm\:col-offset-9 {
    margin-left: 75% !important;
  }
  .sm\:col-offset-10 {
    margin-left: 83.3333% !important;
  }
  .sm\:col-offset-11 {
    margin-left: 91.6667% !important;
  }
  .sm\:col-offset-12 {
    margin-left: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:col-offset-0 {
    margin-left: 0 !important;
  }
  .md\:col-offset-1 {
    margin-left: 8.3333% !important;
  }
  .md\:col-offset-2 {
    margin-left: 16.6667% !important;
  }
  .md\:col-offset-3 {
    margin-left: 25% !important;
  }
  .md\:col-offset-4 {
    margin-left: 33.3333% !important;
  }
  .md\:col-offset-5 {
    margin-left: 41.6667% !important;
  }
  .md\:col-offset-6 {
    margin-left: 50% !important;
  }
  .md\:col-offset-7 {
    margin-left: 58.3333% !important;
  }
  .md\:col-offset-8 {
    margin-left: 66.6667% !important;
  }
  .md\:col-offset-9 {
    margin-left: 75% !important;
  }
  .md\:col-offset-10 {
    margin-left: 83.3333% !important;
  }
  .md\:col-offset-11 {
    margin-left: 91.6667% !important;
  }
  .md\:col-offset-12 {
    margin-left: 100% !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:col-offset-0 {
    margin-left: 0 !important;
  }
  .lg\:col-offset-1 {
    margin-left: 8.3333% !important;
  }
  .lg\:col-offset-2 {
    margin-left: 16.6667% !important;
  }
  .lg\:col-offset-3 {
    margin-left: 25% !important;
  }
  .lg\:col-offset-4 {
    margin-left: 33.3333% !important;
  }
  .lg\:col-offset-5 {
    margin-left: 41.6667% !important;
  }
  .lg\:col-offset-6 {
    margin-left: 50% !important;
  }
  .lg\:col-offset-7 {
    margin-left: 58.3333% !important;
  }
  .lg\:col-offset-8 {
    margin-left: 66.6667% !important;
  }
  .lg\:col-offset-9 {
    margin-left: 75% !important;
  }
  .lg\:col-offset-10 {
    margin-left: 83.3333% !important;
  }
  .lg\:col-offset-11 {
    margin-left: 91.6667% !important;
  }
  .lg\:col-offset-12 {
    margin-left: 100% !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:col-offset-0 {
    margin-left: 0 !important;
  }
  .xl\:col-offset-1 {
    margin-left: 8.3333% !important;
  }
  .xl\:col-offset-2 {
    margin-left: 16.6667% !important;
  }
  .xl\:col-offset-3 {
    margin-left: 25% !important;
  }
  .xl\:col-offset-4 {
    margin-left: 33.3333% !important;
  }
  .xl\:col-offset-5 {
    margin-left: 41.6667% !important;
  }
  .xl\:col-offset-6 {
    margin-left: 50% !important;
  }
  .xl\:col-offset-7 {
    margin-left: 58.3333% !important;
  }
  .xl\:col-offset-8 {
    margin-left: 66.6667% !important;
  }
  .xl\:col-offset-9 {
    margin-left: 75% !important;
  }
  .xl\:col-offset-10 {
    margin-left: 83.3333% !important;
  }
  .xl\:col-offset-11 {
    margin-left: 91.6667% !important;
  }
  .xl\:col-offset-12 {
    margin-left: 100% !important;
  }
}
.text-0 {
  color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.text-50 {
  color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.text-100 {
  color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.text-200 {
  color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.text-300 {
  color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.text-400 {
  color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.text-500 {
  color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.text-600 {
  color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.text-700 {
  color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.text-800 {
  color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.text-900 {
  color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.focus\:text-0:focus {
  color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.hover\:text-0:hover {
  color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.active\:text-0:active {
  color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.focus\:text-50:focus {
  color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.hover\:text-50:hover {
  color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.active\:text-50:active {
  color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.focus\:text-100:focus {
  color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.hover\:text-100:hover {
  color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.active\:text-100:active {
  color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.focus\:text-200:focus {
  color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.hover\:text-200:hover {
  color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.active\:text-200:active {
  color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.focus\:text-300:focus {
  color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.hover\:text-300:hover {
  color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.active\:text-300:active {
  color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.focus\:text-400:focus {
  color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.hover\:text-400:hover {
  color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.active\:text-400:active {
  color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.focus\:text-500:focus {
  color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.hover\:text-500:hover {
  color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.active\:text-500:active {
  color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.focus\:text-600:focus {
  color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.hover\:text-600:hover {
  color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.active\:text-600:active {
  color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.focus\:text-700:focus {
  color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.hover\:text-700:hover {
  color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.active\:text-700:active {
  color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.focus\:text-800:focus {
  color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.hover\:text-800:hover {
  color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.active\:text-800:active {
  color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.focus\:text-900:focus {
  color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.hover\:text-900:hover {
  color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.active\:text-900:active {
  color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.surface-0 {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.surface-50 {
  background-color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.surface-100 {
  background-color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.surface-200 {
  background-color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.surface-300 {
  background-color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.surface-400 {
  background-color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.surface-500 {
  background-color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.surface-600 {
  background-color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.surface-700 {
  background-color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.surface-800 {
  background-color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.surface-900 {
  background-color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.focus\:surface-0:focus {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.hover\:surface-0:hover {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.active\:surface-0:active {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.focus\:surface-50:focus {
  background-color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.hover\:surface-50:hover {
  background-color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.active\:surface-50:active {
  background-color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.focus\:surface-100:focus {
  background-color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.hover\:surface-100:hover {
  background-color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.active\:surface-100:active {
  background-color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.focus\:surface-200:focus {
  background-color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.hover\:surface-200:hover {
  background-color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.active\:surface-200:active {
  background-color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.focus\:surface-300:focus {
  background-color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.hover\:surface-300:hover {
  background-color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.active\:surface-300:active {
  background-color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.focus\:surface-400:focus {
  background-color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.hover\:surface-400:hover {
  background-color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.active\:surface-400:active {
  background-color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.focus\:surface-500:focus {
  background-color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.hover\:surface-500:hover {
  background-color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.active\:surface-500:active {
  background-color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.focus\:surface-600:focus {
  background-color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.hover\:surface-600:hover {
  background-color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.active\:surface-600:active {
  background-color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.focus\:surface-700:focus {
  background-color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.hover\:surface-700:hover {
  background-color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.active\:surface-700:active {
  background-color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.focus\:surface-800:focus {
  background-color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.hover\:surface-800:hover {
  background-color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.active\:surface-800:active {
  background-color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.focus\:surface-900:focus {
  background-color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.hover\:surface-900:hover {
  background-color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.active\:surface-900:active {
  background-color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.border-0 {
  border-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.border-50 {
  border-color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.border-100 {
  border-color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.border-200 {
  border-color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.border-300 {
  border-color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.border-400 {
  border-color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.border-500 {
  border-color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.border-600 {
  border-color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.border-700 {
  border-color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.border-800 {
  border-color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.border-900 {
  border-color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.focus\:border-0:focus {
  border-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.hover\:border-0:hover {
  border-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.active\:border-0:active {
  border-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.focus\:border-50:focus {
  border-color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.hover\:border-50:hover {
  border-color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.active\:border-50:active {
  border-color: light-dark(var(--p-surface-50), var(--p-surface-800)) !important;
}

.focus\:border-100:focus {
  border-color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.hover\:border-100:hover {
  border-color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.active\:border-100:active {
  border-color: light-dark(var(--p-surface-100), var(--p-surface-700)) !important;
}

.focus\:border-200:focus {
  border-color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.hover\:border-200:hover {
  border-color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.active\:border-200:active {
  border-color: light-dark(var(--p-surface-200), var(--p-surface-600)) !important;
}

.focus\:border-300:focus {
  border-color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.hover\:border-300:hover {
  border-color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.active\:border-300:active {
  border-color: light-dark(var(--p-surface-300), var(--p-surface-500)) !important;
}

.focus\:border-400:focus {
  border-color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.hover\:border-400:hover {
  border-color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.active\:border-400:active {
  border-color: light-dark(var(--p-surface-400), var(--p-surface-400)) !important;
}

.focus\:border-500:focus {
  border-color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.hover\:border-500:hover {
  border-color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.active\:border-500:active {
  border-color: light-dark(var(--p-surface-500), var(--p-surface-300)) !important;
}

.focus\:border-600:focus {
  border-color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.hover\:border-600:hover {
  border-color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.active\:border-600:active {
  border-color: light-dark(var(--p-surface-600), var(--p-surface-200)) !important;
}

.focus\:border-700:focus {
  border-color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.hover\:border-700:hover {
  border-color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.active\:border-700:active {
  border-color: light-dark(var(--p-surface-700), var(--p-surface-100)) !important;
}

.focus\:border-800:focus {
  border-color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.hover\:border-800:hover {
  border-color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.active\:border-800:active {
  border-color: light-dark(var(--p-surface-800), var(--p-surface-50)) !important;
}

.focus\:border-900:focus {
  border-color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.hover\:border-900:hover {
  border-color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

.active\:border-900:active {
  border-color: light-dark(var(--p-surface-900), var(--p-surface-0)) !important;
}

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

@media screen and (min-width: 576px) {
  .sm\:bg-transparent {
    background-color: transparent !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:bg-transparent {
    background-color: transparent !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:bg-transparent {
    background-color: transparent !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:bg-transparent {
    background-color: transparent !important;
  }
}
.border-transparent {
  border-color: transparent !important;
}

@media screen and (min-width: 576px) {
  .sm\:border-transparent {
    border-color: transparent !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:border-transparent {
    border-color: transparent !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:border-transparent {
    border-color: transparent !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:border-transparent {
    border-color: transparent !important;
  }
}
.text-blue-50 {
  color: var(--p-blue-50) !important;
}
.text-blue-100 {
  color: var(--p-blue-100) !important;
}
.text-blue-200 {
  color: var(--p-blue-200) !important;
}
.text-blue-300 {
  color: var(--p-blue-300) !important;
}
.text-blue-400 {
  color: var(--p-blue-400) !important;
}
.text-blue-500 {
  color: var(--p-blue-500) !important;
}
.text-blue-600 {
  color: var(--p-blue-600) !important;
}
.text-blue-700 {
  color: var(--p-blue-700) !important;
}
.text-blue-800 {
  color: var(--p-blue-800) !important;
}
.text-blue-900 {
  color: var(--p-blue-900) !important;
}

.focus\:text-blue-50:focus {
  color: var(--p-blue-50) !important;
}
.focus\:text-blue-100:focus {
  color: var(--p-blue-100) !important;
}
.focus\:text-blue-200:focus {
  color: var(--p-blue-200) !important;
}
.focus\:text-blue-300:focus {
  color: var(--p-blue-300) !important;
}
.focus\:text-blue-400:focus {
  color: var(--p-blue-400) !important;
}
.focus\:text-blue-500:focus {
  color: var(--p-blue-500) !important;
}
.focus\:text-blue-600:focus {
  color: var(--p-blue-600) !important;
}
.focus\:text-blue-700:focus {
  color: var(--p-blue-700) !important;
}
.focus\:text-blue-800:focus {
  color: var(--p-blue-800) !important;
}
.focus\:text-blue-900:focus {
  color: var(--p-blue-900) !important;
}

.hover\:text-blue-50:hover {
  color: var(--p-blue-50) !important;
}
.hover\:text-blue-100:hover {
  color: var(--p-blue-100) !important;
}
.hover\:text-blue-200:hover {
  color: var(--p-blue-200) !important;
}
.hover\:text-blue-300:hover {
  color: var(--p-blue-300) !important;
}
.hover\:text-blue-400:hover {
  color: var(--p-blue-400) !important;
}
.hover\:text-blue-500:hover {
  color: var(--p-blue-500) !important;
}
.hover\:text-blue-600:hover {
  color: var(--p-blue-600) !important;
}
.hover\:text-blue-700:hover {
  color: var(--p-blue-700) !important;
}
.hover\:text-blue-800:hover {
  color: var(--p-blue-800) !important;
}
.hover\:text-blue-900:hover {
  color: var(--p-blue-900) !important;
}

.active\:text-blue-50:active {
  color: var(--p-blue-50) !important;
}
.active\:text-blue-100:active {
  color: var(--p-blue-100) !important;
}
.active\:text-blue-200:active {
  color: var(--p-blue-200) !important;
}
.active\:text-blue-300:active {
  color: var(--p-blue-300) !important;
}
.active\:text-blue-400:active {
  color: var(--p-blue-400) !important;
}
.active\:text-blue-500:active {
  color: var(--p-blue-500) !important;
}
.active\:text-blue-600:active {
  color: var(--p-blue-600) !important;
}
.active\:text-blue-700:active {
  color: var(--p-blue-700) !important;
}
.active\:text-blue-800:active {
  color: var(--p-blue-800) !important;
}
.active\:text-blue-900:active {
  color: var(--p-blue-900) !important;
}

.text-green-50 {
  color: var(--p-green-50) !important;
}
.text-green-100 {
  color: var(--p-green-100) !important;
}
.text-green-200 {
  color: var(--p-green-200) !important;
}
.text-green-300 {
  color: var(--p-green-300) !important;
}
.text-green-400 {
  color: var(--p-green-400) !important;
}
.text-green-500 {
  color: var(--p-green-500) !important;
}
.text-green-600 {
  color: var(--p-green-600) !important;
}
.text-green-700 {
  color: var(--p-green-700) !important;
}
.text-green-800 {
  color: var(--p-green-800) !important;
}
.text-green-900 {
  color: var(--p-green-900) !important;
}

.focus\:text-green-50:focus {
  color: var(--p-green-50) !important;
}
.focus\:text-green-100:focus {
  color: var(--p-green-100) !important;
}
.focus\:text-green-200:focus {
  color: var(--p-green-200) !important;
}
.focus\:text-green-300:focus {
  color: var(--p-green-300) !important;
}
.focus\:text-green-400:focus {
  color: var(--p-green-400) !important;
}
.focus\:text-green-500:focus {
  color: var(--p-green-500) !important;
}
.focus\:text-green-600:focus {
  color: var(--p-green-600) !important;
}
.focus\:text-green-700:focus {
  color: var(--p-green-700) !important;
}
.focus\:text-green-800:focus {
  color: var(--p-green-800) !important;
}
.focus\:text-green-900:focus {
  color: var(--p-green-900) !important;
}

.hover\:text-green-50:hover {
  color: var(--p-green-50) !important;
}
.hover\:text-green-100:hover {
  color: var(--p-green-100) !important;
}
.hover\:text-green-200:hover {
  color: var(--p-green-200) !important;
}
.hover\:text-green-300:hover {
  color: var(--p-green-300) !important;
}
.hover\:text-green-400:hover {
  color: var(--p-green-400) !important;
}
.hover\:text-green-500:hover {
  color: var(--p-green-500) !important;
}
.hover\:text-green-600:hover {
  color: var(--p-green-600) !important;
}
.hover\:text-green-700:hover {
  color: var(--p-green-700) !important;
}
.hover\:text-green-800:hover {
  color: var(--p-green-800) !important;
}
.hover\:text-green-900:hover {
  color: var(--p-green-900) !important;
}

.active\:text-green-50:active {
  color: var(--p-green-50) !important;
}
.active\:text-green-100:active {
  color: var(--p-green-100) !important;
}
.active\:text-green-200:active {
  color: var(--p-green-200) !important;
}
.active\:text-green-300:active {
  color: var(--p-green-300) !important;
}
.active\:text-green-400:active {
  color: var(--p-green-400) !important;
}
.active\:text-green-500:active {
  color: var(--p-green-500) !important;
}
.active\:text-green-600:active {
  color: var(--p-green-600) !important;
}
.active\:text-green-700:active {
  color: var(--p-green-700) !important;
}
.active\:text-green-800:active {
  color: var(--p-green-800) !important;
}
.active\:text-green-900:active {
  color: var(--p-green-900) !important;
}

.text-yellow-50 {
  color: var(--p-yellow-50) !important;
}
.text-yellow-100 {
  color: var(--p-yellow-100) !important;
}
.text-yellow-200 {
  color: var(--p-yellow-200) !important;
}
.text-yellow-300 {
  color: var(--p-yellow-300) !important;
}
.text-yellow-400 {
  color: var(--p-yellow-400) !important;
}
.text-yellow-500 {
  color: var(--p-yellow-500) !important;
}
.text-yellow-600 {
  color: var(--p-yellow-600) !important;
}
.text-yellow-700 {
  color: var(--p-yellow-700) !important;
}
.text-yellow-800 {
  color: var(--p-yellow-800) !important;
}
.text-yellow-900 {
  color: var(--p-yellow-900) !important;
}

.focus\:text-yellow-50:focus {
  color: var(--p-yellow-50) !important;
}
.focus\:text-yellow-100:focus {
  color: var(--p-yellow-100) !important;
}
.focus\:text-yellow-200:focus {
  color: var(--p-yellow-200) !important;
}
.focus\:text-yellow-300:focus {
  color: var(--p-yellow-300) !important;
}
.focus\:text-yellow-400:focus {
  color: var(--p-yellow-400) !important;
}
.focus\:text-yellow-500:focus {
  color: var(--p-yellow-500) !important;
}
.focus\:text-yellow-600:focus {
  color: var(--p-yellow-600) !important;
}
.focus\:text-yellow-700:focus {
  color: var(--p-yellow-700) !important;
}
.focus\:text-yellow-800:focus {
  color: var(--p-yellow-800) !important;
}
.focus\:text-yellow-900:focus {
  color: var(--p-yellow-900) !important;
}

.hover\:text-yellow-50:hover {
  color: var(--p-yellow-50) !important;
}
.hover\:text-yellow-100:hover {
  color: var(--p-yellow-100) !important;
}
.hover\:text-yellow-200:hover {
  color: var(--p-yellow-200) !important;
}
.hover\:text-yellow-300:hover {
  color: var(--p-yellow-300) !important;
}
.hover\:text-yellow-400:hover {
  color: var(--p-yellow-400) !important;
}
.hover\:text-yellow-500:hover {
  color: var(--p-yellow-500) !important;
}
.hover\:text-yellow-600:hover {
  color: var(--p-yellow-600) !important;
}
.hover\:text-yellow-700:hover {
  color: var(--p-yellow-700) !important;
}
.hover\:text-yellow-800:hover {
  color: var(--p-yellow-800) !important;
}
.hover\:text-yellow-900:hover {
  color: var(--p-yellow-900) !important;
}

.active\:text-yellow-50:active {
  color: var(--p-yellow-50) !important;
}
.active\:text-yellow-100:active {
  color: var(--p-yellow-100) !important;
}
.active\:text-yellow-200:active {
  color: var(--p-yellow-200) !important;
}
.active\:text-yellow-300:active {
  color: var(--p-yellow-300) !important;
}
.active\:text-yellow-400:active {
  color: var(--p-yellow-400) !important;
}
.active\:text-yellow-500:active {
  color: var(--p-yellow-500) !important;
}
.active\:text-yellow-600:active {
  color: var(--p-yellow-600) !important;
}
.active\:text-yellow-700:active {
  color: var(--p-yellow-700) !important;
}
.active\:text-yellow-800:active {
  color: var(--p-yellow-800) !important;
}
.active\:text-yellow-900:active {
  color: var(--p-yellow-900) !important;
}

.text-cyan-50 {
  color: var(--p-cyan-50) !important;
}
.text-cyan-100 {
  color: var(--p-cyan-100) !important;
}
.text-cyan-200 {
  color: var(--p-cyan-200) !important;
}
.text-cyan-300 {
  color: var(--p-cyan-300) !important;
}
.text-cyan-400 {
  color: var(--p-cyan-400) !important;
}
.text-cyan-500 {
  color: var(--p-cyan-500) !important;
}
.text-cyan-600 {
  color: var(--p-cyan-600) !important;
}
.text-cyan-700 {
  color: var(--p-cyan-700) !important;
}
.text-cyan-800 {
  color: var(--p-cyan-800) !important;
}
.text-cyan-900 {
  color: var(--p-cyan-900) !important;
}

.focus\:text-cyan-50:focus {
  color: var(--p-cyan-50) !important;
}
.focus\:text-cyan-100:focus {
  color: var(--p-cyan-100) !important;
}
.focus\:text-cyan-200:focus {
  color: var(--p-cyan-200) !important;
}
.focus\:text-cyan-300:focus {
  color: var(--p-cyan-300) !important;
}
.focus\:text-cyan-400:focus {
  color: var(--p-cyan-400) !important;
}
.focus\:text-cyan-500:focus {
  color: var(--p-cyan-500) !important;
}
.focus\:text-cyan-600:focus {
  color: var(--p-cyan-600) !important;
}
.focus\:text-cyan-700:focus {
  color: var(--p-cyan-700) !important;
}
.focus\:text-cyan-800:focus {
  color: var(--p-cyan-800) !important;
}
.focus\:text-cyan-900:focus {
  color: var(--p-cyan-900) !important;
}

.hover\:text-cyan-50:hover {
  color: var(--p-cyan-50) !important;
}
.hover\:text-cyan-100:hover {
  color: var(--p-cyan-100) !important;
}
.hover\:text-cyan-200:hover {
  color: var(--p-cyan-200) !important;
}
.hover\:text-cyan-300:hover {
  color: var(--p-cyan-300) !important;
}
.hover\:text-cyan-400:hover {
  color: var(--p-cyan-400) !important;
}
.hover\:text-cyan-500:hover {
  color: var(--p-cyan-500) !important;
}
.hover\:text-cyan-600:hover {
  color: var(--p-cyan-600) !important;
}
.hover\:text-cyan-700:hover {
  color: var(--p-cyan-700) !important;
}
.hover\:text-cyan-800:hover {
  color: var(--p-cyan-800) !important;
}
.hover\:text-cyan-900:hover {
  color: var(--p-cyan-900) !important;
}

.active\:text-cyan-50:active {
  color: var(--p-cyan-50) !important;
}
.active\:text-cyan-100:active {
  color: var(--p-cyan-100) !important;
}
.active\:text-cyan-200:active {
  color: var(--p-cyan-200) !important;
}
.active\:text-cyan-300:active {
  color: var(--p-cyan-300) !important;
}
.active\:text-cyan-400:active {
  color: var(--p-cyan-400) !important;
}
.active\:text-cyan-500:active {
  color: var(--p-cyan-500) !important;
}
.active\:text-cyan-600:active {
  color: var(--p-cyan-600) !important;
}
.active\:text-cyan-700:active {
  color: var(--p-cyan-700) !important;
}
.active\:text-cyan-800:active {
  color: var(--p-cyan-800) !important;
}
.active\:text-cyan-900:active {
  color: var(--p-cyan-900) !important;
}

.text-pink-50 {
  color: var(--p-pink-50) !important;
}
.text-pink-100 {
  color: var(--p-pink-100) !important;
}
.text-pink-200 {
  color: var(--p-pink-200) !important;
}
.text-pink-300 {
  color: var(--p-pink-300) !important;
}
.text-pink-400 {
  color: var(--p-pink-400) !important;
}
.text-pink-500 {
  color: var(--p-pink-500) !important;
}
.text-pink-600 {
  color: var(--p-pink-600) !important;
}
.text-pink-700 {
  color: var(--p-pink-700) !important;
}
.text-pink-800 {
  color: var(--p-pink-800) !important;
}
.text-pink-900 {
  color: var(--p-pink-900) !important;
}

.focus\:text-pink-50:focus {
  color: var(--p-pink-50) !important;
}
.focus\:text-pink-100:focus {
  color: var(--p-pink-100) !important;
}
.focus\:text-pink-200:focus {
  color: var(--p-pink-200) !important;
}
.focus\:text-pink-300:focus {
  color: var(--p-pink-300) !important;
}
.focus\:text-pink-400:focus {
  color: var(--p-pink-400) !important;
}
.focus\:text-pink-500:focus {
  color: var(--p-pink-500) !important;
}
.focus\:text-pink-600:focus {
  color: var(--p-pink-600) !important;
}
.focus\:text-pink-700:focus {
  color: var(--p-pink-700) !important;
}
.focus\:text-pink-800:focus {
  color: var(--p-pink-800) !important;
}
.focus\:text-pink-900:focus {
  color: var(--p-pink-900) !important;
}

.hover\:text-pink-50:hover {
  color: var(--p-pink-50) !important;
}
.hover\:text-pink-100:hover {
  color: var(--p-pink-100) !important;
}
.hover\:text-pink-200:hover {
  color: var(--p-pink-200) !important;
}
.hover\:text-pink-300:hover {
  color: var(--p-pink-300) !important;
}
.hover\:text-pink-400:hover {
  color: var(--p-pink-400) !important;
}
.hover\:text-pink-500:hover {
  color: var(--p-pink-500) !important;
}
.hover\:text-pink-600:hover {
  color: var(--p-pink-600) !important;
}
.hover\:text-pink-700:hover {
  color: var(--p-pink-700) !important;
}
.hover\:text-pink-800:hover {
  color: var(--p-pink-800) !important;
}
.hover\:text-pink-900:hover {
  color: var(--p-pink-900) !important;
}

.active\:text-pink-50:active {
  color: var(--p-pink-50) !important;
}
.active\:text-pink-100:active {
  color: var(--p-pink-100) !important;
}
.active\:text-pink-200:active {
  color: var(--p-pink-200) !important;
}
.active\:text-pink-300:active {
  color: var(--p-pink-300) !important;
}
.active\:text-pink-400:active {
  color: var(--p-pink-400) !important;
}
.active\:text-pink-500:active {
  color: var(--p-pink-500) !important;
}
.active\:text-pink-600:active {
  color: var(--p-pink-600) !important;
}
.active\:text-pink-700:active {
  color: var(--p-pink-700) !important;
}
.active\:text-pink-800:active {
  color: var(--p-pink-800) !important;
}
.active\:text-pink-900:active {
  color: var(--p-pink-900) !important;
}

.text-indigo-50 {
  color: var(--p-indigo-50) !important;
}
.text-indigo-100 {
  color: var(--p-indigo-100) !important;
}
.text-indigo-200 {
  color: var(--p-indigo-200) !important;
}
.text-indigo-300 {
  color: var(--p-indigo-300) !important;
}
.text-indigo-400 {
  color: var(--p-indigo-400) !important;
}
.text-indigo-500 {
  color: var(--p-indigo-500) !important;
}
.text-indigo-600 {
  color: var(--p-indigo-600) !important;
}
.text-indigo-700 {
  color: var(--p-indigo-700) !important;
}
.text-indigo-800 {
  color: var(--p-indigo-800) !important;
}
.text-indigo-900 {
  color: var(--p-indigo-900) !important;
}

.focus\:text-indigo-50:focus {
  color: var(--p-indigo-50) !important;
}
.focus\:text-indigo-100:focus {
  color: var(--p-indigo-100) !important;
}
.focus\:text-indigo-200:focus {
  color: var(--p-indigo-200) !important;
}
.focus\:text-indigo-300:focus {
  color: var(--p-indigo-300) !important;
}
.focus\:text-indigo-400:focus {
  color: var(--p-indigo-400) !important;
}
.focus\:text-indigo-500:focus {
  color: var(--p-indigo-500) !important;
}
.focus\:text-indigo-600:focus {
  color: var(--p-indigo-600) !important;
}
.focus\:text-indigo-700:focus {
  color: var(--p-indigo-700) !important;
}
.focus\:text-indigo-800:focus {
  color: var(--p-indigo-800) !important;
}
.focus\:text-indigo-900:focus {
  color: var(--p-indigo-900) !important;
}

.hover\:text-indigo-50:hover {
  color: var(--p-indigo-50) !important;
}
.hover\:text-indigo-100:hover {
  color: var(--p-indigo-100) !important;
}
.hover\:text-indigo-200:hover {
  color: var(--p-indigo-200) !important;
}
.hover\:text-indigo-300:hover {
  color: var(--p-indigo-300) !important;
}
.hover\:text-indigo-400:hover {
  color: var(--p-indigo-400) !important;
}
.hover\:text-indigo-500:hover {
  color: var(--p-indigo-500) !important;
}
.hover\:text-indigo-600:hover {
  color: var(--p-indigo-600) !important;
}
.hover\:text-indigo-700:hover {
  color: var(--p-indigo-700) !important;
}
.hover\:text-indigo-800:hover {
  color: var(--p-indigo-800) !important;
}
.hover\:text-indigo-900:hover {
  color: var(--p-indigo-900) !important;
}

.active\:text-indigo-50:active {
  color: var(--p-indigo-50) !important;
}
.active\:text-indigo-100:active {
  color: var(--p-indigo-100) !important;
}
.active\:text-indigo-200:active {
  color: var(--p-indigo-200) !important;
}
.active\:text-indigo-300:active {
  color: var(--p-indigo-300) !important;
}
.active\:text-indigo-400:active {
  color: var(--p-indigo-400) !important;
}
.active\:text-indigo-500:active {
  color: var(--p-indigo-500) !important;
}
.active\:text-indigo-600:active {
  color: var(--p-indigo-600) !important;
}
.active\:text-indigo-700:active {
  color: var(--p-indigo-700) !important;
}
.active\:text-indigo-800:active {
  color: var(--p-indigo-800) !important;
}
.active\:text-indigo-900:active {
  color: var(--p-indigo-900) !important;
}

.text-teal-50 {
  color: var(--p-teal-50) !important;
}
.text-teal-100 {
  color: var(--p-teal-100) !important;
}
.text-teal-200 {
  color: var(--p-teal-200) !important;
}
.text-teal-300 {
  color: var(--p-teal-300) !important;
}
.text-teal-400 {
  color: var(--p-teal-400) !important;
}
.text-teal-500 {
  color: var(--p-teal-500) !important;
}
.text-teal-600 {
  color: var(--p-teal-600) !important;
}
.text-teal-700 {
  color: var(--p-teal-700) !important;
}
.text-teal-800 {
  color: var(--p-teal-800) !important;
}
.text-teal-900 {
  color: var(--p-teal-900) !important;
}

.focus\:text-teal-50:focus {
  color: var(--p-teal-50) !important;
}
.focus\:text-teal-100:focus {
  color: var(--p-teal-100) !important;
}
.focus\:text-teal-200:focus {
  color: var(--p-teal-200) !important;
}
.focus\:text-teal-300:focus {
  color: var(--p-teal-300) !important;
}
.focus\:text-teal-400:focus {
  color: var(--p-teal-400) !important;
}
.focus\:text-teal-500:focus {
  color: var(--p-teal-500) !important;
}
.focus\:text-teal-600:focus {
  color: var(--p-teal-600) !important;
}
.focus\:text-teal-700:focus {
  color: var(--p-teal-700) !important;
}
.focus\:text-teal-800:focus {
  color: var(--p-teal-800) !important;
}
.focus\:text-teal-900:focus {
  color: var(--p-teal-900) !important;
}

.hover\:text-teal-50:hover {
  color: var(--p-teal-50) !important;
}
.hover\:text-teal-100:hover {
  color: var(--p-teal-100) !important;
}
.hover\:text-teal-200:hover {
  color: var(--p-teal-200) !important;
}
.hover\:text-teal-300:hover {
  color: var(--p-teal-300) !important;
}
.hover\:text-teal-400:hover {
  color: var(--p-teal-400) !important;
}
.hover\:text-teal-500:hover {
  color: var(--p-teal-500) !important;
}
.hover\:text-teal-600:hover {
  color: var(--p-teal-600) !important;
}
.hover\:text-teal-700:hover {
  color: var(--p-teal-700) !important;
}
.hover\:text-teal-800:hover {
  color: var(--p-teal-800) !important;
}
.hover\:text-teal-900:hover {
  color: var(--p-teal-900) !important;
}

.active\:text-teal-50:active {
  color: var(--p-teal-50) !important;
}
.active\:text-teal-100:active {
  color: var(--p-teal-100) !important;
}
.active\:text-teal-200:active {
  color: var(--p-teal-200) !important;
}
.active\:text-teal-300:active {
  color: var(--p-teal-300) !important;
}
.active\:text-teal-400:active {
  color: var(--p-teal-400) !important;
}
.active\:text-teal-500:active {
  color: var(--p-teal-500) !important;
}
.active\:text-teal-600:active {
  color: var(--p-teal-600) !important;
}
.active\:text-teal-700:active {
  color: var(--p-teal-700) !important;
}
.active\:text-teal-800:active {
  color: var(--p-teal-800) !important;
}
.active\:text-teal-900:active {
  color: var(--p-teal-900) !important;
}

.text-orange-50 {
  color: var(--p-orange-50) !important;
}
.text-orange-100 {
  color: var(--p-orange-100) !important;
}
.text-orange-200 {
  color: var(--p-orange-200) !important;
}
.text-orange-300 {
  color: var(--p-orange-300) !important;
}
.text-orange-400 {
  color: var(--p-orange-400) !important;
}
.text-orange-500 {
  color: var(--p-orange-500) !important;
}
.text-orange-600 {
  color: var(--p-orange-600) !important;
}
.text-orange-700 {
  color: var(--p-orange-700) !important;
}
.text-orange-800 {
  color: var(--p-orange-800) !important;
}
.text-orange-900 {
  color: var(--p-orange-900) !important;
}

.focus\:text-orange-50:focus {
  color: var(--p-orange-50) !important;
}
.focus\:text-orange-100:focus {
  color: var(--p-orange-100) !important;
}
.focus\:text-orange-200:focus {
  color: var(--p-orange-200) !important;
}
.focus\:text-orange-300:focus {
  color: var(--p-orange-300) !important;
}
.focus\:text-orange-400:focus {
  color: var(--p-orange-400) !important;
}
.focus\:text-orange-500:focus {
  color: var(--p-orange-500) !important;
}
.focus\:text-orange-600:focus {
  color: var(--p-orange-600) !important;
}
.focus\:text-orange-700:focus {
  color: var(--p-orange-700) !important;
}
.focus\:text-orange-800:focus {
  color: var(--p-orange-800) !important;
}
.focus\:text-orange-900:focus {
  color: var(--p-orange-900) !important;
}

.hover\:text-orange-50:hover {
  color: var(--p-orange-50) !important;
}
.hover\:text-orange-100:hover {
  color: var(--p-orange-100) !important;
}
.hover\:text-orange-200:hover {
  color: var(--p-orange-200) !important;
}
.hover\:text-orange-300:hover {
  color: var(--p-orange-300) !important;
}
.hover\:text-orange-400:hover {
  color: var(--p-orange-400) !important;
}
.hover\:text-orange-500:hover {
  color: var(--p-orange-500) !important;
}
.hover\:text-orange-600:hover {
  color: var(--p-orange-600) !important;
}
.hover\:text-orange-700:hover {
  color: var(--p-orange-700) !important;
}
.hover\:text-orange-800:hover {
  color: var(--p-orange-800) !important;
}
.hover\:text-orange-900:hover {
  color: var(--p-orange-900) !important;
}

.active\:text-orange-50:active {
  color: var(--p-orange-50) !important;
}
.active\:text-orange-100:active {
  color: var(--p-orange-100) !important;
}
.active\:text-orange-200:active {
  color: var(--p-orange-200) !important;
}
.active\:text-orange-300:active {
  color: var(--p-orange-300) !important;
}
.active\:text-orange-400:active {
  color: var(--p-orange-400) !important;
}
.active\:text-orange-500:active {
  color: var(--p-orange-500) !important;
}
.active\:text-orange-600:active {
  color: var(--p-orange-600) !important;
}
.active\:text-orange-700:active {
  color: var(--p-orange-700) !important;
}
.active\:text-orange-800:active {
  color: var(--p-orange-800) !important;
}
.active\:text-orange-900:active {
  color: var(--p-orange-900) !important;
}

.text-bluegray-50 {
  color: var(--p-bluegray-50) !important;
}
.text-bluegray-100 {
  color: var(--p-bluegray-100) !important;
}
.text-bluegray-200 {
  color: var(--p-bluegray-200) !important;
}
.text-bluegray-300 {
  color: var(--p-bluegray-300) !important;
}
.text-bluegray-400 {
  color: var(--p-bluegray-400) !important;
}
.text-bluegray-500 {
  color: var(--p-bluegray-500) !important;
}
.text-bluegray-600 {
  color: var(--p-bluegray-600) !important;
}
.text-bluegray-700 {
  color: var(--p-bluegray-700) !important;
}
.text-bluegray-800 {
  color: var(--p-bluegray-800) !important;
}
.text-bluegray-900 {
  color: var(--p-bluegray-900) !important;
}

.focus\:text-bluegray-50:focus {
  color: var(--p-bluegray-50) !important;
}
.focus\:text-bluegray-100:focus {
  color: var(--p-bluegray-100) !important;
}
.focus\:text-bluegray-200:focus {
  color: var(--p-bluegray-200) !important;
}
.focus\:text-bluegray-300:focus {
  color: var(--p-bluegray-300) !important;
}
.focus\:text-bluegray-400:focus {
  color: var(--p-bluegray-400) !important;
}
.focus\:text-bluegray-500:focus {
  color: var(--p-bluegray-500) !important;
}
.focus\:text-bluegray-600:focus {
  color: var(--p-bluegray-600) !important;
}
.focus\:text-bluegray-700:focus {
  color: var(--p-bluegray-700) !important;
}
.focus\:text-bluegray-800:focus {
  color: var(--p-bluegray-800) !important;
}
.focus\:text-bluegray-900:focus {
  color: var(--p-bluegray-900) !important;
}

.hover\:text-bluegray-50:hover {
  color: var(--p-bluegray-50) !important;
}
.hover\:text-bluegray-100:hover {
  color: var(--p-bluegray-100) !important;
}
.hover\:text-bluegray-200:hover {
  color: var(--p-bluegray-200) !important;
}
.hover\:text-bluegray-300:hover {
  color: var(--p-bluegray-300) !important;
}
.hover\:text-bluegray-400:hover {
  color: var(--p-bluegray-400) !important;
}
.hover\:text-bluegray-500:hover {
  color: var(--p-bluegray-500) !important;
}
.hover\:text-bluegray-600:hover {
  color: var(--p-bluegray-600) !important;
}
.hover\:text-bluegray-700:hover {
  color: var(--p-bluegray-700) !important;
}
.hover\:text-bluegray-800:hover {
  color: var(--p-bluegray-800) !important;
}
.hover\:text-bluegray-900:hover {
  color: var(--p-bluegray-900) !important;
}

.active\:text-bluegray-50:active {
  color: var(--p-bluegray-50) !important;
}
.active\:text-bluegray-100:active {
  color: var(--p-bluegray-100) !important;
}
.active\:text-bluegray-200:active {
  color: var(--p-bluegray-200) !important;
}
.active\:text-bluegray-300:active {
  color: var(--p-bluegray-300) !important;
}
.active\:text-bluegray-400:active {
  color: var(--p-bluegray-400) !important;
}
.active\:text-bluegray-500:active {
  color: var(--p-bluegray-500) !important;
}
.active\:text-bluegray-600:active {
  color: var(--p-bluegray-600) !important;
}
.active\:text-bluegray-700:active {
  color: var(--p-bluegray-700) !important;
}
.active\:text-bluegray-800:active {
  color: var(--p-bluegray-800) !important;
}
.active\:text-bluegray-900:active {
  color: var(--p-bluegray-900) !important;
}

.text-purple-50 {
  color: var(--p-purple-50) !important;
}
.text-purple-100 {
  color: var(--p-purple-100) !important;
}
.text-purple-200 {
  color: var(--p-purple-200) !important;
}
.text-purple-300 {
  color: var(--p-purple-300) !important;
}
.text-purple-400 {
  color: var(--p-purple-400) !important;
}
.text-purple-500 {
  color: var(--p-purple-500) !important;
}
.text-purple-600 {
  color: var(--p-purple-600) !important;
}
.text-purple-700 {
  color: var(--p-purple-700) !important;
}
.text-purple-800 {
  color: var(--p-purple-800) !important;
}
.text-purple-900 {
  color: var(--p-purple-900) !important;
}

.focus\:text-purple-50:focus {
  color: var(--p-purple-50) !important;
}
.focus\:text-purple-100:focus {
  color: var(--p-purple-100) !important;
}
.focus\:text-purple-200:focus {
  color: var(--p-purple-200) !important;
}
.focus\:text-purple-300:focus {
  color: var(--p-purple-300) !important;
}
.focus\:text-purple-400:focus {
  color: var(--p-purple-400) !important;
}
.focus\:text-purple-500:focus {
  color: var(--p-purple-500) !important;
}
.focus\:text-purple-600:focus {
  color: var(--p-purple-600) !important;
}
.focus\:text-purple-700:focus {
  color: var(--p-purple-700) !important;
}
.focus\:text-purple-800:focus {
  color: var(--p-purple-800) !important;
}
.focus\:text-purple-900:focus {
  color: var(--p-purple-900) !important;
}

.hover\:text-purple-50:hover {
  color: var(--p-purple-50) !important;
}
.hover\:text-purple-100:hover {
  color: var(--p-purple-100) !important;
}
.hover\:text-purple-200:hover {
  color: var(--p-purple-200) !important;
}
.hover\:text-purple-300:hover {
  color: var(--p-purple-300) !important;
}
.hover\:text-purple-400:hover {
  color: var(--p-purple-400) !important;
}
.hover\:text-purple-500:hover {
  color: var(--p-purple-500) !important;
}
.hover\:text-purple-600:hover {
  color: var(--p-purple-600) !important;
}
.hover\:text-purple-700:hover {
  color: var(--p-purple-700) !important;
}
.hover\:text-purple-800:hover {
  color: var(--p-purple-800) !important;
}
.hover\:text-purple-900:hover {
  color: var(--p-purple-900) !important;
}

.active\:text-purple-50:active {
  color: var(--p-purple-50) !important;
}
.active\:text-purple-100:active {
  color: var(--p-purple-100) !important;
}
.active\:text-purple-200:active {
  color: var(--p-purple-200) !important;
}
.active\:text-purple-300:active {
  color: var(--p-purple-300) !important;
}
.active\:text-purple-400:active {
  color: var(--p-purple-400) !important;
}
.active\:text-purple-500:active {
  color: var(--p-purple-500) !important;
}
.active\:text-purple-600:active {
  color: var(--p-purple-600) !important;
}
.active\:text-purple-700:active {
  color: var(--p-purple-700) !important;
}
.active\:text-purple-800:active {
  color: var(--p-purple-800) !important;
}
.active\:text-purple-900:active {
  color: var(--p-purple-900) !important;
}

.text-gray-50 {
  color: var(--p-gray-50) !important;
}
.text-gray-100 {
  color: var(--p-gray-100) !important;
}
.text-gray-200 {
  color: var(--p-gray-200) !important;
}
.text-gray-300 {
  color: var(--p-gray-300) !important;
}
.text-gray-400 {
  color: var(--p-gray-400) !important;
}
.text-gray-500 {
  color: var(--p-gray-500) !important;
}
.text-gray-600 {
  color: var(--p-gray-600) !important;
}
.text-gray-700 {
  color: var(--p-gray-700) !important;
}
.text-gray-800 {
  color: var(--p-gray-800) !important;
}
.text-gray-900 {
  color: var(--p-gray-900) !important;
}

.focus\:text-gray-50:focus {
  color: var(--p-gray-50) !important;
}
.focus\:text-gray-100:focus {
  color: var(--p-gray-100) !important;
}
.focus\:text-gray-200:focus {
  color: var(--p-gray-200) !important;
}
.focus\:text-gray-300:focus {
  color: var(--p-gray-300) !important;
}
.focus\:text-gray-400:focus {
  color: var(--p-gray-400) !important;
}
.focus\:text-gray-500:focus {
  color: var(--p-gray-500) !important;
}
.focus\:text-gray-600:focus {
  color: var(--p-gray-600) !important;
}
.focus\:text-gray-700:focus {
  color: var(--p-gray-700) !important;
}
.focus\:text-gray-800:focus {
  color: var(--p-gray-800) !important;
}
.focus\:text-gray-900:focus {
  color: var(--p-gray-900) !important;
}

.hover\:text-gray-50:hover {
  color: var(--p-gray-50) !important;
}
.hover\:text-gray-100:hover {
  color: var(--p-gray-100) !important;
}
.hover\:text-gray-200:hover {
  color: var(--p-gray-200) !important;
}
.hover\:text-gray-300:hover {
  color: var(--p-gray-300) !important;
}
.hover\:text-gray-400:hover {
  color: var(--p-gray-400) !important;
}
.hover\:text-gray-500:hover {
  color: var(--p-gray-500) !important;
}
.hover\:text-gray-600:hover {
  color: var(--p-gray-600) !important;
}
.hover\:text-gray-700:hover {
  color: var(--p-gray-700) !important;
}
.hover\:text-gray-800:hover {
  color: var(--p-gray-800) !important;
}
.hover\:text-gray-900:hover {
  color: var(--p-gray-900) !important;
}

.active\:text-gray-50:active {
  color: var(--p-gray-50) !important;
}
.active\:text-gray-100:active {
  color: var(--p-gray-100) !important;
}
.active\:text-gray-200:active {
  color: var(--p-gray-200) !important;
}
.active\:text-gray-300:active {
  color: var(--p-gray-300) !important;
}
.active\:text-gray-400:active {
  color: var(--p-gray-400) !important;
}
.active\:text-gray-500:active {
  color: var(--p-gray-500) !important;
}
.active\:text-gray-600:active {
  color: var(--p-gray-600) !important;
}
.active\:text-gray-700:active {
  color: var(--p-gray-700) !important;
}
.active\:text-gray-800:active {
  color: var(--p-gray-800) !important;
}
.active\:text-gray-900:active {
  color: var(--p-gray-900) !important;
}

.text-red-50 {
  color: var(--p-red-50) !important;
}
.text-red-100 {
  color: var(--p-red-100) !important;
}
.text-red-200 {
  color: var(--p-red-200) !important;
}
.text-red-300 {
  color: var(--p-red-300) !important;
}
.text-red-400 {
  color: var(--p-red-400) !important;
}
.text-red-500 {
  color: var(--p-red-500) !important;
}
.text-red-600 {
  color: var(--p-red-600) !important;
}
.text-red-700 {
  color: var(--p-red-700) !important;
}
.text-red-800 {
  color: var(--p-red-800) !important;
}
.text-red-900 {
  color: var(--p-red-900) !important;
}

.focus\:text-red-50:focus {
  color: var(--p-red-50) !important;
}
.focus\:text-red-100:focus {
  color: var(--p-red-100) !important;
}
.focus\:text-red-200:focus {
  color: var(--p-red-200) !important;
}
.focus\:text-red-300:focus {
  color: var(--p-red-300) !important;
}
.focus\:text-red-400:focus {
  color: var(--p-red-400) !important;
}
.focus\:text-red-500:focus {
  color: var(--p-red-500) !important;
}
.focus\:text-red-600:focus {
  color: var(--p-red-600) !important;
}
.focus\:text-red-700:focus {
  color: var(--p-red-700) !important;
}
.focus\:text-red-800:focus {
  color: var(--p-red-800) !important;
}
.focus\:text-red-900:focus {
  color: var(--p-red-900) !important;
}

.hover\:text-red-50:hover {
  color: var(--p-red-50) !important;
}
.hover\:text-red-100:hover {
  color: var(--p-red-100) !important;
}
.hover\:text-red-200:hover {
  color: var(--p-red-200) !important;
}
.hover\:text-red-300:hover {
  color: var(--p-red-300) !important;
}
.hover\:text-red-400:hover {
  color: var(--p-red-400) !important;
}
.hover\:text-red-500:hover {
  color: var(--p-red-500) !important;
}
.hover\:text-red-600:hover {
  color: var(--p-red-600) !important;
}
.hover\:text-red-700:hover {
  color: var(--p-red-700) !important;
}
.hover\:text-red-800:hover {
  color: var(--p-red-800) !important;
}
.hover\:text-red-900:hover {
  color: var(--p-red-900) !important;
}

.active\:text-red-50:active {
  color: var(--p-red-50) !important;
}
.active\:text-red-100:active {
  color: var(--p-red-100) !important;
}
.active\:text-red-200:active {
  color: var(--p-red-200) !important;
}
.active\:text-red-300:active {
  color: var(--p-red-300) !important;
}
.active\:text-red-400:active {
  color: var(--p-red-400) !important;
}
.active\:text-red-500:active {
  color: var(--p-red-500) !important;
}
.active\:text-red-600:active {
  color: var(--p-red-600) !important;
}
.active\:text-red-700:active {
  color: var(--p-red-700) !important;
}
.active\:text-red-800:active {
  color: var(--p-red-800) !important;
}
.active\:text-red-900:active {
  color: var(--p-red-900) !important;
}

.text-primary-50 {
  color: var(--p-primary-50) !important;
}
.text-primary-100 {
  color: var(--p-primary-100) !important;
}
.text-primary-200 {
  color: var(--p-primary-200) !important;
}
.text-primary-300 {
  color: var(--p-primary-300) !important;
}
.text-primary-400 {
  color: var(--p-primary-400) !important;
}
.text-primary-500 {
  color: var(--p-primary-500) !important;
}
.text-primary-600 {
  color: var(--p-primary-600) !important;
}
.text-primary-700 {
  color: var(--p-primary-700) !important;
}
.text-primary-800 {
  color: var(--p-primary-800) !important;
}
.text-primary-900 {
  color: var(--p-primary-900) !important;
}

.focus\:text-primary-50:focus {
  color: var(--p-primary-50) !important;
}
.focus\:text-primary-100:focus {
  color: var(--p-primary-100) !important;
}
.focus\:text-primary-200:focus {
  color: var(--p-primary-200) !important;
}
.focus\:text-primary-300:focus {
  color: var(--p-primary-300) !important;
}
.focus\:text-primary-400:focus {
  color: var(--p-primary-400) !important;
}
.focus\:text-primary-500:focus {
  color: var(--p-primary-500) !important;
}
.focus\:text-primary-600:focus {
  color: var(--p-primary-600) !important;
}
.focus\:text-primary-700:focus {
  color: var(--p-primary-700) !important;
}
.focus\:text-primary-800:focus {
  color: var(--p-primary-800) !important;
}
.focus\:text-primary-900:focus {
  color: var(--p-primary-900) !important;
}

.hover\:text-primary-50:hover {
  color: var(--p-primary-50) !important;
}
.hover\:text-primary-100:hover {
  color: var(--p-primary-100) !important;
}
.hover\:text-primary-200:hover {
  color: var(--p-primary-200) !important;
}
.hover\:text-primary-300:hover {
  color: var(--p-primary-300) !important;
}
.hover\:text-primary-400:hover {
  color: var(--p-primary-400) !important;
}
.hover\:text-primary-500:hover {
  color: var(--p-primary-500) !important;
}
.hover\:text-primary-600:hover {
  color: var(--p-primary-600) !important;
}
.hover\:text-primary-700:hover {
  color: var(--p-primary-700) !important;
}
.hover\:text-primary-800:hover {
  color: var(--p-primary-800) !important;
}
.hover\:text-primary-900:hover {
  color: var(--p-primary-900) !important;
}

.active\:text-primary-50:active {
  color: var(--p-primary-50) !important;
}
.active\:text-primary-100:active {
  color: var(--p-primary-100) !important;
}
.active\:text-primary-200:active {
  color: var(--p-primary-200) !important;
}
.active\:text-primary-300:active {
  color: var(--p-primary-300) !important;
}
.active\:text-primary-400:active {
  color: var(--p-primary-400) !important;
}
.active\:text-primary-500:active {
  color: var(--p-primary-500) !important;
}
.active\:text-primary-600:active {
  color: var(--p-primary-600) !important;
}
.active\:text-primary-700:active {
  color: var(--p-primary-700) !important;
}
.active\:text-primary-800:active {
  color: var(--p-primary-800) !important;
}
.active\:text-primary-900:active {
  color: var(--p-primary-900) !important;
}

.bg-blue-50 {
  background-color: var(--p-blue-50) !important;
}
.bg-blue-100 {
  background-color: var(--p-blue-100) !important;
}
.bg-blue-200 {
  background-color: var(--p-blue-200) !important;
}
.bg-blue-300 {
  background-color: var(--p-blue-300) !important;
}
.bg-blue-400 {
  background-color: var(--p-blue-400) !important;
}
.bg-blue-500 {
  background-color: var(--p-blue-500) !important;
}
.bg-blue-600 {
  background-color: var(--p-blue-600) !important;
}
.bg-blue-700 {
  background-color: var(--p-blue-700) !important;
}
.bg-blue-800 {
  background-color: var(--p-blue-800) !important;
}
.bg-blue-900 {
  background-color: var(--p-blue-900) !important;
}

.focus\:bg-blue-50:focus {
  background-color: var(--p-blue-50) !important;
}
.focus\:bg-blue-100:focus {
  background-color: var(--p-blue-100) !important;
}
.focus\:bg-blue-200:focus {
  background-color: var(--p-blue-200) !important;
}
.focus\:bg-blue-300:focus {
  background-color: var(--p-blue-300) !important;
}
.focus\:bg-blue-400:focus {
  background-color: var(--p-blue-400) !important;
}
.focus\:bg-blue-500:focus {
  background-color: var(--p-blue-500) !important;
}
.focus\:bg-blue-600:focus {
  background-color: var(--p-blue-600) !important;
}
.focus\:bg-blue-700:focus {
  background-color: var(--p-blue-700) !important;
}
.focus\:bg-blue-800:focus {
  background-color: var(--p-blue-800) !important;
}
.focus\:bg-blue-900:focus {
  background-color: var(--p-blue-900) !important;
}

.hover\:bg-blue-50:hover {
  background-color: var(--p-blue-50) !important;
}
.hover\:bg-blue-100:hover {
  background-color: var(--p-blue-100) !important;
}
.hover\:bg-blue-200:hover {
  background-color: var(--p-blue-200) !important;
}
.hover\:bg-blue-300:hover {
  background-color: var(--p-blue-300) !important;
}
.hover\:bg-blue-400:hover {
  background-color: var(--p-blue-400) !important;
}
.hover\:bg-blue-500:hover {
  background-color: var(--p-blue-500) !important;
}
.hover\:bg-blue-600:hover {
  background-color: var(--p-blue-600) !important;
}
.hover\:bg-blue-700:hover {
  background-color: var(--p-blue-700) !important;
}
.hover\:bg-blue-800:hover {
  background-color: var(--p-blue-800) !important;
}
.hover\:bg-blue-900:hover {
  background-color: var(--p-blue-900) !important;
}

.active\:bg-blue-50:active {
  background-color: var(--p-blue-50) !important;
}
.active\:bg-blue-100:active {
  background-color: var(--p-blue-100) !important;
}
.active\:bg-blue-200:active {
  background-color: var(--p-blue-200) !important;
}
.active\:bg-blue-300:active {
  background-color: var(--p-blue-300) !important;
}
.active\:bg-blue-400:active {
  background-color: var(--p-blue-400) !important;
}
.active\:bg-blue-500:active {
  background-color: var(--p-blue-500) !important;
}
.active\:bg-blue-600:active {
  background-color: var(--p-blue-600) !important;
}
.active\:bg-blue-700:active {
  background-color: var(--p-blue-700) !important;
}
.active\:bg-blue-800:active {
  background-color: var(--p-blue-800) !important;
}
.active\:bg-blue-900:active {
  background-color: var(--p-blue-900) !important;
}

.bg-green-50 {
  background-color: var(--p-green-50) !important;
}
.bg-green-100 {
  background-color: var(--p-green-100) !important;
}
.bg-green-200 {
  background-color: var(--p-green-200) !important;
}
.bg-green-300 {
  background-color: var(--p-green-300) !important;
}
.bg-green-400 {
  background-color: var(--p-green-400) !important;
}
.bg-green-500 {
  background-color: var(--p-green-500) !important;
}
.bg-green-600 {
  background-color: var(--p-green-600) !important;
}
.bg-green-700 {
  background-color: var(--p-green-700) !important;
}
.bg-green-800 {
  background-color: var(--p-green-800) !important;
}
.bg-green-900 {
  background-color: var(--p-green-900) !important;
}

.focus\:bg-green-50:focus {
  background-color: var(--p-green-50) !important;
}
.focus\:bg-green-100:focus {
  background-color: var(--p-green-100) !important;
}
.focus\:bg-green-200:focus {
  background-color: var(--p-green-200) !important;
}
.focus\:bg-green-300:focus {
  background-color: var(--p-green-300) !important;
}
.focus\:bg-green-400:focus {
  background-color: var(--p-green-400) !important;
}
.focus\:bg-green-500:focus {
  background-color: var(--p-green-500) !important;
}
.focus\:bg-green-600:focus {
  background-color: var(--p-green-600) !important;
}
.focus\:bg-green-700:focus {
  background-color: var(--p-green-700) !important;
}
.focus\:bg-green-800:focus {
  background-color: var(--p-green-800) !important;
}
.focus\:bg-green-900:focus {
  background-color: var(--p-green-900) !important;
}

.hover\:bg-green-50:hover {
  background-color: var(--p-green-50) !important;
}
.hover\:bg-green-100:hover {
  background-color: var(--p-green-100) !important;
}
.hover\:bg-green-200:hover {
  background-color: var(--p-green-200) !important;
}
.hover\:bg-green-300:hover {
  background-color: var(--p-green-300) !important;
}
.hover\:bg-green-400:hover {
  background-color: var(--p-green-400) !important;
}
.hover\:bg-green-500:hover {
  background-color: var(--p-green-500) !important;
}
.hover\:bg-green-600:hover {
  background-color: var(--p-green-600) !important;
}
.hover\:bg-green-700:hover {
  background-color: var(--p-green-700) !important;
}
.hover\:bg-green-800:hover {
  background-color: var(--p-green-800) !important;
}
.hover\:bg-green-900:hover {
  background-color: var(--p-green-900) !important;
}

.active\:bg-green-50:active {
  background-color: var(--p-green-50) !important;
}
.active\:bg-green-100:active {
  background-color: var(--p-green-100) !important;
}
.active\:bg-green-200:active {
  background-color: var(--p-green-200) !important;
}
.active\:bg-green-300:active {
  background-color: var(--p-green-300) !important;
}
.active\:bg-green-400:active {
  background-color: var(--p-green-400) !important;
}
.active\:bg-green-500:active {
  background-color: var(--p-green-500) !important;
}
.active\:bg-green-600:active {
  background-color: var(--p-green-600) !important;
}
.active\:bg-green-700:active {
  background-color: var(--p-green-700) !important;
}
.active\:bg-green-800:active {
  background-color: var(--p-green-800) !important;
}
.active\:bg-green-900:active {
  background-color: var(--p-green-900) !important;
}

.bg-yellow-50 {
  background-color: var(--p-yellow-50) !important;
}
.bg-yellow-100 {
  background-color: var(--p-yellow-100) !important;
}
.bg-yellow-200 {
  background-color: var(--p-yellow-200) !important;
}
.bg-yellow-300 {
  background-color: var(--p-yellow-300) !important;
}
.bg-yellow-400 {
  background-color: var(--p-yellow-400) !important;
}
.bg-yellow-500 {
  background-color: var(--p-yellow-500) !important;
}
.bg-yellow-600 {
  background-color: var(--p-yellow-600) !important;
}
.bg-yellow-700 {
  background-color: var(--p-yellow-700) !important;
}
.bg-yellow-800 {
  background-color: var(--p-yellow-800) !important;
}
.bg-yellow-900 {
  background-color: var(--p-yellow-900) !important;
}

.focus\:bg-yellow-50:focus {
  background-color: var(--p-yellow-50) !important;
}
.focus\:bg-yellow-100:focus {
  background-color: var(--p-yellow-100) !important;
}
.focus\:bg-yellow-200:focus {
  background-color: var(--p-yellow-200) !important;
}
.focus\:bg-yellow-300:focus {
  background-color: var(--p-yellow-300) !important;
}
.focus\:bg-yellow-400:focus {
  background-color: var(--p-yellow-400) !important;
}
.focus\:bg-yellow-500:focus {
  background-color: var(--p-yellow-500) !important;
}
.focus\:bg-yellow-600:focus {
  background-color: var(--p-yellow-600) !important;
}
.focus\:bg-yellow-700:focus {
  background-color: var(--p-yellow-700) !important;
}
.focus\:bg-yellow-800:focus {
  background-color: var(--p-yellow-800) !important;
}
.focus\:bg-yellow-900:focus {
  background-color: var(--p-yellow-900) !important;
}

.hover\:bg-yellow-50:hover {
  background-color: var(--p-yellow-50) !important;
}
.hover\:bg-yellow-100:hover {
  background-color: var(--p-yellow-100) !important;
}
.hover\:bg-yellow-200:hover {
  background-color: var(--p-yellow-200) !important;
}
.hover\:bg-yellow-300:hover {
  background-color: var(--p-yellow-300) !important;
}
.hover\:bg-yellow-400:hover {
  background-color: var(--p-yellow-400) !important;
}
.hover\:bg-yellow-500:hover {
  background-color: var(--p-yellow-500) !important;
}
.hover\:bg-yellow-600:hover {
  background-color: var(--p-yellow-600) !important;
}
.hover\:bg-yellow-700:hover {
  background-color: var(--p-yellow-700) !important;
}
.hover\:bg-yellow-800:hover {
  background-color: var(--p-yellow-800) !important;
}
.hover\:bg-yellow-900:hover {
  background-color: var(--p-yellow-900) !important;
}

.active\:bg-yellow-50:active {
  background-color: var(--p-yellow-50) !important;
}
.active\:bg-yellow-100:active {
  background-color: var(--p-yellow-100) !important;
}
.active\:bg-yellow-200:active {
  background-color: var(--p-yellow-200) !important;
}
.active\:bg-yellow-300:active {
  background-color: var(--p-yellow-300) !important;
}
.active\:bg-yellow-400:active {
  background-color: var(--p-yellow-400) !important;
}
.active\:bg-yellow-500:active {
  background-color: var(--p-yellow-500) !important;
}
.active\:bg-yellow-600:active {
  background-color: var(--p-yellow-600) !important;
}
.active\:bg-yellow-700:active {
  background-color: var(--p-yellow-700) !important;
}
.active\:bg-yellow-800:active {
  background-color: var(--p-yellow-800) !important;
}
.active\:bg-yellow-900:active {
  background-color: var(--p-yellow-900) !important;
}

.bg-cyan-50 {
  background-color: var(--p-cyan-50) !important;
}
.bg-cyan-100 {
  background-color: var(--p-cyan-100) !important;
}
.bg-cyan-200 {
  background-color: var(--p-cyan-200) !important;
}
.bg-cyan-300 {
  background-color: var(--p-cyan-300) !important;
}
.bg-cyan-400 {
  background-color: var(--p-cyan-400) !important;
}
.bg-cyan-500 {
  background-color: var(--p-cyan-500) !important;
}
.bg-cyan-600 {
  background-color: var(--p-cyan-600) !important;
}
.bg-cyan-700 {
  background-color: var(--p-cyan-700) !important;
}
.bg-cyan-800 {
  background-color: var(--p-cyan-800) !important;
}
.bg-cyan-900 {
  background-color: var(--p-cyan-900) !important;
}

.focus\:bg-cyan-50:focus {
  background-color: var(--p-cyan-50) !important;
}
.focus\:bg-cyan-100:focus {
  background-color: var(--p-cyan-100) !important;
}
.focus\:bg-cyan-200:focus {
  background-color: var(--p-cyan-200) !important;
}
.focus\:bg-cyan-300:focus {
  background-color: var(--p-cyan-300) !important;
}
.focus\:bg-cyan-400:focus {
  background-color: var(--p-cyan-400) !important;
}
.focus\:bg-cyan-500:focus {
  background-color: var(--p-cyan-500) !important;
}
.focus\:bg-cyan-600:focus {
  background-color: var(--p-cyan-600) !important;
}
.focus\:bg-cyan-700:focus {
  background-color: var(--p-cyan-700) !important;
}
.focus\:bg-cyan-800:focus {
  background-color: var(--p-cyan-800) !important;
}
.focus\:bg-cyan-900:focus {
  background-color: var(--p-cyan-900) !important;
}

.hover\:bg-cyan-50:hover {
  background-color: var(--p-cyan-50) !important;
}
.hover\:bg-cyan-100:hover {
  background-color: var(--p-cyan-100) !important;
}
.hover\:bg-cyan-200:hover {
  background-color: var(--p-cyan-200) !important;
}
.hover\:bg-cyan-300:hover {
  background-color: var(--p-cyan-300) !important;
}
.hover\:bg-cyan-400:hover {
  background-color: var(--p-cyan-400) !important;
}
.hover\:bg-cyan-500:hover {
  background-color: var(--p-cyan-500) !important;
}
.hover\:bg-cyan-600:hover {
  background-color: var(--p-cyan-600) !important;
}
.hover\:bg-cyan-700:hover {
  background-color: var(--p-cyan-700) !important;
}
.hover\:bg-cyan-800:hover {
  background-color: var(--p-cyan-800) !important;
}
.hover\:bg-cyan-900:hover {
  background-color: var(--p-cyan-900) !important;
}

.active\:bg-cyan-50:active {
  background-color: var(--p-cyan-50) !important;
}
.active\:bg-cyan-100:active {
  background-color: var(--p-cyan-100) !important;
}
.active\:bg-cyan-200:active {
  background-color: var(--p-cyan-200) !important;
}
.active\:bg-cyan-300:active {
  background-color: var(--p-cyan-300) !important;
}
.active\:bg-cyan-400:active {
  background-color: var(--p-cyan-400) !important;
}
.active\:bg-cyan-500:active {
  background-color: var(--p-cyan-500) !important;
}
.active\:bg-cyan-600:active {
  background-color: var(--p-cyan-600) !important;
}
.active\:bg-cyan-700:active {
  background-color: var(--p-cyan-700) !important;
}
.active\:bg-cyan-800:active {
  background-color: var(--p-cyan-800) !important;
}
.active\:bg-cyan-900:active {
  background-color: var(--p-cyan-900) !important;
}

.bg-pink-50 {
  background-color: var(--p-pink-50) !important;
}
.bg-pink-100 {
  background-color: var(--p-pink-100) !important;
}
.bg-pink-200 {
  background-color: var(--p-pink-200) !important;
}
.bg-pink-300 {
  background-color: var(--p-pink-300) !important;
}
.bg-pink-400 {
  background-color: var(--p-pink-400) !important;
}
.bg-pink-500 {
  background-color: var(--p-pink-500) !important;
}
.bg-pink-600 {
  background-color: var(--p-pink-600) !important;
}
.bg-pink-700 {
  background-color: var(--p-pink-700) !important;
}
.bg-pink-800 {
  background-color: var(--p-pink-800) !important;
}
.bg-pink-900 {
  background-color: var(--p-pink-900) !important;
}

.focus\:bg-pink-50:focus {
  background-color: var(--p-pink-50) !important;
}
.focus\:bg-pink-100:focus {
  background-color: var(--p-pink-100) !important;
}
.focus\:bg-pink-200:focus {
  background-color: var(--p-pink-200) !important;
}
.focus\:bg-pink-300:focus {
  background-color: var(--p-pink-300) !important;
}
.focus\:bg-pink-400:focus {
  background-color: var(--p-pink-400) !important;
}
.focus\:bg-pink-500:focus {
  background-color: var(--p-pink-500) !important;
}
.focus\:bg-pink-600:focus {
  background-color: var(--p-pink-600) !important;
}
.focus\:bg-pink-700:focus {
  background-color: var(--p-pink-700) !important;
}
.focus\:bg-pink-800:focus {
  background-color: var(--p-pink-800) !important;
}
.focus\:bg-pink-900:focus {
  background-color: var(--p-pink-900) !important;
}

.hover\:bg-pink-50:hover {
  background-color: var(--p-pink-50) !important;
}
.hover\:bg-pink-100:hover {
  background-color: var(--p-pink-100) !important;
}
.hover\:bg-pink-200:hover {
  background-color: var(--p-pink-200) !important;
}
.hover\:bg-pink-300:hover {
  background-color: var(--p-pink-300) !important;
}
.hover\:bg-pink-400:hover {
  background-color: var(--p-pink-400) !important;
}
.hover\:bg-pink-500:hover {
  background-color: var(--p-pink-500) !important;
}
.hover\:bg-pink-600:hover {
  background-color: var(--p-pink-600) !important;
}
.hover\:bg-pink-700:hover {
  background-color: var(--p-pink-700) !important;
}
.hover\:bg-pink-800:hover {
  background-color: var(--p-pink-800) !important;
}
.hover\:bg-pink-900:hover {
  background-color: var(--p-pink-900) !important;
}

.active\:bg-pink-50:active {
  background-color: var(--p-pink-50) !important;
}
.active\:bg-pink-100:active {
  background-color: var(--p-pink-100) !important;
}
.active\:bg-pink-200:active {
  background-color: var(--p-pink-200) !important;
}
.active\:bg-pink-300:active {
  background-color: var(--p-pink-300) !important;
}
.active\:bg-pink-400:active {
  background-color: var(--p-pink-400) !important;
}
.active\:bg-pink-500:active {
  background-color: var(--p-pink-500) !important;
}
.active\:bg-pink-600:active {
  background-color: var(--p-pink-600) !important;
}
.active\:bg-pink-700:active {
  background-color: var(--p-pink-700) !important;
}
.active\:bg-pink-800:active {
  background-color: var(--p-pink-800) !important;
}
.active\:bg-pink-900:active {
  background-color: var(--p-pink-900) !important;
}

.bg-indigo-50 {
  background-color: var(--p-indigo-50) !important;
}
.bg-indigo-100 {
  background-color: var(--p-indigo-100) !important;
}
.bg-indigo-200 {
  background-color: var(--p-indigo-200) !important;
}
.bg-indigo-300 {
  background-color: var(--p-indigo-300) !important;
}
.bg-indigo-400 {
  background-color: var(--p-indigo-400) !important;
}
.bg-indigo-500 {
  background-color: var(--p-indigo-500) !important;
}
.bg-indigo-600 {
  background-color: var(--p-indigo-600) !important;
}
.bg-indigo-700 {
  background-color: var(--p-indigo-700) !important;
}
.bg-indigo-800 {
  background-color: var(--p-indigo-800) !important;
}
.bg-indigo-900 {
  background-color: var(--p-indigo-900) !important;
}

.focus\:bg-indigo-50:focus {
  background-color: var(--p-indigo-50) !important;
}
.focus\:bg-indigo-100:focus {
  background-color: var(--p-indigo-100) !important;
}
.focus\:bg-indigo-200:focus {
  background-color: var(--p-indigo-200) !important;
}
.focus\:bg-indigo-300:focus {
  background-color: var(--p-indigo-300) !important;
}
.focus\:bg-indigo-400:focus {
  background-color: var(--p-indigo-400) !important;
}
.focus\:bg-indigo-500:focus {
  background-color: var(--p-indigo-500) !important;
}
.focus\:bg-indigo-600:focus {
  background-color: var(--p-indigo-600) !important;
}
.focus\:bg-indigo-700:focus {
  background-color: var(--p-indigo-700) !important;
}
.focus\:bg-indigo-800:focus {
  background-color: var(--p-indigo-800) !important;
}
.focus\:bg-indigo-900:focus {
  background-color: var(--p-indigo-900) !important;
}

.hover\:bg-indigo-50:hover {
  background-color: var(--p-indigo-50) !important;
}
.hover\:bg-indigo-100:hover {
  background-color: var(--p-indigo-100) !important;
}
.hover\:bg-indigo-200:hover {
  background-color: var(--p-indigo-200) !important;
}
.hover\:bg-indigo-300:hover {
  background-color: var(--p-indigo-300) !important;
}
.hover\:bg-indigo-400:hover {
  background-color: var(--p-indigo-400) !important;
}
.hover\:bg-indigo-500:hover {
  background-color: var(--p-indigo-500) !important;
}
.hover\:bg-indigo-600:hover {
  background-color: var(--p-indigo-600) !important;
}
.hover\:bg-indigo-700:hover {
  background-color: var(--p-indigo-700) !important;
}
.hover\:bg-indigo-800:hover {
  background-color: var(--p-indigo-800) !important;
}
.hover\:bg-indigo-900:hover {
  background-color: var(--p-indigo-900) !important;
}

.active\:bg-indigo-50:active {
  background-color: var(--p-indigo-50) !important;
}
.active\:bg-indigo-100:active {
  background-color: var(--p-indigo-100) !important;
}
.active\:bg-indigo-200:active {
  background-color: var(--p-indigo-200) !important;
}
.active\:bg-indigo-300:active {
  background-color: var(--p-indigo-300) !important;
}
.active\:bg-indigo-400:active {
  background-color: var(--p-indigo-400) !important;
}
.active\:bg-indigo-500:active {
  background-color: var(--p-indigo-500) !important;
}
.active\:bg-indigo-600:active {
  background-color: var(--p-indigo-600) !important;
}
.active\:bg-indigo-700:active {
  background-color: var(--p-indigo-700) !important;
}
.active\:bg-indigo-800:active {
  background-color: var(--p-indigo-800) !important;
}
.active\:bg-indigo-900:active {
  background-color: var(--p-indigo-900) !important;
}

.bg-teal-50 {
  background-color: var(--p-teal-50) !important;
}
.bg-teal-100 {
  background-color: var(--p-teal-100) !important;
}
.bg-teal-200 {
  background-color: var(--p-teal-200) !important;
}
.bg-teal-300 {
  background-color: var(--p-teal-300) !important;
}
.bg-teal-400 {
  background-color: var(--p-teal-400) !important;
}
.bg-teal-500 {
  background-color: var(--p-teal-500) !important;
}
.bg-teal-600 {
  background-color: var(--p-teal-600) !important;
}
.bg-teal-700 {
  background-color: var(--p-teal-700) !important;
}
.bg-teal-800 {
  background-color: var(--p-teal-800) !important;
}
.bg-teal-900 {
  background-color: var(--p-teal-900) !important;
}

.focus\:bg-teal-50:focus {
  background-color: var(--p-teal-50) !important;
}
.focus\:bg-teal-100:focus {
  background-color: var(--p-teal-100) !important;
}
.focus\:bg-teal-200:focus {
  background-color: var(--p-teal-200) !important;
}
.focus\:bg-teal-300:focus {
  background-color: var(--p-teal-300) !important;
}
.focus\:bg-teal-400:focus {
  background-color: var(--p-teal-400) !important;
}
.focus\:bg-teal-500:focus {
  background-color: var(--p-teal-500) !important;
}
.focus\:bg-teal-600:focus {
  background-color: var(--p-teal-600) !important;
}
.focus\:bg-teal-700:focus {
  background-color: var(--p-teal-700) !important;
}
.focus\:bg-teal-800:focus {
  background-color: var(--p-teal-800) !important;
}
.focus\:bg-teal-900:focus {
  background-color: var(--p-teal-900) !important;
}

.hover\:bg-teal-50:hover {
  background-color: var(--p-teal-50) !important;
}
.hover\:bg-teal-100:hover {
  background-color: var(--p-teal-100) !important;
}
.hover\:bg-teal-200:hover {
  background-color: var(--p-teal-200) !important;
}
.hover\:bg-teal-300:hover {
  background-color: var(--p-teal-300) !important;
}
.hover\:bg-teal-400:hover {
  background-color: var(--p-teal-400) !important;
}
.hover\:bg-teal-500:hover {
  background-color: var(--p-teal-500) !important;
}
.hover\:bg-teal-600:hover {
  background-color: var(--p-teal-600) !important;
}
.hover\:bg-teal-700:hover {
  background-color: var(--p-teal-700) !important;
}
.hover\:bg-teal-800:hover {
  background-color: var(--p-teal-800) !important;
}
.hover\:bg-teal-900:hover {
  background-color: var(--p-teal-900) !important;
}

.active\:bg-teal-50:active {
  background-color: var(--p-teal-50) !important;
}
.active\:bg-teal-100:active {
  background-color: var(--p-teal-100) !important;
}
.active\:bg-teal-200:active {
  background-color: var(--p-teal-200) !important;
}
.active\:bg-teal-300:active {
  background-color: var(--p-teal-300) !important;
}
.active\:bg-teal-400:active {
  background-color: var(--p-teal-400) !important;
}
.active\:bg-teal-500:active {
  background-color: var(--p-teal-500) !important;
}
.active\:bg-teal-600:active {
  background-color: var(--p-teal-600) !important;
}
.active\:bg-teal-700:active {
  background-color: var(--p-teal-700) !important;
}
.active\:bg-teal-800:active {
  background-color: var(--p-teal-800) !important;
}
.active\:bg-teal-900:active {
  background-color: var(--p-teal-900) !important;
}

.bg-orange-50 {
  background-color: var(--p-orange-50) !important;
}
.bg-orange-100 {
  background-color: var(--p-orange-100) !important;
}
.bg-orange-200 {
  background-color: var(--p-orange-200) !important;
}
.bg-orange-300 {
  background-color: var(--p-orange-300) !important;
}
.bg-orange-400 {
  background-color: var(--p-orange-400) !important;
}
.bg-orange-500 {
  background-color: var(--p-orange-500) !important;
}
.bg-orange-600 {
  background-color: var(--p-orange-600) !important;
}
.bg-orange-700 {
  background-color: var(--p-orange-700) !important;
}
.bg-orange-800 {
  background-color: var(--p-orange-800) !important;
}
.bg-orange-900 {
  background-color: var(--p-orange-900) !important;
}

.focus\:bg-orange-50:focus {
  background-color: var(--p-orange-50) !important;
}
.focus\:bg-orange-100:focus {
  background-color: var(--p-orange-100) !important;
}
.focus\:bg-orange-200:focus {
  background-color: var(--p-orange-200) !important;
}
.focus\:bg-orange-300:focus {
  background-color: var(--p-orange-300) !important;
}
.focus\:bg-orange-400:focus {
  background-color: var(--p-orange-400) !important;
}
.focus\:bg-orange-500:focus {
  background-color: var(--p-orange-500) !important;
}
.focus\:bg-orange-600:focus {
  background-color: var(--p-orange-600) !important;
}
.focus\:bg-orange-700:focus {
  background-color: var(--p-orange-700) !important;
}
.focus\:bg-orange-800:focus {
  background-color: var(--p-orange-800) !important;
}
.focus\:bg-orange-900:focus {
  background-color: var(--p-orange-900) !important;
}

.hover\:bg-orange-50:hover {
  background-color: var(--p-orange-50) !important;
}
.hover\:bg-orange-100:hover {
  background-color: var(--p-orange-100) !important;
}
.hover\:bg-orange-200:hover {
  background-color: var(--p-orange-200) !important;
}
.hover\:bg-orange-300:hover {
  background-color: var(--p-orange-300) !important;
}
.hover\:bg-orange-400:hover {
  background-color: var(--p-orange-400) !important;
}
.hover\:bg-orange-500:hover {
  background-color: var(--p-orange-500) !important;
}
.hover\:bg-orange-600:hover {
  background-color: var(--p-orange-600) !important;
}
.hover\:bg-orange-700:hover {
  background-color: var(--p-orange-700) !important;
}
.hover\:bg-orange-800:hover {
  background-color: var(--p-orange-800) !important;
}
.hover\:bg-orange-900:hover {
  background-color: var(--p-orange-900) !important;
}

.active\:bg-orange-50:active {
  background-color: var(--p-orange-50) !important;
}
.active\:bg-orange-100:active {
  background-color: var(--p-orange-100) !important;
}
.active\:bg-orange-200:active {
  background-color: var(--p-orange-200) !important;
}
.active\:bg-orange-300:active {
  background-color: var(--p-orange-300) !important;
}
.active\:bg-orange-400:active {
  background-color: var(--p-orange-400) !important;
}
.active\:bg-orange-500:active {
  background-color: var(--p-orange-500) !important;
}
.active\:bg-orange-600:active {
  background-color: var(--p-orange-600) !important;
}
.active\:bg-orange-700:active {
  background-color: var(--p-orange-700) !important;
}
.active\:bg-orange-800:active {
  background-color: var(--p-orange-800) !important;
}
.active\:bg-orange-900:active {
  background-color: var(--p-orange-900) !important;
}

.bg-bluegray-50 {
  background-color: var(--p-bluegray-50) !important;
}
.bg-bluegray-100 {
  background-color: var(--p-bluegray-100) !important;
}
.bg-bluegray-200 {
  background-color: var(--p-bluegray-200) !important;
}
.bg-bluegray-300 {
  background-color: var(--p-bluegray-300) !important;
}
.bg-bluegray-400 {
  background-color: var(--p-bluegray-400) !important;
}
.bg-bluegray-500 {
  background-color: var(--p-bluegray-500) !important;
}
.bg-bluegray-600 {
  background-color: var(--p-bluegray-600) !important;
}
.bg-bluegray-700 {
  background-color: var(--p-bluegray-700) !important;
}
.bg-bluegray-800 {
  background-color: var(--p-bluegray-800) !important;
}
.bg-bluegray-900 {
  background-color: var(--p-bluegray-900) !important;
}

.focus\:bg-bluegray-50:focus {
  background-color: var(--p-bluegray-50) !important;
}
.focus\:bg-bluegray-100:focus {
  background-color: var(--p-bluegray-100) !important;
}
.focus\:bg-bluegray-200:focus {
  background-color: var(--p-bluegray-200) !important;
}
.focus\:bg-bluegray-300:focus {
  background-color: var(--p-bluegray-300) !important;
}
.focus\:bg-bluegray-400:focus {
  background-color: var(--p-bluegray-400) !important;
}
.focus\:bg-bluegray-500:focus {
  background-color: var(--p-bluegray-500) !important;
}
.focus\:bg-bluegray-600:focus {
  background-color: var(--p-bluegray-600) !important;
}
.focus\:bg-bluegray-700:focus {
  background-color: var(--p-bluegray-700) !important;
}
.focus\:bg-bluegray-800:focus {
  background-color: var(--p-bluegray-800) !important;
}
.focus\:bg-bluegray-900:focus {
  background-color: var(--p-bluegray-900) !important;
}

.hover\:bg-bluegray-50:hover {
  background-color: var(--p-bluegray-50) !important;
}
.hover\:bg-bluegray-100:hover {
  background-color: var(--p-bluegray-100) !important;
}
.hover\:bg-bluegray-200:hover {
  background-color: var(--p-bluegray-200) !important;
}
.hover\:bg-bluegray-300:hover {
  background-color: var(--p-bluegray-300) !important;
}
.hover\:bg-bluegray-400:hover {
  background-color: var(--p-bluegray-400) !important;
}
.hover\:bg-bluegray-500:hover {
  background-color: var(--p-bluegray-500) !important;
}
.hover\:bg-bluegray-600:hover {
  background-color: var(--p-bluegray-600) !important;
}
.hover\:bg-bluegray-700:hover {
  background-color: var(--p-bluegray-700) !important;
}
.hover\:bg-bluegray-800:hover {
  background-color: var(--p-bluegray-800) !important;
}
.hover\:bg-bluegray-900:hover {
  background-color: var(--p-bluegray-900) !important;
}

.active\:bg-bluegray-50:active {
  background-color: var(--p-bluegray-50) !important;
}
.active\:bg-bluegray-100:active {
  background-color: var(--p-bluegray-100) !important;
}
.active\:bg-bluegray-200:active {
  background-color: var(--p-bluegray-200) !important;
}
.active\:bg-bluegray-300:active {
  background-color: var(--p-bluegray-300) !important;
}
.active\:bg-bluegray-400:active {
  background-color: var(--p-bluegray-400) !important;
}
.active\:bg-bluegray-500:active {
  background-color: var(--p-bluegray-500) !important;
}
.active\:bg-bluegray-600:active {
  background-color: var(--p-bluegray-600) !important;
}
.active\:bg-bluegray-700:active {
  background-color: var(--p-bluegray-700) !important;
}
.active\:bg-bluegray-800:active {
  background-color: var(--p-bluegray-800) !important;
}
.active\:bg-bluegray-900:active {
  background-color: var(--p-bluegray-900) !important;
}

.bg-purple-50 {
  background-color: var(--p-purple-50) !important;
}
.bg-purple-100 {
  background-color: var(--p-purple-100) !important;
}
.bg-purple-200 {
  background-color: var(--p-purple-200) !important;
}
.bg-purple-300 {
  background-color: var(--p-purple-300) !important;
}
.bg-purple-400 {
  background-color: var(--p-purple-400) !important;
}
.bg-purple-500 {
  background-color: var(--p-purple-500) !important;
}
.bg-purple-600 {
  background-color: var(--p-purple-600) !important;
}
.bg-purple-700 {
  background-color: var(--p-purple-700) !important;
}
.bg-purple-800 {
  background-color: var(--p-purple-800) !important;
}
.bg-purple-900 {
  background-color: var(--p-purple-900) !important;
}

.focus\:bg-purple-50:focus {
  background-color: var(--p-purple-50) !important;
}
.focus\:bg-purple-100:focus {
  background-color: var(--p-purple-100) !important;
}
.focus\:bg-purple-200:focus {
  background-color: var(--p-purple-200) !important;
}
.focus\:bg-purple-300:focus {
  background-color: var(--p-purple-300) !important;
}
.focus\:bg-purple-400:focus {
  background-color: var(--p-purple-400) !important;
}
.focus\:bg-purple-500:focus {
  background-color: var(--p-purple-500) !important;
}
.focus\:bg-purple-600:focus {
  background-color: var(--p-purple-600) !important;
}
.focus\:bg-purple-700:focus {
  background-color: var(--p-purple-700) !important;
}
.focus\:bg-purple-800:focus {
  background-color: var(--p-purple-800) !important;
}
.focus\:bg-purple-900:focus {
  background-color: var(--p-purple-900) !important;
}

.hover\:bg-purple-50:hover {
  background-color: var(--p-purple-50) !important;
}
.hover\:bg-purple-100:hover {
  background-color: var(--p-purple-100) !important;
}
.hover\:bg-purple-200:hover {
  background-color: var(--p-purple-200) !important;
}
.hover\:bg-purple-300:hover {
  background-color: var(--p-purple-300) !important;
}
.hover\:bg-purple-400:hover {
  background-color: var(--p-purple-400) !important;
}
.hover\:bg-purple-500:hover {
  background-color: var(--p-purple-500) !important;
}
.hover\:bg-purple-600:hover {
  background-color: var(--p-purple-600) !important;
}
.hover\:bg-purple-700:hover {
  background-color: var(--p-purple-700) !important;
}
.hover\:bg-purple-800:hover {
  background-color: var(--p-purple-800) !important;
}
.hover\:bg-purple-900:hover {
  background-color: var(--p-purple-900) !important;
}

.active\:bg-purple-50:active {
  background-color: var(--p-purple-50) !important;
}
.active\:bg-purple-100:active {
  background-color: var(--p-purple-100) !important;
}
.active\:bg-purple-200:active {
  background-color: var(--p-purple-200) !important;
}
.active\:bg-purple-300:active {
  background-color: var(--p-purple-300) !important;
}
.active\:bg-purple-400:active {
  background-color: var(--p-purple-400) !important;
}
.active\:bg-purple-500:active {
  background-color: var(--p-purple-500) !important;
}
.active\:bg-purple-600:active {
  background-color: var(--p-purple-600) !important;
}
.active\:bg-purple-700:active {
  background-color: var(--p-purple-700) !important;
}
.active\:bg-purple-800:active {
  background-color: var(--p-purple-800) !important;
}
.active\:bg-purple-900:active {
  background-color: var(--p-purple-900) !important;
}

.bg-gray-50 {
  background-color: var(--p-gray-50) !important;
}
.bg-gray-100 {
  background-color: var(--p-gray-100) !important;
}
.bg-gray-200 {
  background-color: var(--p-gray-200) !important;
}
.bg-gray-300 {
  background-color: var(--p-gray-300) !important;
}
.bg-gray-400 {
  background-color: var(--p-gray-400) !important;
}
.bg-gray-500 {
  background-color: var(--p-gray-500) !important;
}
.bg-gray-600 {
  background-color: var(--p-gray-600) !important;
}
.bg-gray-700 {
  background-color: var(--p-gray-700) !important;
}
.bg-gray-800 {
  background-color: var(--p-gray-800) !important;
}
.bg-gray-900 {
  background-color: var(--p-gray-900) !important;
}

.focus\:bg-gray-50:focus {
  background-color: var(--p-gray-50) !important;
}
.focus\:bg-gray-100:focus {
  background-color: var(--p-gray-100) !important;
}
.focus\:bg-gray-200:focus {
  background-color: var(--p-gray-200) !important;
}
.focus\:bg-gray-300:focus {
  background-color: var(--p-gray-300) !important;
}
.focus\:bg-gray-400:focus {
  background-color: var(--p-gray-400) !important;
}
.focus\:bg-gray-500:focus {
  background-color: var(--p-gray-500) !important;
}
.focus\:bg-gray-600:focus {
  background-color: var(--p-gray-600) !important;
}
.focus\:bg-gray-700:focus {
  background-color: var(--p-gray-700) !important;
}
.focus\:bg-gray-800:focus {
  background-color: var(--p-gray-800) !important;
}
.focus\:bg-gray-900:focus {
  background-color: var(--p-gray-900) !important;
}

.hover\:bg-gray-50:hover {
  background-color: var(--p-gray-50) !important;
}
.hover\:bg-gray-100:hover {
  background-color: var(--p-gray-100) !important;
}
.hover\:bg-gray-200:hover {
  background-color: var(--p-gray-200) !important;
}
.hover\:bg-gray-300:hover {
  background-color: var(--p-gray-300) !important;
}
.hover\:bg-gray-400:hover {
  background-color: var(--p-gray-400) !important;
}
.hover\:bg-gray-500:hover {
  background-color: var(--p-gray-500) !important;
}
.hover\:bg-gray-600:hover {
  background-color: var(--p-gray-600) !important;
}
.hover\:bg-gray-700:hover {
  background-color: var(--p-gray-700) !important;
}
.hover\:bg-gray-800:hover {
  background-color: var(--p-gray-800) !important;
}
.hover\:bg-gray-900:hover {
  background-color: var(--p-gray-900) !important;
}

.active\:bg-gray-50:active {
  background-color: var(--p-gray-50) !important;
}
.active\:bg-gray-100:active {
  background-color: var(--p-gray-100) !important;
}
.active\:bg-gray-200:active {
  background-color: var(--p-gray-200) !important;
}
.active\:bg-gray-300:active {
  background-color: var(--p-gray-300) !important;
}
.active\:bg-gray-400:active {
  background-color: var(--p-gray-400) !important;
}
.active\:bg-gray-500:active {
  background-color: var(--p-gray-500) !important;
}
.active\:bg-gray-600:active {
  background-color: var(--p-gray-600) !important;
}
.active\:bg-gray-700:active {
  background-color: var(--p-gray-700) !important;
}
.active\:bg-gray-800:active {
  background-color: var(--p-gray-800) !important;
}
.active\:bg-gray-900:active {
  background-color: var(--p-gray-900) !important;
}

.bg-red-50 {
  background-color: var(--p-red-50) !important;
}
.bg-red-100 {
  background-color: var(--p-red-100) !important;
}
.bg-red-200 {
  background-color: var(--p-red-200) !important;
}
.bg-red-300 {
  background-color: var(--p-red-300) !important;
}
.bg-red-400 {
  background-color: var(--p-red-400) !important;
}
.bg-red-500 {
  background-color: var(--p-red-500) !important;
}
.bg-red-600 {
  background-color: var(--p-red-600) !important;
}
.bg-red-700 {
  background-color: var(--p-red-700) !important;
}
.bg-red-800 {
  background-color: var(--p-red-800) !important;
}
.bg-red-900 {
  background-color: var(--p-red-900) !important;
}

.focus\:bg-red-50:focus {
  background-color: var(--p-red-50) !important;
}
.focus\:bg-red-100:focus {
  background-color: var(--p-red-100) !important;
}
.focus\:bg-red-200:focus {
  background-color: var(--p-red-200) !important;
}
.focus\:bg-red-300:focus {
  background-color: var(--p-red-300) !important;
}
.focus\:bg-red-400:focus {
  background-color: var(--p-red-400) !important;
}
.focus\:bg-red-500:focus {
  background-color: var(--p-red-500) !important;
}
.focus\:bg-red-600:focus {
  background-color: var(--p-red-600) !important;
}
.focus\:bg-red-700:focus {
  background-color: var(--p-red-700) !important;
}
.focus\:bg-red-800:focus {
  background-color: var(--p-red-800) !important;
}
.focus\:bg-red-900:focus {
  background-color: var(--p-red-900) !important;
}

.hover\:bg-red-50:hover {
  background-color: var(--p-red-50) !important;
}
.hover\:bg-red-100:hover {
  background-color: var(--p-red-100) !important;
}
.hover\:bg-red-200:hover {
  background-color: var(--p-red-200) !important;
}
.hover\:bg-red-300:hover {
  background-color: var(--p-red-300) !important;
}
.hover\:bg-red-400:hover {
  background-color: var(--p-red-400) !important;
}
.hover\:bg-red-500:hover {
  background-color: var(--p-red-500) !important;
}
.hover\:bg-red-600:hover {
  background-color: var(--p-red-600) !important;
}
.hover\:bg-red-700:hover {
  background-color: var(--p-red-700) !important;
}
.hover\:bg-red-800:hover {
  background-color: var(--p-red-800) !important;
}
.hover\:bg-red-900:hover {
  background-color: var(--p-red-900) !important;
}

.active\:bg-red-50:active {
  background-color: var(--p-red-50) !important;
}
.active\:bg-red-100:active {
  background-color: var(--p-red-100) !important;
}
.active\:bg-red-200:active {
  background-color: var(--p-red-200) !important;
}
.active\:bg-red-300:active {
  background-color: var(--p-red-300) !important;
}
.active\:bg-red-400:active {
  background-color: var(--p-red-400) !important;
}
.active\:bg-red-500:active {
  background-color: var(--p-red-500) !important;
}
.active\:bg-red-600:active {
  background-color: var(--p-red-600) !important;
}
.active\:bg-red-700:active {
  background-color: var(--p-red-700) !important;
}
.active\:bg-red-800:active {
  background-color: var(--p-red-800) !important;
}
.active\:bg-red-900:active {
  background-color: var(--p-red-900) !important;
}

.bg-primary-50 {
  background-color: var(--p-primary-50) !important;
}
.bg-primary-100 {
  background-color: var(--p-primary-100) !important;
}
.bg-primary-200 {
  background-color: var(--p-primary-200) !important;
}
.bg-primary-300 {
  background-color: var(--p-primary-300) !important;
}
.bg-primary-400 {
  background-color: var(--p-primary-400) !important;
}
.bg-primary-500 {
  background-color: var(--p-primary-500) !important;
}
.bg-primary-600 {
  background-color: var(--p-primary-600) !important;
}
.bg-primary-700 {
  background-color: var(--p-primary-700) !important;
}
.bg-primary-800 {
  background-color: var(--p-primary-800) !important;
}
.bg-primary-900 {
  background-color: var(--p-primary-900) !important;
}

.focus\:bg-primary-50:focus {
  background-color: var(--p-primary-50) !important;
}
.focus\:bg-primary-100:focus {
  background-color: var(--p-primary-100) !important;
}
.focus\:bg-primary-200:focus {
  background-color: var(--p-primary-200) !important;
}
.focus\:bg-primary-300:focus {
  background-color: var(--p-primary-300) !important;
}
.focus\:bg-primary-400:focus {
  background-color: var(--p-primary-400) !important;
}
.focus\:bg-primary-500:focus {
  background-color: var(--p-primary-500) !important;
}
.focus\:bg-primary-600:focus {
  background-color: var(--p-primary-600) !important;
}
.focus\:bg-primary-700:focus {
  background-color: var(--p-primary-700) !important;
}
.focus\:bg-primary-800:focus {
  background-color: var(--p-primary-800) !important;
}
.focus\:bg-primary-900:focus {
  background-color: var(--p-primary-900) !important;
}

.hover\:bg-primary-50:hover {
  background-color: var(--p-primary-50) !important;
}
.hover\:bg-primary-100:hover {
  background-color: var(--p-primary-100) !important;
}
.hover\:bg-primary-200:hover {
  background-color: var(--p-primary-200) !important;
}
.hover\:bg-primary-300:hover {
  background-color: var(--p-primary-300) !important;
}
.hover\:bg-primary-400:hover {
  background-color: var(--p-primary-400) !important;
}
.hover\:bg-primary-500:hover {
  background-color: var(--p-primary-500) !important;
}
.hover\:bg-primary-600:hover {
  background-color: var(--p-primary-600) !important;
}
.hover\:bg-primary-700:hover {
  background-color: var(--p-primary-700) !important;
}
.hover\:bg-primary-800:hover {
  background-color: var(--p-primary-800) !important;
}
.hover\:bg-primary-900:hover {
  background-color: var(--p-primary-900) !important;
}

.active\:bg-primary-50:active {
  background-color: var(--p-primary-50) !important;
}
.active\:bg-primary-100:active {
  background-color: var(--p-primary-100) !important;
}
.active\:bg-primary-200:active {
  background-color: var(--p-primary-200) !important;
}
.active\:bg-primary-300:active {
  background-color: var(--p-primary-300) !important;
}
.active\:bg-primary-400:active {
  background-color: var(--p-primary-400) !important;
}
.active\:bg-primary-500:active {
  background-color: var(--p-primary-500) !important;
}
.active\:bg-primary-600:active {
  background-color: var(--p-primary-600) !important;
}
.active\:bg-primary-700:active {
  background-color: var(--p-primary-700) !important;
}
.active\:bg-primary-800:active {
  background-color: var(--p-primary-800) !important;
}
.active\:bg-primary-900:active {
  background-color: var(--p-primary-900) !important;
}

.border-blue-50 {
  border-color: var(--p-blue-50) !important;
}
.border-blue-100 {
  border-color: var(--p-blue-100) !important;
}
.border-blue-200 {
  border-color: var(--p-blue-200) !important;
}
.border-blue-300 {
  border-color: var(--p-blue-300) !important;
}
.border-blue-400 {
  border-color: var(--p-blue-400) !important;
}
.border-blue-500 {
  border-color: var(--p-blue-500) !important;
}
.border-blue-600 {
  border-color: var(--p-blue-600) !important;
}
.border-blue-700 {
  border-color: var(--p-blue-700) !important;
}
.border-blue-800 {
  border-color: var(--p-blue-800) !important;
}
.border-blue-900 {
  border-color: var(--p-blue-900) !important;
}

.focus\:border-blue-50:focus {
  border-color: var(--p-blue-50) !important;
}
.focus\:border-blue-100:focus {
  border-color: var(--p-blue-100) !important;
}
.focus\:border-blue-200:focus {
  border-color: var(--p-blue-200) !important;
}
.focus\:border-blue-300:focus {
  border-color: var(--p-blue-300) !important;
}
.focus\:border-blue-400:focus {
  border-color: var(--p-blue-400) !important;
}
.focus\:border-blue-500:focus {
  border-color: var(--p-blue-500) !important;
}
.focus\:border-blue-600:focus {
  border-color: var(--p-blue-600) !important;
}
.focus\:border-blue-700:focus {
  border-color: var(--p-blue-700) !important;
}
.focus\:border-blue-800:focus {
  border-color: var(--p-blue-800) !important;
}
.focus\:border-blue-900:focus {
  border-color: var(--p-blue-900) !important;
}

.hover\:border-blue-50:hover {
  border-color: var(--p-blue-50) !important;
}
.hover\:border-blue-100:hover {
  border-color: var(--p-blue-100) !important;
}
.hover\:border-blue-200:hover {
  border-color: var(--p-blue-200) !important;
}
.hover\:border-blue-300:hover {
  border-color: var(--p-blue-300) !important;
}
.hover\:border-blue-400:hover {
  border-color: var(--p-blue-400) !important;
}
.hover\:border-blue-500:hover {
  border-color: var(--p-blue-500) !important;
}
.hover\:border-blue-600:hover {
  border-color: var(--p-blue-600) !important;
}
.hover\:border-blue-700:hover {
  border-color: var(--p-blue-700) !important;
}
.hover\:border-blue-800:hover {
  border-color: var(--p-blue-800) !important;
}
.hover\:border-blue-900:hover {
  border-color: var(--p-blue-900) !important;
}

.active\:border-blue-50:active {
  border-color: var(--p-blue-50) !important;
}
.active\:border-blue-100:active {
  border-color: var(--p-blue-100) !important;
}
.active\:border-blue-200:active {
  border-color: var(--p-blue-200) !important;
}
.active\:border-blue-300:active {
  border-color: var(--p-blue-300) !important;
}
.active\:border-blue-400:active {
  border-color: var(--p-blue-400) !important;
}
.active\:border-blue-500:active {
  border-color: var(--p-blue-500) !important;
}
.active\:border-blue-600:active {
  border-color: var(--p-blue-600) !important;
}
.active\:border-blue-700:active {
  border-color: var(--p-blue-700) !important;
}
.active\:border-blue-800:active {
  border-color: var(--p-blue-800) !important;
}
.active\:border-blue-900:active {
  border-color: var(--p-blue-900) !important;
}

.border-green-50 {
  border-color: var(--p-green-50) !important;
}
.border-green-100 {
  border-color: var(--p-green-100) !important;
}
.border-green-200 {
  border-color: var(--p-green-200) !important;
}
.border-green-300 {
  border-color: var(--p-green-300) !important;
}
.border-green-400 {
  border-color: var(--p-green-400) !important;
}
.border-green-500 {
  border-color: var(--p-green-500) !important;
}
.border-green-600 {
  border-color: var(--p-green-600) !important;
}
.border-green-700 {
  border-color: var(--p-green-700) !important;
}
.border-green-800 {
  border-color: var(--p-green-800) !important;
}
.border-green-900 {
  border-color: var(--p-green-900) !important;
}

.focus\:border-green-50:focus {
  border-color: var(--p-green-50) !important;
}
.focus\:border-green-100:focus {
  border-color: var(--p-green-100) !important;
}
.focus\:border-green-200:focus {
  border-color: var(--p-green-200) !important;
}
.focus\:border-green-300:focus {
  border-color: var(--p-green-300) !important;
}
.focus\:border-green-400:focus {
  border-color: var(--p-green-400) !important;
}
.focus\:border-green-500:focus {
  border-color: var(--p-green-500) !important;
}
.focus\:border-green-600:focus {
  border-color: var(--p-green-600) !important;
}
.focus\:border-green-700:focus {
  border-color: var(--p-green-700) !important;
}
.focus\:border-green-800:focus {
  border-color: var(--p-green-800) !important;
}
.focus\:border-green-900:focus {
  border-color: var(--p-green-900) !important;
}

.hover\:border-green-50:hover {
  border-color: var(--p-green-50) !important;
}
.hover\:border-green-100:hover {
  border-color: var(--p-green-100) !important;
}
.hover\:border-green-200:hover {
  border-color: var(--p-green-200) !important;
}
.hover\:border-green-300:hover {
  border-color: var(--p-green-300) !important;
}
.hover\:border-green-400:hover {
  border-color: var(--p-green-400) !important;
}
.hover\:border-green-500:hover {
  border-color: var(--p-green-500) !important;
}
.hover\:border-green-600:hover {
  border-color: var(--p-green-600) !important;
}
.hover\:border-green-700:hover {
  border-color: var(--p-green-700) !important;
}
.hover\:border-green-800:hover {
  border-color: var(--p-green-800) !important;
}
.hover\:border-green-900:hover {
  border-color: var(--p-green-900) !important;
}

.active\:border-green-50:active {
  border-color: var(--p-green-50) !important;
}
.active\:border-green-100:active {
  border-color: var(--p-green-100) !important;
}
.active\:border-green-200:active {
  border-color: var(--p-green-200) !important;
}
.active\:border-green-300:active {
  border-color: var(--p-green-300) !important;
}
.active\:border-green-400:active {
  border-color: var(--p-green-400) !important;
}
.active\:border-green-500:active {
  border-color: var(--p-green-500) !important;
}
.active\:border-green-600:active {
  border-color: var(--p-green-600) !important;
}
.active\:border-green-700:active {
  border-color: var(--p-green-700) !important;
}
.active\:border-green-800:active {
  border-color: var(--p-green-800) !important;
}
.active\:border-green-900:active {
  border-color: var(--p-green-900) !important;
}

.border-yellow-50 {
  border-color: var(--p-yellow-50) !important;
}
.border-yellow-100 {
  border-color: var(--p-yellow-100) !important;
}
.border-yellow-200 {
  border-color: var(--p-yellow-200) !important;
}
.border-yellow-300 {
  border-color: var(--p-yellow-300) !important;
}
.border-yellow-400 {
  border-color: var(--p-yellow-400) !important;
}
.border-yellow-500 {
  border-color: var(--p-yellow-500) !important;
}
.border-yellow-600 {
  border-color: var(--p-yellow-600) !important;
}
.border-yellow-700 {
  border-color: var(--p-yellow-700) !important;
}
.border-yellow-800 {
  border-color: var(--p-yellow-800) !important;
}
.border-yellow-900 {
  border-color: var(--p-yellow-900) !important;
}

.focus\:border-yellow-50:focus {
  border-color: var(--p-yellow-50) !important;
}
.focus\:border-yellow-100:focus {
  border-color: var(--p-yellow-100) !important;
}
.focus\:border-yellow-200:focus {
  border-color: var(--p-yellow-200) !important;
}
.focus\:border-yellow-300:focus {
  border-color: var(--p-yellow-300) !important;
}
.focus\:border-yellow-400:focus {
  border-color: var(--p-yellow-400) !important;
}
.focus\:border-yellow-500:focus {
  border-color: var(--p-yellow-500) !important;
}
.focus\:border-yellow-600:focus {
  border-color: var(--p-yellow-600) !important;
}
.focus\:border-yellow-700:focus {
  border-color: var(--p-yellow-700) !important;
}
.focus\:border-yellow-800:focus {
  border-color: var(--p-yellow-800) !important;
}
.focus\:border-yellow-900:focus {
  border-color: var(--p-yellow-900) !important;
}

.hover\:border-yellow-50:hover {
  border-color: var(--p-yellow-50) !important;
}
.hover\:border-yellow-100:hover {
  border-color: var(--p-yellow-100) !important;
}
.hover\:border-yellow-200:hover {
  border-color: var(--p-yellow-200) !important;
}
.hover\:border-yellow-300:hover {
  border-color: var(--p-yellow-300) !important;
}
.hover\:border-yellow-400:hover {
  border-color: var(--p-yellow-400) !important;
}
.hover\:border-yellow-500:hover {
  border-color: var(--p-yellow-500) !important;
}
.hover\:border-yellow-600:hover {
  border-color: var(--p-yellow-600) !important;
}
.hover\:border-yellow-700:hover {
  border-color: var(--p-yellow-700) !important;
}
.hover\:border-yellow-800:hover {
  border-color: var(--p-yellow-800) !important;
}
.hover\:border-yellow-900:hover {
  border-color: var(--p-yellow-900) !important;
}

.active\:border-yellow-50:active {
  border-color: var(--p-yellow-50) !important;
}
.active\:border-yellow-100:active {
  border-color: var(--p-yellow-100) !important;
}
.active\:border-yellow-200:active {
  border-color: var(--p-yellow-200) !important;
}
.active\:border-yellow-300:active {
  border-color: var(--p-yellow-300) !important;
}
.active\:border-yellow-400:active {
  border-color: var(--p-yellow-400) !important;
}
.active\:border-yellow-500:active {
  border-color: var(--p-yellow-500) !important;
}
.active\:border-yellow-600:active {
  border-color: var(--p-yellow-600) !important;
}
.active\:border-yellow-700:active {
  border-color: var(--p-yellow-700) !important;
}
.active\:border-yellow-800:active {
  border-color: var(--p-yellow-800) !important;
}
.active\:border-yellow-900:active {
  border-color: var(--p-yellow-900) !important;
}

.border-cyan-50 {
  border-color: var(--p-cyan-50) !important;
}
.border-cyan-100 {
  border-color: var(--p-cyan-100) !important;
}
.border-cyan-200 {
  border-color: var(--p-cyan-200) !important;
}
.border-cyan-300 {
  border-color: var(--p-cyan-300) !important;
}
.border-cyan-400 {
  border-color: var(--p-cyan-400) !important;
}
.border-cyan-500 {
  border-color: var(--p-cyan-500) !important;
}
.border-cyan-600 {
  border-color: var(--p-cyan-600) !important;
}
.border-cyan-700 {
  border-color: var(--p-cyan-700) !important;
}
.border-cyan-800 {
  border-color: var(--p-cyan-800) !important;
}
.border-cyan-900 {
  border-color: var(--p-cyan-900) !important;
}

.focus\:border-cyan-50:focus {
  border-color: var(--p-cyan-50) !important;
}
.focus\:border-cyan-100:focus {
  border-color: var(--p-cyan-100) !important;
}
.focus\:border-cyan-200:focus {
  border-color: var(--p-cyan-200) !important;
}
.focus\:border-cyan-300:focus {
  border-color: var(--p-cyan-300) !important;
}
.focus\:border-cyan-400:focus {
  border-color: var(--p-cyan-400) !important;
}
.focus\:border-cyan-500:focus {
  border-color: var(--p-cyan-500) !important;
}
.focus\:border-cyan-600:focus {
  border-color: var(--p-cyan-600) !important;
}
.focus\:border-cyan-700:focus {
  border-color: var(--p-cyan-700) !important;
}
.focus\:border-cyan-800:focus {
  border-color: var(--p-cyan-800) !important;
}
.focus\:border-cyan-900:focus {
  border-color: var(--p-cyan-900) !important;
}

.hover\:border-cyan-50:hover {
  border-color: var(--p-cyan-50) !important;
}
.hover\:border-cyan-100:hover {
  border-color: var(--p-cyan-100) !important;
}
.hover\:border-cyan-200:hover {
  border-color: var(--p-cyan-200) !important;
}
.hover\:border-cyan-300:hover {
  border-color: var(--p-cyan-300) !important;
}
.hover\:border-cyan-400:hover {
  border-color: var(--p-cyan-400) !important;
}
.hover\:border-cyan-500:hover {
  border-color: var(--p-cyan-500) !important;
}
.hover\:border-cyan-600:hover {
  border-color: var(--p-cyan-600) !important;
}
.hover\:border-cyan-700:hover {
  border-color: var(--p-cyan-700) !important;
}
.hover\:border-cyan-800:hover {
  border-color: var(--p-cyan-800) !important;
}
.hover\:border-cyan-900:hover {
  border-color: var(--p-cyan-900) !important;
}

.active\:border-cyan-50:active {
  border-color: var(--p-cyan-50) !important;
}
.active\:border-cyan-100:active {
  border-color: var(--p-cyan-100) !important;
}
.active\:border-cyan-200:active {
  border-color: var(--p-cyan-200) !important;
}
.active\:border-cyan-300:active {
  border-color: var(--p-cyan-300) !important;
}
.active\:border-cyan-400:active {
  border-color: var(--p-cyan-400) !important;
}
.active\:border-cyan-500:active {
  border-color: var(--p-cyan-500) !important;
}
.active\:border-cyan-600:active {
  border-color: var(--p-cyan-600) !important;
}
.active\:border-cyan-700:active {
  border-color: var(--p-cyan-700) !important;
}
.active\:border-cyan-800:active {
  border-color: var(--p-cyan-800) !important;
}
.active\:border-cyan-900:active {
  border-color: var(--p-cyan-900) !important;
}

.border-pink-50 {
  border-color: var(--p-pink-50) !important;
}
.border-pink-100 {
  border-color: var(--p-pink-100) !important;
}
.border-pink-200 {
  border-color: var(--p-pink-200) !important;
}
.border-pink-300 {
  border-color: var(--p-pink-300) !important;
}
.border-pink-400 {
  border-color: var(--p-pink-400) !important;
}
.border-pink-500 {
  border-color: var(--p-pink-500) !important;
}
.border-pink-600 {
  border-color: var(--p-pink-600) !important;
}
.border-pink-700 {
  border-color: var(--p-pink-700) !important;
}
.border-pink-800 {
  border-color: var(--p-pink-800) !important;
}
.border-pink-900 {
  border-color: var(--p-pink-900) !important;
}

.focus\:border-pink-50:focus {
  border-color: var(--p-pink-50) !important;
}
.focus\:border-pink-100:focus {
  border-color: var(--p-pink-100) !important;
}
.focus\:border-pink-200:focus {
  border-color: var(--p-pink-200) !important;
}
.focus\:border-pink-300:focus {
  border-color: var(--p-pink-300) !important;
}
.focus\:border-pink-400:focus {
  border-color: var(--p-pink-400) !important;
}
.focus\:border-pink-500:focus {
  border-color: var(--p-pink-500) !important;
}
.focus\:border-pink-600:focus {
  border-color: var(--p-pink-600) !important;
}
.focus\:border-pink-700:focus {
  border-color: var(--p-pink-700) !important;
}
.focus\:border-pink-800:focus {
  border-color: var(--p-pink-800) !important;
}
.focus\:border-pink-900:focus {
  border-color: var(--p-pink-900) !important;
}

.hover\:border-pink-50:hover {
  border-color: var(--p-pink-50) !important;
}
.hover\:border-pink-100:hover {
  border-color: var(--p-pink-100) !important;
}
.hover\:border-pink-200:hover {
  border-color: var(--p-pink-200) !important;
}
.hover\:border-pink-300:hover {
  border-color: var(--p-pink-300) !important;
}
.hover\:border-pink-400:hover {
  border-color: var(--p-pink-400) !important;
}
.hover\:border-pink-500:hover {
  border-color: var(--p-pink-500) !important;
}
.hover\:border-pink-600:hover {
  border-color: var(--p-pink-600) !important;
}
.hover\:border-pink-700:hover {
  border-color: var(--p-pink-700) !important;
}
.hover\:border-pink-800:hover {
  border-color: var(--p-pink-800) !important;
}
.hover\:border-pink-900:hover {
  border-color: var(--p-pink-900) !important;
}

.active\:border-pink-50:active {
  border-color: var(--p-pink-50) !important;
}
.active\:border-pink-100:active {
  border-color: var(--p-pink-100) !important;
}
.active\:border-pink-200:active {
  border-color: var(--p-pink-200) !important;
}
.active\:border-pink-300:active {
  border-color: var(--p-pink-300) !important;
}
.active\:border-pink-400:active {
  border-color: var(--p-pink-400) !important;
}
.active\:border-pink-500:active {
  border-color: var(--p-pink-500) !important;
}
.active\:border-pink-600:active {
  border-color: var(--p-pink-600) !important;
}
.active\:border-pink-700:active {
  border-color: var(--p-pink-700) !important;
}
.active\:border-pink-800:active {
  border-color: var(--p-pink-800) !important;
}
.active\:border-pink-900:active {
  border-color: var(--p-pink-900) !important;
}

.border-indigo-50 {
  border-color: var(--p-indigo-50) !important;
}
.border-indigo-100 {
  border-color: var(--p-indigo-100) !important;
}
.border-indigo-200 {
  border-color: var(--p-indigo-200) !important;
}
.border-indigo-300 {
  border-color: var(--p-indigo-300) !important;
}
.border-indigo-400 {
  border-color: var(--p-indigo-400) !important;
}
.border-indigo-500 {
  border-color: var(--p-indigo-500) !important;
}
.border-indigo-600 {
  border-color: var(--p-indigo-600) !important;
}
.border-indigo-700 {
  border-color: var(--p-indigo-700) !important;
}
.border-indigo-800 {
  border-color: var(--p-indigo-800) !important;
}
.border-indigo-900 {
  border-color: var(--p-indigo-900) !important;
}

.focus\:border-indigo-50:focus {
  border-color: var(--p-indigo-50) !important;
}
.focus\:border-indigo-100:focus {
  border-color: var(--p-indigo-100) !important;
}
.focus\:border-indigo-200:focus {
  border-color: var(--p-indigo-200) !important;
}
.focus\:border-indigo-300:focus {
  border-color: var(--p-indigo-300) !important;
}
.focus\:border-indigo-400:focus {
  border-color: var(--p-indigo-400) !important;
}
.focus\:border-indigo-500:focus {
  border-color: var(--p-indigo-500) !important;
}
.focus\:border-indigo-600:focus {
  border-color: var(--p-indigo-600) !important;
}
.focus\:border-indigo-700:focus {
  border-color: var(--p-indigo-700) !important;
}
.focus\:border-indigo-800:focus {
  border-color: var(--p-indigo-800) !important;
}
.focus\:border-indigo-900:focus {
  border-color: var(--p-indigo-900) !important;
}

.hover\:border-indigo-50:hover {
  border-color: var(--p-indigo-50) !important;
}
.hover\:border-indigo-100:hover {
  border-color: var(--p-indigo-100) !important;
}
.hover\:border-indigo-200:hover {
  border-color: var(--p-indigo-200) !important;
}
.hover\:border-indigo-300:hover {
  border-color: var(--p-indigo-300) !important;
}
.hover\:border-indigo-400:hover {
  border-color: var(--p-indigo-400) !important;
}
.hover\:border-indigo-500:hover {
  border-color: var(--p-indigo-500) !important;
}
.hover\:border-indigo-600:hover {
  border-color: var(--p-indigo-600) !important;
}
.hover\:border-indigo-700:hover {
  border-color: var(--p-indigo-700) !important;
}
.hover\:border-indigo-800:hover {
  border-color: var(--p-indigo-800) !important;
}
.hover\:border-indigo-900:hover {
  border-color: var(--p-indigo-900) !important;
}

.active\:border-indigo-50:active {
  border-color: var(--p-indigo-50) !important;
}
.active\:border-indigo-100:active {
  border-color: var(--p-indigo-100) !important;
}
.active\:border-indigo-200:active {
  border-color: var(--p-indigo-200) !important;
}
.active\:border-indigo-300:active {
  border-color: var(--p-indigo-300) !important;
}
.active\:border-indigo-400:active {
  border-color: var(--p-indigo-400) !important;
}
.active\:border-indigo-500:active {
  border-color: var(--p-indigo-500) !important;
}
.active\:border-indigo-600:active {
  border-color: var(--p-indigo-600) !important;
}
.active\:border-indigo-700:active {
  border-color: var(--p-indigo-700) !important;
}
.active\:border-indigo-800:active {
  border-color: var(--p-indigo-800) !important;
}
.active\:border-indigo-900:active {
  border-color: var(--p-indigo-900) !important;
}

.border-teal-50 {
  border-color: var(--p-teal-50) !important;
}
.border-teal-100 {
  border-color: var(--p-teal-100) !important;
}
.border-teal-200 {
  border-color: var(--p-teal-200) !important;
}
.border-teal-300 {
  border-color: var(--p-teal-300) !important;
}
.border-teal-400 {
  border-color: var(--p-teal-400) !important;
}
.border-teal-500 {
  border-color: var(--p-teal-500) !important;
}
.border-teal-600 {
  border-color: var(--p-teal-600) !important;
}
.border-teal-700 {
  border-color: var(--p-teal-700) !important;
}
.border-teal-800 {
  border-color: var(--p-teal-800) !important;
}
.border-teal-900 {
  border-color: var(--p-teal-900) !important;
}

.focus\:border-teal-50:focus {
  border-color: var(--p-teal-50) !important;
}
.focus\:border-teal-100:focus {
  border-color: var(--p-teal-100) !important;
}
.focus\:border-teal-200:focus {
  border-color: var(--p-teal-200) !important;
}
.focus\:border-teal-300:focus {
  border-color: var(--p-teal-300) !important;
}
.focus\:border-teal-400:focus {
  border-color: var(--p-teal-400) !important;
}
.focus\:border-teal-500:focus {
  border-color: var(--p-teal-500) !important;
}
.focus\:border-teal-600:focus {
  border-color: var(--p-teal-600) !important;
}
.focus\:border-teal-700:focus {
  border-color: var(--p-teal-700) !important;
}
.focus\:border-teal-800:focus {
  border-color: var(--p-teal-800) !important;
}
.focus\:border-teal-900:focus {
  border-color: var(--p-teal-900) !important;
}

.hover\:border-teal-50:hover {
  border-color: var(--p-teal-50) !important;
}
.hover\:border-teal-100:hover {
  border-color: var(--p-teal-100) !important;
}
.hover\:border-teal-200:hover {
  border-color: var(--p-teal-200) !important;
}
.hover\:border-teal-300:hover {
  border-color: var(--p-teal-300) !important;
}
.hover\:border-teal-400:hover {
  border-color: var(--p-teal-400) !important;
}
.hover\:border-teal-500:hover {
  border-color: var(--p-teal-500) !important;
}
.hover\:border-teal-600:hover {
  border-color: var(--p-teal-600) !important;
}
.hover\:border-teal-700:hover {
  border-color: var(--p-teal-700) !important;
}
.hover\:border-teal-800:hover {
  border-color: var(--p-teal-800) !important;
}
.hover\:border-teal-900:hover {
  border-color: var(--p-teal-900) !important;
}

.active\:border-teal-50:active {
  border-color: var(--p-teal-50) !important;
}
.active\:border-teal-100:active {
  border-color: var(--p-teal-100) !important;
}
.active\:border-teal-200:active {
  border-color: var(--p-teal-200) !important;
}
.active\:border-teal-300:active {
  border-color: var(--p-teal-300) !important;
}
.active\:border-teal-400:active {
  border-color: var(--p-teal-400) !important;
}
.active\:border-teal-500:active {
  border-color: var(--p-teal-500) !important;
}
.active\:border-teal-600:active {
  border-color: var(--p-teal-600) !important;
}
.active\:border-teal-700:active {
  border-color: var(--p-teal-700) !important;
}
.active\:border-teal-800:active {
  border-color: var(--p-teal-800) !important;
}
.active\:border-teal-900:active {
  border-color: var(--p-teal-900) !important;
}

.border-orange-50 {
  border-color: var(--p-orange-50) !important;
}
.border-orange-100 {
  border-color: var(--p-orange-100) !important;
}
.border-orange-200 {
  border-color: var(--p-orange-200) !important;
}
.border-orange-300 {
  border-color: var(--p-orange-300) !important;
}
.border-orange-400 {
  border-color: var(--p-orange-400) !important;
}
.border-orange-500 {
  border-color: var(--p-orange-500) !important;
}
.border-orange-600 {
  border-color: var(--p-orange-600) !important;
}
.border-orange-700 {
  border-color: var(--p-orange-700) !important;
}
.border-orange-800 {
  border-color: var(--p-orange-800) !important;
}
.border-orange-900 {
  border-color: var(--p-orange-900) !important;
}

.focus\:border-orange-50:focus {
  border-color: var(--p-orange-50) !important;
}
.focus\:border-orange-100:focus {
  border-color: var(--p-orange-100) !important;
}
.focus\:border-orange-200:focus {
  border-color: var(--p-orange-200) !important;
}
.focus\:border-orange-300:focus {
  border-color: var(--p-orange-300) !important;
}
.focus\:border-orange-400:focus {
  border-color: var(--p-orange-400) !important;
}
.focus\:border-orange-500:focus {
  border-color: var(--p-orange-500) !important;
}
.focus\:border-orange-600:focus {
  border-color: var(--p-orange-600) !important;
}
.focus\:border-orange-700:focus {
  border-color: var(--p-orange-700) !important;
}
.focus\:border-orange-800:focus {
  border-color: var(--p-orange-800) !important;
}
.focus\:border-orange-900:focus {
  border-color: var(--p-orange-900) !important;
}

.hover\:border-orange-50:hover {
  border-color: var(--p-orange-50) !important;
}
.hover\:border-orange-100:hover {
  border-color: var(--p-orange-100) !important;
}
.hover\:border-orange-200:hover {
  border-color: var(--p-orange-200) !important;
}
.hover\:border-orange-300:hover {
  border-color: var(--p-orange-300) !important;
}
.hover\:border-orange-400:hover {
  border-color: var(--p-orange-400) !important;
}
.hover\:border-orange-500:hover {
  border-color: var(--p-orange-500) !important;
}
.hover\:border-orange-600:hover {
  border-color: var(--p-orange-600) !important;
}
.hover\:border-orange-700:hover {
  border-color: var(--p-orange-700) !important;
}
.hover\:border-orange-800:hover {
  border-color: var(--p-orange-800) !important;
}
.hover\:border-orange-900:hover {
  border-color: var(--p-orange-900) !important;
}

.active\:border-orange-50:active {
  border-color: var(--p-orange-50) !important;
}
.active\:border-orange-100:active {
  border-color: var(--p-orange-100) !important;
}
.active\:border-orange-200:active {
  border-color: var(--p-orange-200) !important;
}
.active\:border-orange-300:active {
  border-color: var(--p-orange-300) !important;
}
.active\:border-orange-400:active {
  border-color: var(--p-orange-400) !important;
}
.active\:border-orange-500:active {
  border-color: var(--p-orange-500) !important;
}
.active\:border-orange-600:active {
  border-color: var(--p-orange-600) !important;
}
.active\:border-orange-700:active {
  border-color: var(--p-orange-700) !important;
}
.active\:border-orange-800:active {
  border-color: var(--p-orange-800) !important;
}
.active\:border-orange-900:active {
  border-color: var(--p-orange-900) !important;
}

.border-bluegray-50 {
  border-color: var(--p-bluegray-50) !important;
}
.border-bluegray-100 {
  border-color: var(--p-bluegray-100) !important;
}
.border-bluegray-200 {
  border-color: var(--p-bluegray-200) !important;
}
.border-bluegray-300 {
  border-color: var(--p-bluegray-300) !important;
}
.border-bluegray-400 {
  border-color: var(--p-bluegray-400) !important;
}
.border-bluegray-500 {
  border-color: var(--p-bluegray-500) !important;
}
.border-bluegray-600 {
  border-color: var(--p-bluegray-600) !important;
}
.border-bluegray-700 {
  border-color: var(--p-bluegray-700) !important;
}
.border-bluegray-800 {
  border-color: var(--p-bluegray-800) !important;
}
.border-bluegray-900 {
  border-color: var(--p-bluegray-900) !important;
}

.focus\:border-bluegray-50:focus {
  border-color: var(--p-bluegray-50) !important;
}
.focus\:border-bluegray-100:focus {
  border-color: var(--p-bluegray-100) !important;
}
.focus\:border-bluegray-200:focus {
  border-color: var(--p-bluegray-200) !important;
}
.focus\:border-bluegray-300:focus {
  border-color: var(--p-bluegray-300) !important;
}
.focus\:border-bluegray-400:focus {
  border-color: var(--p-bluegray-400) !important;
}
.focus\:border-bluegray-500:focus {
  border-color: var(--p-bluegray-500) !important;
}
.focus\:border-bluegray-600:focus {
  border-color: var(--p-bluegray-600) !important;
}
.focus\:border-bluegray-700:focus {
  border-color: var(--p-bluegray-700) !important;
}
.focus\:border-bluegray-800:focus {
  border-color: var(--p-bluegray-800) !important;
}
.focus\:border-bluegray-900:focus {
  border-color: var(--p-bluegray-900) !important;
}

.hover\:border-bluegray-50:hover {
  border-color: var(--p-bluegray-50) !important;
}
.hover\:border-bluegray-100:hover {
  border-color: var(--p-bluegray-100) !important;
}
.hover\:border-bluegray-200:hover {
  border-color: var(--p-bluegray-200) !important;
}
.hover\:border-bluegray-300:hover {
  border-color: var(--p-bluegray-300) !important;
}
.hover\:border-bluegray-400:hover {
  border-color: var(--p-bluegray-400) !important;
}
.hover\:border-bluegray-500:hover {
  border-color: var(--p-bluegray-500) !important;
}
.hover\:border-bluegray-600:hover {
  border-color: var(--p-bluegray-600) !important;
}
.hover\:border-bluegray-700:hover {
  border-color: var(--p-bluegray-700) !important;
}
.hover\:border-bluegray-800:hover {
  border-color: var(--p-bluegray-800) !important;
}
.hover\:border-bluegray-900:hover {
  border-color: var(--p-bluegray-900) !important;
}

.active\:border-bluegray-50:active {
  border-color: var(--p-bluegray-50) !important;
}
.active\:border-bluegray-100:active {
  border-color: var(--p-bluegray-100) !important;
}
.active\:border-bluegray-200:active {
  border-color: var(--p-bluegray-200) !important;
}
.active\:border-bluegray-300:active {
  border-color: var(--p-bluegray-300) !important;
}
.active\:border-bluegray-400:active {
  border-color: var(--p-bluegray-400) !important;
}
.active\:border-bluegray-500:active {
  border-color: var(--p-bluegray-500) !important;
}
.active\:border-bluegray-600:active {
  border-color: var(--p-bluegray-600) !important;
}
.active\:border-bluegray-700:active {
  border-color: var(--p-bluegray-700) !important;
}
.active\:border-bluegray-800:active {
  border-color: var(--p-bluegray-800) !important;
}
.active\:border-bluegray-900:active {
  border-color: var(--p-bluegray-900) !important;
}

.border-purple-50 {
  border-color: var(--p-purple-50) !important;
}
.border-purple-100 {
  border-color: var(--p-purple-100) !important;
}
.border-purple-200 {
  border-color: var(--p-purple-200) !important;
}
.border-purple-300 {
  border-color: var(--p-purple-300) !important;
}
.border-purple-400 {
  border-color: var(--p-purple-400) !important;
}
.border-purple-500 {
  border-color: var(--p-purple-500) !important;
}
.border-purple-600 {
  border-color: var(--p-purple-600) !important;
}
.border-purple-700 {
  border-color: var(--p-purple-700) !important;
}
.border-purple-800 {
  border-color: var(--p-purple-800) !important;
}
.border-purple-900 {
  border-color: var(--p-purple-900) !important;
}

.focus\:border-purple-50:focus {
  border-color: var(--p-purple-50) !important;
}
.focus\:border-purple-100:focus {
  border-color: var(--p-purple-100) !important;
}
.focus\:border-purple-200:focus {
  border-color: var(--p-purple-200) !important;
}
.focus\:border-purple-300:focus {
  border-color: var(--p-purple-300) !important;
}
.focus\:border-purple-400:focus {
  border-color: var(--p-purple-400) !important;
}
.focus\:border-purple-500:focus {
  border-color: var(--p-purple-500) !important;
}
.focus\:border-purple-600:focus {
  border-color: var(--p-purple-600) !important;
}
.focus\:border-purple-700:focus {
  border-color: var(--p-purple-700) !important;
}
.focus\:border-purple-800:focus {
  border-color: var(--p-purple-800) !important;
}
.focus\:border-purple-900:focus {
  border-color: var(--p-purple-900) !important;
}

.hover\:border-purple-50:hover {
  border-color: var(--p-purple-50) !important;
}
.hover\:border-purple-100:hover {
  border-color: var(--p-purple-100) !important;
}
.hover\:border-purple-200:hover {
  border-color: var(--p-purple-200) !important;
}
.hover\:border-purple-300:hover {
  border-color: var(--p-purple-300) !important;
}
.hover\:border-purple-400:hover {
  border-color: var(--p-purple-400) !important;
}
.hover\:border-purple-500:hover {
  border-color: var(--p-purple-500) !important;
}
.hover\:border-purple-600:hover {
  border-color: var(--p-purple-600) !important;
}
.hover\:border-purple-700:hover {
  border-color: var(--p-purple-700) !important;
}
.hover\:border-purple-800:hover {
  border-color: var(--p-purple-800) !important;
}
.hover\:border-purple-900:hover {
  border-color: var(--p-purple-900) !important;
}

.active\:border-purple-50:active {
  border-color: var(--p-purple-50) !important;
}
.active\:border-purple-100:active {
  border-color: var(--p-purple-100) !important;
}
.active\:border-purple-200:active {
  border-color: var(--p-purple-200) !important;
}
.active\:border-purple-300:active {
  border-color: var(--p-purple-300) !important;
}
.active\:border-purple-400:active {
  border-color: var(--p-purple-400) !important;
}
.active\:border-purple-500:active {
  border-color: var(--p-purple-500) !important;
}
.active\:border-purple-600:active {
  border-color: var(--p-purple-600) !important;
}
.active\:border-purple-700:active {
  border-color: var(--p-purple-700) !important;
}
.active\:border-purple-800:active {
  border-color: var(--p-purple-800) !important;
}
.active\:border-purple-900:active {
  border-color: var(--p-purple-900) !important;
}

.border-gray-50 {
  border-color: var(--p-gray-50) !important;
}
.border-gray-100 {
  border-color: var(--p-gray-100) !important;
}
.border-gray-200 {
  border-color: var(--p-gray-200) !important;
}
.border-gray-300 {
  border-color: var(--p-gray-300) !important;
}
.border-gray-400 {
  border-color: var(--p-gray-400) !important;
}
.border-gray-500 {
  border-color: var(--p-gray-500) !important;
}
.border-gray-600 {
  border-color: var(--p-gray-600) !important;
}
.border-gray-700 {
  border-color: var(--p-gray-700) !important;
}
.border-gray-800 {
  border-color: var(--p-gray-800) !important;
}
.border-gray-900 {
  border-color: var(--p-gray-900) !important;
}

.focus\:border-gray-50:focus {
  border-color: var(--p-gray-50) !important;
}
.focus\:border-gray-100:focus {
  border-color: var(--p-gray-100) !important;
}
.focus\:border-gray-200:focus {
  border-color: var(--p-gray-200) !important;
}
.focus\:border-gray-300:focus {
  border-color: var(--p-gray-300) !important;
}
.focus\:border-gray-400:focus {
  border-color: var(--p-gray-400) !important;
}
.focus\:border-gray-500:focus {
  border-color: var(--p-gray-500) !important;
}
.focus\:border-gray-600:focus {
  border-color: var(--p-gray-600) !important;
}
.focus\:border-gray-700:focus {
  border-color: var(--p-gray-700) !important;
}
.focus\:border-gray-800:focus {
  border-color: var(--p-gray-800) !important;
}
.focus\:border-gray-900:focus {
  border-color: var(--p-gray-900) !important;
}

.hover\:border-gray-50:hover {
  border-color: var(--p-gray-50) !important;
}
.hover\:border-gray-100:hover {
  border-color: var(--p-gray-100) !important;
}
.hover\:border-gray-200:hover {
  border-color: var(--p-gray-200) !important;
}
.hover\:border-gray-300:hover {
  border-color: var(--p-gray-300) !important;
}
.hover\:border-gray-400:hover {
  border-color: var(--p-gray-400) !important;
}
.hover\:border-gray-500:hover {
  border-color: var(--p-gray-500) !important;
}
.hover\:border-gray-600:hover {
  border-color: var(--p-gray-600) !important;
}
.hover\:border-gray-700:hover {
  border-color: var(--p-gray-700) !important;
}
.hover\:border-gray-800:hover {
  border-color: var(--p-gray-800) !important;
}
.hover\:border-gray-900:hover {
  border-color: var(--p-gray-900) !important;
}

.active\:border-gray-50:active {
  border-color: var(--p-gray-50) !important;
}
.active\:border-gray-100:active {
  border-color: var(--p-gray-100) !important;
}
.active\:border-gray-200:active {
  border-color: var(--p-gray-200) !important;
}
.active\:border-gray-300:active {
  border-color: var(--p-gray-300) !important;
}
.active\:border-gray-400:active {
  border-color: var(--p-gray-400) !important;
}
.active\:border-gray-500:active {
  border-color: var(--p-gray-500) !important;
}
.active\:border-gray-600:active {
  border-color: var(--p-gray-600) !important;
}
.active\:border-gray-700:active {
  border-color: var(--p-gray-700) !important;
}
.active\:border-gray-800:active {
  border-color: var(--p-gray-800) !important;
}
.active\:border-gray-900:active {
  border-color: var(--p-gray-900) !important;
}

.border-red-50 {
  border-color: var(--p-red-50) !important;
}
.border-red-100 {
  border-color: var(--p-red-100) !important;
}
.border-red-200 {
  border-color: var(--p-red-200) !important;
}
.border-red-300 {
  border-color: var(--p-red-300) !important;
}
.border-red-400 {
  border-color: var(--p-red-400) !important;
}
.border-red-500 {
  border-color: var(--p-red-500) !important;
}
.border-red-600 {
  border-color: var(--p-red-600) !important;
}
.border-red-700 {
  border-color: var(--p-red-700) !important;
}
.border-red-800 {
  border-color: var(--p-red-800) !important;
}
.border-red-900 {
  border-color: var(--p-red-900) !important;
}

.focus\:border-red-50:focus {
  border-color: var(--p-red-50) !important;
}
.focus\:border-red-100:focus {
  border-color: var(--p-red-100) !important;
}
.focus\:border-red-200:focus {
  border-color: var(--p-red-200) !important;
}
.focus\:border-red-300:focus {
  border-color: var(--p-red-300) !important;
}
.focus\:border-red-400:focus {
  border-color: var(--p-red-400) !important;
}
.focus\:border-red-500:focus {
  border-color: var(--p-red-500) !important;
}
.focus\:border-red-600:focus {
  border-color: var(--p-red-600) !important;
}
.focus\:border-red-700:focus {
  border-color: var(--p-red-700) !important;
}
.focus\:border-red-800:focus {
  border-color: var(--p-red-800) !important;
}
.focus\:border-red-900:focus {
  border-color: var(--p-red-900) !important;
}

.hover\:border-red-50:hover {
  border-color: var(--p-red-50) !important;
}
.hover\:border-red-100:hover {
  border-color: var(--p-red-100) !important;
}
.hover\:border-red-200:hover {
  border-color: var(--p-red-200) !important;
}
.hover\:border-red-300:hover {
  border-color: var(--p-red-300) !important;
}
.hover\:border-red-400:hover {
  border-color: var(--p-red-400) !important;
}
.hover\:border-red-500:hover {
  border-color: var(--p-red-500) !important;
}
.hover\:border-red-600:hover {
  border-color: var(--p-red-600) !important;
}
.hover\:border-red-700:hover {
  border-color: var(--p-red-700) !important;
}
.hover\:border-red-800:hover {
  border-color: var(--p-red-800) !important;
}
.hover\:border-red-900:hover {
  border-color: var(--p-red-900) !important;
}

.active\:border-red-50:active {
  border-color: var(--p-red-50) !important;
}
.active\:border-red-100:active {
  border-color: var(--p-red-100) !important;
}
.active\:border-red-200:active {
  border-color: var(--p-red-200) !important;
}
.active\:border-red-300:active {
  border-color: var(--p-red-300) !important;
}
.active\:border-red-400:active {
  border-color: var(--p-red-400) !important;
}
.active\:border-red-500:active {
  border-color: var(--p-red-500) !important;
}
.active\:border-red-600:active {
  border-color: var(--p-red-600) !important;
}
.active\:border-red-700:active {
  border-color: var(--p-red-700) !important;
}
.active\:border-red-800:active {
  border-color: var(--p-red-800) !important;
}
.active\:border-red-900:active {
  border-color: var(--p-red-900) !important;
}

.border-primary-50 {
  border-color: var(--p-primary-50) !important;
}
.border-primary-100 {
  border-color: var(--p-primary-100) !important;
}
.border-primary-200 {
  border-color: var(--p-primary-200) !important;
}
.border-primary-300 {
  border-color: var(--p-primary-300) !important;
}
.border-primary-400 {
  border-color: var(--p-primary-400) !important;
}
.border-primary-500 {
  border-color: var(--p-primary-500) !important;
}
.border-primary-600 {
  border-color: var(--p-primary-600) !important;
}
.border-primary-700 {
  border-color: var(--p-primary-700) !important;
}
.border-primary-800 {
  border-color: var(--p-primary-800) !important;
}
.border-primary-900 {
  border-color: var(--p-primary-900) !important;
}

.focus\:border-primary-50:focus {
  border-color: var(--p-primary-50) !important;
}
.focus\:border-primary-100:focus {
  border-color: var(--p-primary-100) !important;
}
.focus\:border-primary-200:focus {
  border-color: var(--p-primary-200) !important;
}
.focus\:border-primary-300:focus {
  border-color: var(--p-primary-300) !important;
}
.focus\:border-primary-400:focus {
  border-color: var(--p-primary-400) !important;
}
.focus\:border-primary-500:focus {
  border-color: var(--p-primary-500) !important;
}
.focus\:border-primary-600:focus {
  border-color: var(--p-primary-600) !important;
}
.focus\:border-primary-700:focus {
  border-color: var(--p-primary-700) !important;
}
.focus\:border-primary-800:focus {
  border-color: var(--p-primary-800) !important;
}
.focus\:border-primary-900:focus {
  border-color: var(--p-primary-900) !important;
}

.hover\:border-primary-50:hover {
  border-color: var(--p-primary-50) !important;
}
.hover\:border-primary-100:hover {
  border-color: var(--p-primary-100) !important;
}
.hover\:border-primary-200:hover {
  border-color: var(--p-primary-200) !important;
}
.hover\:border-primary-300:hover {
  border-color: var(--p-primary-300) !important;
}
.hover\:border-primary-400:hover {
  border-color: var(--p-primary-400) !important;
}
.hover\:border-primary-500:hover {
  border-color: var(--p-primary-500) !important;
}
.hover\:border-primary-600:hover {
  border-color: var(--p-primary-600) !important;
}
.hover\:border-primary-700:hover {
  border-color: var(--p-primary-700) !important;
}
.hover\:border-primary-800:hover {
  border-color: var(--p-primary-800) !important;
}
.hover\:border-primary-900:hover {
  border-color: var(--p-primary-900) !important;
}

.active\:border-primary-50:active {
  border-color: var(--p-primary-50) !important;
}
.active\:border-primary-100:active {
  border-color: var(--p-primary-100) !important;
}
.active\:border-primary-200:active {
  border-color: var(--p-primary-200) !important;
}
.active\:border-primary-300:active {
  border-color: var(--p-primary-300) !important;
}
.active\:border-primary-400:active {
  border-color: var(--p-primary-400) !important;
}
.active\:border-primary-500:active {
  border-color: var(--p-primary-500) !important;
}
.active\:border-primary-600:active {
  border-color: var(--p-primary-600) !important;
}
.active\:border-primary-700:active {
  border-color: var(--p-primary-700) !important;
}
.active\:border-primary-800:active {
  border-color: var(--p-primary-800) !important;
}
.active\:border-primary-900:active {
  border-color: var(--p-primary-900) !important;
}

.bg-white-alpha-10 {
  background-color: rgba(255,255,255,0.1) !important;
}
.bg-white-alpha-20 {
  background-color: rgba(255,255,255,0.2) !important;
}
.bg-white-alpha-30 {
  background-color: rgba(255,255,255,0.3) !important;
}
.bg-white-alpha-40 {
  background-color: rgba(255,255,255,0.4) !important;
}
.bg-white-alpha-50 {
  background-color: rgba(255,255,255,0.5) !important;
}
.bg-white-alpha-60 {
  background-color: rgba(255,255,255,0.6) !important;
}
.bg-white-alpha-70 {
  background-color: rgba(255,255,255,0.7) !important;
}
.bg-white-alpha-80 {
  background-color: rgba(255,255,255,0.8) !important;
}
.bg-white-alpha-90 {
  background-color: rgba(255,255,255,0.9) !important;
}

.hover\:bg-white-alpha-10:hover {
  background-color: rgba(255,255,255,0.1) !important;
}
.hover\:bg-white-alpha-20:hover {
  background-color: rgba(255,255,255,0.2) !important;
}
.hover\:bg-white-alpha-30:hover {
  background-color: rgba(255,255,255,0.3) !important;
}
.hover\:bg-white-alpha-40:hover {
  background-color: rgba(255,255,255,0.4) !important;
}
.hover\:bg-white-alpha-50:hover {
  background-color: rgba(255,255,255,0.5) !important;
}
.hover\:bg-white-alpha-60:hover {
  background-color: rgba(255,255,255,0.6) !important;
}
.hover\:bg-white-alpha-70:hover {
  background-color: rgba(255,255,255,0.7) !important;
}
.hover\:bg-white-alpha-80:hover {
  background-color: rgba(255,255,255,0.8) !important;
}
.hover\:bg-white-alpha-90:hover {
  background-color: rgba(255,255,255,0.9) !important;
}

.focus\:bg-white-alpha-10:focus {
  background-color: rgba(255,255,255,0.1) !important;
}
.focus\:bg-white-alpha-20:focus {
  background-color: rgba(255,255,255,0.2) !important;
}
.focus\:bg-white-alpha-30:focus {
  background-color: rgba(255,255,255,0.3) !important;
}
.focus\:bg-white-alpha-40:focus {
  background-color: rgba(255,255,255,0.4) !important;
}
.focus\:bg-white-alpha-50:focus {
  background-color: rgba(255,255,255,0.5) !important;
}
.focus\:bg-white-alpha-60:focus {
  background-color: rgba(255,255,255,0.6) !important;
}
.focus\:bg-white-alpha-70:focus {
  background-color: rgba(255,255,255,0.7) !important;
}
.focus\:bg-white-alpha-80:focus {
  background-color: rgba(255,255,255,0.8) !important;
}
.focus\:bg-white-alpha-90:focus {
  background-color: rgba(255,255,255,0.9) !important;
}

.active\:bg-white-alpha-10:active {
  background-color: rgba(255,255,255,0.1) !important;
}
.active\:bg-white-alpha-20:active {
  background-color: rgba(255,255,255,0.2) !important;
}
.active\:bg-white-alpha-30:active {
  background-color: rgba(255,255,255,0.3) !important;
}
.active\:bg-white-alpha-40:active {
  background-color: rgba(255,255,255,0.4) !important;
}
.active\:bg-white-alpha-50:active {
  background-color: rgba(255,255,255,0.5) !important;
}
.active\:bg-white-alpha-60:active {
  background-color: rgba(255,255,255,0.6) !important;
}
.active\:bg-white-alpha-70:active {
  background-color: rgba(255,255,255,0.7) !important;
}
.active\:bg-white-alpha-80:active {
  background-color: rgba(255,255,255,0.8) !important;
}
.active\:bg-white-alpha-90:active {
  background-color: rgba(255,255,255,0.9) !important;
}

.bg-black-alpha-10 {
  background-color: rgba(0,0,0,0.1) !important;
}
.bg-black-alpha-20 {
  background-color: rgba(0,0,0,0.2) !important;
}
.bg-black-alpha-30 {
  background-color: rgba(0,0,0,0.3) !important;
}
.bg-black-alpha-40 {
  background-color: rgba(0,0,0,0.4) !important;
}
.bg-black-alpha-50 {
  background-color: rgba(0,0,0,0.5) !important;
}
.bg-black-alpha-60 {
  background-color: rgba(0,0,0,0.6) !important;
}
.bg-black-alpha-70 {
  background-color: rgba(0,0,0,0.7) !important;
}
.bg-black-alpha-80 {
  background-color: rgba(0,0,0,0.8) !important;
}
.bg-black-alpha-90 {
  background-color: rgba(0,0,0,0.9) !important;
}

.hover\:bg-black-alpha-10:hover {
  background-color: rgba(0,0,0,0.1) !important;
}
.hover\:bg-black-alpha-20:hover {
  background-color: rgba(0,0,0,0.2) !important;
}
.hover\:bg-black-alpha-30:hover {
  background-color: rgba(0,0,0,0.3) !important;
}
.hover\:bg-black-alpha-40:hover {
  background-color: rgba(0,0,0,0.4) !important;
}
.hover\:bg-black-alpha-50:hover {
  background-color: rgba(0,0,0,0.5) !important;
}
.hover\:bg-black-alpha-60:hover {
  background-color: rgba(0,0,0,0.6) !important;
}
.hover\:bg-black-alpha-70:hover {
  background-color: rgba(0,0,0,0.7) !important;
}
.hover\:bg-black-alpha-80:hover {
  background-color: rgba(0,0,0,0.8) !important;
}
.hover\:bg-black-alpha-90:hover {
  background-color: rgba(0,0,0,0.9) !important;
}

.focus\:bg-black-alpha-10:focus {
  background-color: rgba(0,0,0,0.1) !important;
}
.focus\:bg-black-alpha-20:focus {
  background-color: rgba(0,0,0,0.2) !important;
}
.focus\:bg-black-alpha-30:focus {
  background-color: rgba(0,0,0,0.3) !important;
}
.focus\:bg-black-alpha-40:focus {
  background-color: rgba(0,0,0,0.4) !important;
}
.focus\:bg-black-alpha-50:focus {
  background-color: rgba(0,0,0,0.5) !important;
}
.focus\:bg-black-alpha-60:focus {
  background-color: rgba(0,0,0,0.6) !important;
}
.focus\:bg-black-alpha-70:focus {
  background-color: rgba(0,0,0,0.7) !important;
}
.focus\:bg-black-alpha-80:focus {
  background-color: rgba(0,0,0,0.8) !important;
}
.focus\:bg-black-alpha-90:focus {
  background-color: rgba(0,0,0,0.9) !important;
}

.active\:bg-black-alpha-10:active {
  background-color: rgba(0,0,0,0.1) !important;
}
.active\:bg-black-alpha-20:active {
  background-color: rgba(0,0,0,0.2) !important;
}
.active\:bg-black-alpha-30:active {
  background-color: rgba(0,0,0,0.3) !important;
}
.active\:bg-black-alpha-40:active {
  background-color: rgba(0,0,0,0.4) !important;
}
.active\:bg-black-alpha-50:active {
  background-color: rgba(0,0,0,0.5) !important;
}
.active\:bg-black-alpha-60:active {
  background-color: rgba(0,0,0,0.6) !important;
}
.active\:bg-black-alpha-70:active {
  background-color: rgba(0,0,0,0.7) !important;
}
.active\:bg-black-alpha-80:active {
  background-color: rgba(0,0,0,0.8) !important;
}
.active\:bg-black-alpha-90:active {
  background-color: rgba(0,0,0,0.9) !important;
}

.border-white-alpha-10 {
  border-color: rgba(255,255,255,0.1) !important;
}
.border-white-alpha-20 {
  border-color: rgba(255,255,255,0.2) !important;
}
.border-white-alpha-30 {
  border-color: rgba(255,255,255,0.3) !important;
}
.border-white-alpha-40 {
  border-color: rgba(255,255,255,0.4) !important;
}
.border-white-alpha-50 {
  border-color: rgba(255,255,255,0.5) !important;
}
.border-white-alpha-60 {
  border-color: rgba(255,255,255,0.6) !important;
}
.border-white-alpha-70 {
  border-color: rgba(255,255,255,0.7) !important;
}
.border-white-alpha-80 {
  border-color: rgba(255,255,255,0.8) !important;
}
.border-white-alpha-90 {
  border-color: rgba(255,255,255,0.9) !important;
}

.hover\:border-white-alpha-10:hover {
  border-color: rgba(255,255,255,0.1) !important;
}
.hover\:border-white-alpha-20:hover {
  border-color: rgba(255,255,255,0.2) !important;
}
.hover\:border-white-alpha-30:hover {
  border-color: rgba(255,255,255,0.3) !important;
}
.hover\:border-white-alpha-40:hover {
  border-color: rgba(255,255,255,0.4) !important;
}
.hover\:border-white-alpha-50:hover {
  border-color: rgba(255,255,255,0.5) !important;
}
.hover\:border-white-alpha-60:hover {
  border-color: rgba(255,255,255,0.6) !important;
}
.hover\:border-white-alpha-70:hover {
  border-color: rgba(255,255,255,0.7) !important;
}
.hover\:border-white-alpha-80:hover {
  border-color: rgba(255,255,255,0.8) !important;
}
.hover\:border-white-alpha-90:hover {
  border-color: rgba(255,255,255,0.9) !important;
}

.focus\:border-white-alpha-10:focus {
  border-color: rgba(255,255,255,0.1) !important;
}
.focus\:border-white-alpha-20:focus {
  border-color: rgba(255,255,255,0.2) !important;
}
.focus\:border-white-alpha-30:focus {
  border-color: rgba(255,255,255,0.3) !important;
}
.focus\:border-white-alpha-40:focus {
  border-color: rgba(255,255,255,0.4) !important;
}
.focus\:border-white-alpha-50:focus {
  border-color: rgba(255,255,255,0.5) !important;
}
.focus\:border-white-alpha-60:focus {
  border-color: rgba(255,255,255,0.6) !important;
}
.focus\:border-white-alpha-70:focus {
  border-color: rgba(255,255,255,0.7) !important;
}
.focus\:border-white-alpha-80:focus {
  border-color: rgba(255,255,255,0.8) !important;
}
.focus\:border-white-alpha-90:focus {
  border-color: rgba(255,255,255,0.9) !important;
}

.active\:border-white-alpha-10:active {
  border-color: rgba(255,255,255,0.1) !important;
}
.active\:border-white-alpha-20:active {
  border-color: rgba(255,255,255,0.2) !important;
}
.active\:border-white-alpha-30:active {
  border-color: rgba(255,255,255,0.3) !important;
}
.active\:border-white-alpha-40:active {
  border-color: rgba(255,255,255,0.4) !important;
}
.active\:border-white-alpha-50:active {
  border-color: rgba(255,255,255,0.5) !important;
}
.active\:border-white-alpha-60:active {
  border-color: rgba(255,255,255,0.6) !important;
}
.active\:border-white-alpha-70:active {
  border-color: rgba(255,255,255,0.7) !important;
}
.active\:border-white-alpha-80:active {
  border-color: rgba(255,255,255,0.8) !important;
}
.active\:border-white-alpha-90:active {
  border-color: rgba(255,255,255,0.9) !important;
}

.border-black-alpha-10 {
  border-color: rgba(0,0,0,0.1) !important;
}
.border-black-alpha-20 {
  border-color: rgba(0,0,0,0.2) !important;
}
.border-black-alpha-30 {
  border-color: rgba(0,0,0,0.3) !important;
}
.border-black-alpha-40 {
  border-color: rgba(0,0,0,0.4) !important;
}
.border-black-alpha-50 {
  border-color: rgba(0,0,0,0.5) !important;
}
.border-black-alpha-60 {
  border-color: rgba(0,0,0,0.6) !important;
}
.border-black-alpha-70 {
  border-color: rgba(0,0,0,0.7) !important;
}
.border-black-alpha-80 {
  border-color: rgba(0,0,0,0.8) !important;
}
.border-black-alpha-90 {
  border-color: rgba(0,0,0,0.9) !important;
}

.hover\:border-black-alpha-10:hover {
  border-color: rgba(0,0,0,0.1) !important;
}
.hover\:border-black-alpha-20:hover {
  border-color: rgba(0,0,0,0.2) !important;
}
.hover\:border-black-alpha-30:hover {
  border-color: rgba(0,0,0,0.3) !important;
}
.hover\:border-black-alpha-40:hover {
  border-color: rgba(0,0,0,0.4) !important;
}
.hover\:border-black-alpha-50:hover {
  border-color: rgba(0,0,0,0.5) !important;
}
.hover\:border-black-alpha-60:hover {
  border-color: rgba(0,0,0,0.6) !important;
}
.hover\:border-black-alpha-70:hover {
  border-color: rgba(0,0,0,0.7) !important;
}
.hover\:border-black-alpha-80:hover {
  border-color: rgba(0,0,0,0.8) !important;
}
.hover\:border-black-alpha-90:hover {
  border-color: rgba(0,0,0,0.9) !important;
}

.focus\:border-black-alpha-10:focus {
  border-color: rgba(0,0,0,0.1) !important;
}
.focus\:border-black-alpha-20:focus {
  border-color: rgba(0,0,0,0.2) !important;
}
.focus\:border-black-alpha-30:focus {
  border-color: rgba(0,0,0,0.3) !important;
}
.focus\:border-black-alpha-40:focus {
  border-color: rgba(0,0,0,0.4) !important;
}
.focus\:border-black-alpha-50:focus {
  border-color: rgba(0,0,0,0.5) !important;
}
.focus\:border-black-alpha-60:focus {
  border-color: rgba(0,0,0,0.6) !important;
}
.focus\:border-black-alpha-70:focus {
  border-color: rgba(0,0,0,0.7) !important;
}
.focus\:border-black-alpha-80:focus {
  border-color: rgba(0,0,0,0.8) !important;
}
.focus\:border-black-alpha-90:focus {
  border-color: rgba(0,0,0,0.9) !important;
}

.active\:border-black-alpha-10:active {
  border-color: rgba(0,0,0,0.1) !important;
}
.active\:border-black-alpha-20:active {
  border-color: rgba(0,0,0,0.2) !important;
}
.active\:border-black-alpha-30:active {
  border-color: rgba(0,0,0,0.3) !important;
}
.active\:border-black-alpha-40:active {
  border-color: rgba(0,0,0,0.4) !important;
}
.active\:border-black-alpha-50:active {
  border-color: rgba(0,0,0,0.5) !important;
}
.active\:border-black-alpha-60:active {
  border-color: rgba(0,0,0,0.6) !important;
}
.active\:border-black-alpha-70:active {
  border-color: rgba(0,0,0,0.7) !important;
}
.active\:border-black-alpha-80:active {
  border-color: rgba(0,0,0,0.8) !important;
}
.active\:border-black-alpha-90:active {
  border-color: rgba(0,0,0,0.9) !important;
}

.text-white-alpha-10 {
  color: rgba(255,255,255,0.1) !important;
}
.text-white-alpha-20 {
  color: rgba(255,255,255,0.2) !important;
}
.text-white-alpha-30 {
  color: rgba(255,255,255,0.3) !important;
}
.text-white-alpha-40 {
  color: rgba(255,255,255,0.4) !important;
}
.text-white-alpha-50 {
  color: rgba(255,255,255,0.5) !important;
}
.text-white-alpha-60 {
  color: rgba(255,255,255,0.6) !important;
}
.text-white-alpha-70 {
  color: rgba(255,255,255,0.7) !important;
}
.text-white-alpha-80 {
  color: rgba(255,255,255,0.8) !important;
}
.text-white-alpha-90 {
  color: rgba(255,255,255,0.9) !important;
}

.hover\:text-white-alpha-10:hover {
  color: rgba(255,255,255,0.1) !important;
}
.hover\:text-white-alpha-20:hover {
  color: rgba(255,255,255,0.2) !important;
}
.hover\:text-white-alpha-30:hover {
  color: rgba(255,255,255,0.3) !important;
}
.hover\:text-white-alpha-40:hover {
  color: rgba(255,255,255,0.4) !important;
}
.hover\:text-white-alpha-50:hover {
  color: rgba(255,255,255,0.5) !important;
}
.hover\:text-white-alpha-60:hover {
  color: rgba(255,255,255,0.6) !important;
}
.hover\:text-white-alpha-70:hover {
  color: rgba(255,255,255,0.7) !important;
}
.hover\:text-white-alpha-80:hover {
  color: rgba(255,255,255,0.8) !important;
}
.hover\:text-white-alpha-90:hover {
  color: rgba(255,255,255,0.9) !important;
}

.focus\:text-white-alpha-10:focus {
  color: rgba(255,255,255,0.1) !important;
}
.focus\:text-white-alpha-20:focus {
  color: rgba(255,255,255,0.2) !important;
}
.focus\:text-white-alpha-30:focus {
  color: rgba(255,255,255,0.3) !important;
}
.focus\:text-white-alpha-40:focus {
  color: rgba(255,255,255,0.4) !important;
}
.focus\:text-white-alpha-50:focus {
  color: rgba(255,255,255,0.5) !important;
}
.focus\:text-white-alpha-60:focus {
  color: rgba(255,255,255,0.6) !important;
}
.focus\:text-white-alpha-70:focus {
  color: rgba(255,255,255,0.7) !important;
}
.focus\:text-white-alpha-80:focus {
  color: rgba(255,255,255,0.8) !important;
}
.focus\:text-white-alpha-90:focus {
  color: rgba(255,255,255,0.9) !important;
}

.active\:text-white-alpha-10:active {
  color: rgba(255,255,255,0.1) !important;
}
.active\:text-white-alpha-20:active {
  color: rgba(255,255,255,0.2) !important;
}
.active\:text-white-alpha-30:active {
  color: rgba(255,255,255,0.3) !important;
}
.active\:text-white-alpha-40:active {
  color: rgba(255,255,255,0.4) !important;
}
.active\:text-white-alpha-50:active {
  color: rgba(255,255,255,0.5) !important;
}
.active\:text-white-alpha-60:active {
  color: rgba(255,255,255,0.6) !important;
}
.active\:text-white-alpha-70:active {
  color: rgba(255,255,255,0.7) !important;
}
.active\:text-white-alpha-80:active {
  color: rgba(255,255,255,0.8) !important;
}
.active\:text-white-alpha-90:active {
  color: rgba(255,255,255,0.9) !important;
}

.text-black-alpha-10 {
  color: rgba(0,0,0,0.1) !important;
}
.text-black-alpha-20 {
  color: rgba(0,0,0,0.2) !important;
}
.text-black-alpha-30 {
  color: rgba(0,0,0,0.3) !important;
}
.text-black-alpha-40 {
  color: rgba(0,0,0,0.4) !important;
}
.text-black-alpha-50 {
  color: rgba(0,0,0,0.5) !important;
}
.text-black-alpha-60 {
  color: rgba(0,0,0,0.6) !important;
}
.text-black-alpha-70 {
  color: rgba(0,0,0,0.7) !important;
}
.text-black-alpha-80 {
  color: rgba(0,0,0,0.8) !important;
}
.text-black-alpha-90 {
  color: rgba(0,0,0,0.9) !important;
}

.hover\:text-black-alpha-10:hover {
  color: rgba(0,0,0,0.1) !important;
}
.hover\:text-black-alpha-20:hover {
  color: rgba(0,0,0,0.2) !important;
}
.hover\:text-black-alpha-30:hover {
  color: rgba(0,0,0,0.3) !important;
}
.hover\:text-black-alpha-40:hover {
  color: rgba(0,0,0,0.4) !important;
}
.hover\:text-black-alpha-50:hover {
  color: rgba(0,0,0,0.5) !important;
}
.hover\:text-black-alpha-60:hover {
  color: rgba(0,0,0,0.6) !important;
}
.hover\:text-black-alpha-70:hover {
  color: rgba(0,0,0,0.7) !important;
}
.hover\:text-black-alpha-80:hover {
  color: rgba(0,0,0,0.8) !important;
}
.hover\:text-black-alpha-90:hover {
  color: rgba(0,0,0,0.9) !important;
}

.focus\:text-black-alpha-10:focus {
  color: rgba(0,0,0,0.1) !important;
}
.focus\:text-black-alpha-20:focus {
  color: rgba(0,0,0,0.2) !important;
}
.focus\:text-black-alpha-30:focus {
  color: rgba(0,0,0,0.3) !important;
}
.focus\:text-black-alpha-40:focus {
  color: rgba(0,0,0,0.4) !important;
}
.focus\:text-black-alpha-50:focus {
  color: rgba(0,0,0,0.5) !important;
}
.focus\:text-black-alpha-60:focus {
  color: rgba(0,0,0,0.6) !important;
}
.focus\:text-black-alpha-70:focus {
  color: rgba(0,0,0,0.7) !important;
}
.focus\:text-black-alpha-80:focus {
  color: rgba(0,0,0,0.8) !important;
}
.focus\:text-black-alpha-90:focus {
  color: rgba(0,0,0,0.9) !important;
}

.active\:text-black-alpha-10:active {
  color: rgba(0,0,0,0.1) !important;
}
.active\:text-black-alpha-20:active {
  color: rgba(0,0,0,0.2) !important;
}
.active\:text-black-alpha-30:active {
  color: rgba(0,0,0,0.3) !important;
}
.active\:text-black-alpha-40:active {
  color: rgba(0,0,0,0.4) !important;
}
.active\:text-black-alpha-50:active {
  color: rgba(0,0,0,0.5) !important;
}
.active\:text-black-alpha-60:active {
  color: rgba(0,0,0,0.6) !important;
}
.active\:text-black-alpha-70:active {
  color: rgba(0,0,0,0.7) !important;
}
.active\:text-black-alpha-80:active {
  color: rgba(0,0,0,0.8) !important;
}
.active\:text-black-alpha-90:active {
  color: rgba(0,0,0,0.9) !important;
}

.text-primary {
  color: var(--p-primary-color) !important;
}

.bg-primary {
  color: var(--p-primary-contrast-color) !important;
  background-color: var(--p-primary-color) !important;
}

.bg-primary-reverse {
  color: var(--p-primary-color) !important;
  background-color: var(--p-primary-contrast-color) !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.border-primary {
  border-color: var(--p-primary-color) !important;
}

.text-white {
  color: #ffffff !important;
}

.border-white {
  border-color: #ffffff !important;
}

.text-color {
  color: var(--p-text-color) !important;
}

.text-color-secondary {
  color: var(--p-text-muted-color) !important;
}

.surface-ground {
  background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
}

.surface-section {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
}

.surface-card {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.surface-overlay {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.surface-hover {
  background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
}

.surface-border {
  border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
}

.focus\:text-primary:focus {
  color: var(--p-primary-color) !important;
}

.hover\:text-primary:hover {
  color: var(--p-primary-color) !important;
}

.active\:text-primary:active {
  color: var(--p-primary-color) !important;
}

.focus\:bg-primary:focus {
  color: var(--p-primary-contrast-color) !important;
  background-color: var(--p-primary-color) !important;
}

.hover\:bg-primary:hover {
  color: var(--p-primary-contrast-color) !important;
  background-color: var(--p-primary-color) !important;
}

.active\:bg-primary:active {
  color: var(--p-primary-contrast-color) !important;
  background-color: var(--p-primary-color) !important;
}

.focus\:bg-primary-reverse:focus {
  color: var(--p-primary-color) !important;
  background-color: var(--p-primary-contrast-color) !important;
}

.hover\:bg-primary-reverse:hover {
  color: var(--p-primary-color) !important;
  background-color: var(--p-primary-contrast-color) !important;
}

.active\:bg-primary-reverse:active {
  color: var(--p-primary-color) !important;
  background-color: var(--p-primary-contrast-color) !important;
}

.focus\:bg-white:focus {
  background-color: #ffffff !important;
}

.hover\:bg-white:hover {
  background-color: #ffffff !important;
}

.active\:bg-white:active {
  background-color: #ffffff !important;
}

.focus\:border-primary:focus {
  border-color: var(--p-primary-color) !important;
}

.hover\:border-primary:hover {
  border-color: var(--p-primary-color) !important;
}

.active\:border-primary:active {
  border-color: var(--p-primary-color) !important;
}

.focus\:text-white:focus {
  color: #ffffff !important;
}

.hover\:text-white:hover {
  color: #ffffff !important;
}

.active\:text-white:active {
  color: #ffffff !important;
}

.focus\:border-white:focus {
  border-color: #ffffff !important;
}

.hover\:border-white:hover {
  border-color: #ffffff !important;
}

.active\:border-white:active {
  border-color: #ffffff !important;
}

.focus\:text-color:focus {
  color: var(--p-text-color) !important;
}

.hover\:text-color:hover {
  color: var(--p-text-color) !important;
}

.active\:text-color:active {
  color: var(--p-text-color) !important;
}

.focus\:text-color-secondary:focus {
  color: var(--p-text-muted-color) !important;
}

.hover\:text-color-secondary:hover {
  color: var(--p-text-muted-color) !important;
}

.active\:text-color-secondary:active {
  color: var(--p-text-muted-color) !important;
}

.focus\:surface-ground:focus {
  background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
}

.hover\:surface-ground:hover {
  background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
}

.active\:surface-ground:active {
  background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
}

.focus\:surface-section:focus {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
}

.hover\:surface-section:hover {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
}

.active\:surface-section:active {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
}

.focus\:surface-card:focus {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.hover\:surface-card:hover {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.active\:surface-card:active {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.focus\:surface-overlay:focus {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.hover\:surface-overlay:hover {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.active\:surface-overlay:active {
  background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
}

.focus\:surface-hover:focus {
  background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
}

.hover\:surface-hover:hover {
  background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
}

.active\:surface-hover:active {
  background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
}

.focus\:surface-border:focus {
  border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
}

.hover\:surface-border:hover {
  border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
}

.active\:surface-border:active {
  border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
}

@media screen and (min-width: 576px) {
  .sm\:text-primary {
    color: var(--p-primary-color) !important;
  }
  .sm\:bg-primary {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .sm\:bg-primary-reverse {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .sm\:bg-white {
    background-color: #ffffff !important;
  }
  .sm\:border-primary {
    border-color: var(--p-primary-color) !important;
  }
  .sm\:text-white {
    color: #ffffff !important;
  }
  .sm\:border-white {
    border-color: #ffffff !important;
  }
  .sm\:text-color {
    color: var(--p-text-color) !important;
  }
  .sm\:text-color-secondary {
    color: var(--p-text-muted-color) !important;
  }
  .sm\:surface-ground {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .sm\:surface-section {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .sm\:surface-card {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .sm\:surface-overlay {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .sm\:surface-hover {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .sm\:surface-border {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .sm\:focus\:text-primary:focus {
    color: var(--p-primary-color) !important;
  }
  .sm\:hover\:text-primary:hover {
    color: var(--p-primary-color) !important;
  }
  .sm\:active\:text-primary:active {
    color: var(--p-primary-color) !important;
  }
  .sm\:focus\:bg-primary:focus {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .sm\:hover\:bg-primary:hover {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .sm\:active\:bg-primary:active {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .sm\:focus\:bg-primary-reverse:focus {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .sm\:hover\:bg-primary-reverse:hover {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .sm\:active\:bg-primary-reverse:active {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .sm\:focus\:bg-white:focus {
    background-color: #ffffff !important;
  }
  .sm\:hover\:bg-white:hover {
    background-color: #ffffff !important;
  }
  .sm\:active\:bg-white:active {
    background-color: #ffffff !important;
  }
  .sm\:focus\:border-primary:focus {
    border-color: var(--p-primary-color) !important;
  }
  .sm\:hover\:border-primary:hover {
    border-color: var(--p-primary-color) !important;
  }
  .sm\:active\:border-primary:active {
    border-color: var(--p-primary-color) !important;
  }
  .sm\:focus\:text-white:focus {
    color: #ffffff !important;
  }
  .sm\:hover\:text-white:hover {
    color: #ffffff !important;
  }
  .sm\:active\:text-white:active {
    color: #ffffff !important;
  }
  .sm\:focus\:border-white:focus {
    border-color: #ffffff !important;
  }
  .sm\:hover\:border-white:hover {
    border-color: #ffffff !important;
  }
  .sm\:active\:border-white:active {
    border-color: #ffffff !important;
  }
  .sm\:focus\:text-color:focus {
    color: var(--p-text-color) !important;
  }
  .sm\:hover\:text-color:hover {
    color: var(--p-text-color) !important;
  }
  .sm\:active\:text-color:active {
    color: var(--p-text-color) !important;
  }
  .sm\:focus\:text-color-secondary:focus {
    color: var(--p-text-muted-color) !important;
  }
  .sm\:hover\:text-color-secondary:hover {
    color: var(--p-text-muted-color) !important;
  }
  .sm\:active\:text-color-secondary:active {
    color: var(--p-text-muted-color) !important;
  }
  .sm\:focus\:surface-ground:focus {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .sm\:hover\:surface-ground:hover {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .sm\:active\:surface-ground:active {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .sm\:focus\:surface-section:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .sm\:hover\:surface-section:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .sm\:active\:surface-section:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .sm\:focus\:surface-card:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .sm\:hover\:surface-card:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .sm\:active\:surface-card:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .sm\:focus\:surface-overlay:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .sm\:hover\:surface-overlay:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .sm\:active\:surface-overlay:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .sm\:focus\:surface-hover:focus {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .sm\:hover\:surface-hover:hover {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .sm\:active\:surface-hover:active {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .sm\:focus\:surface-border:focus {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .sm\:hover\:surface-border:hover {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .sm\:active\:surface-border:active {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:text-primary {
    color: var(--p-primary-color) !important;
  }
  .md\:bg-primary {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .md\:bg-primary-reverse {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .md\:bg-white {
    background-color: #ffffff !important;
  }
  .md\:border-primary {
    border-color: var(--p-primary-color) !important;
  }
  .md\:text-white {
    color: #ffffff !important;
  }
  .md\:border-white {
    border-color: #ffffff !important;
  }
  .md\:text-color {
    color: var(--p-text-color) !important;
  }
  .md\:text-color-secondary {
    color: var(--p-text-muted-color) !important;
  }
  .md\:surface-ground {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .md\:surface-section {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .md\:surface-card {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .md\:surface-overlay {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .md\:surface-hover {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .md\:surface-border {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .md\:focus\:text-primary:focus {
    color: var(--p-primary-color) !important;
  }
  .md\:hover\:text-primary:hover {
    color: var(--p-primary-color) !important;
  }
  .md\:active\:text-primary:active {
    color: var(--p-primary-color) !important;
  }
  .md\:focus\:bg-primary:focus {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .md\:hover\:bg-primary:hover {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .md\:active\:bg-primary:active {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .md\:focus\:bg-primary-reverse:focus {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .md\:hover\:bg-primary-reverse:hover {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .md\:active\:bg-primary-reverse:active {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .md\:focus\:bg-white:focus {
    background-color: #ffffff !important;
  }
  .md\:hover\:bg-white:hover {
    background-color: #ffffff !important;
  }
  .md\:active\:bg-white:active {
    background-color: #ffffff !important;
  }
  .md\:focus\:border-primary:focus {
    border-color: var(--p-primary-color) !important;
  }
  .md\:hover\:border-primary:hover {
    border-color: var(--p-primary-color) !important;
  }
  .md\:active\:border-primary:active {
    border-color: var(--p-primary-color) !important;
  }
  .md\:focus\:text-white:focus {
    color: #ffffff !important;
  }
  .md\:hover\:text-white:hover {
    color: #ffffff !important;
  }
  .md\:active\:text-white:active {
    color: #ffffff !important;
  }
  .md\:focus\:border-white:focus {
    border-color: #ffffff !important;
  }
  .md\:hover\:border-white:hover {
    border-color: #ffffff !important;
  }
  .md\:active\:border-white:active {
    border-color: #ffffff !important;
  }
  .md\:focus\:text-color:focus {
    color: var(--p-text-color) !important;
  }
  .md\:hover\:text-color:hover {
    color: var(--p-text-color) !important;
  }
  .md\:active\:text-color:active {
    color: var(--p-text-color) !important;
  }
  .md\:focus\:text-color-secondary:focus {
    color: var(--p-text-muted-color) !important;
  }
  .md\:hover\:text-color-secondary:hover {
    color: var(--p-text-muted-color) !important;
  }
  .md\:active\:text-color-secondary:active {
    color: var(--p-text-muted-color) !important;
  }
  .md\:focus\:surface-ground:focus {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .md\:hover\:surface-ground:hover {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .md\:active\:surface-ground:active {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .md\:focus\:surface-section:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .md\:hover\:surface-section:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .md\:active\:surface-section:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .md\:focus\:surface-card:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .md\:hover\:surface-card:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .md\:active\:surface-card:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .md\:focus\:surface-overlay:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .md\:hover\:surface-overlay:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .md\:active\:surface-overlay:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .md\:focus\:surface-hover:focus {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .md\:hover\:surface-hover:hover {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .md\:active\:surface-hover:active {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .md\:focus\:surface-border:focus {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .md\:hover\:surface-border:hover {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .md\:active\:surface-border:active {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:text-primary {
    color: var(--p-primary-color) !important;
  }
  .lg\:bg-primary {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .lg\:bg-primary-reverse {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .lg\:bg-white {
    background-color: #ffffff !important;
  }
  .lg\:border-primary {
    border-color: var(--p-primary-color) !important;
  }
  .lg\:text-white {
    color: #ffffff !important;
  }
  .lg\:border-white {
    border-color: #ffffff !important;
  }
  .lg\:text-color {
    color: var(--p-text-color) !important;
  }
  .lg\:text-color-secondary {
    color: var(--p-text-muted-color) !important;
  }
  .lg\:surface-ground {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .lg\:surface-section {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .lg\:surface-card {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .lg\:surface-overlay {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .lg\:surface-hover {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .lg\:surface-border {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .lg\:focus\:text-primary:focus {
    color: var(--p-primary-color) !important;
  }
  .lg\:hover\:text-primary:hover {
    color: var(--p-primary-color) !important;
  }
  .lg\:active\:text-primary:active {
    color: var(--p-primary-color) !important;
  }
  .lg\:focus\:bg-primary:focus {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .lg\:hover\:bg-primary:hover {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .lg\:active\:bg-primary:active {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .lg\:focus\:bg-primary-reverse:focus {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .lg\:hover\:bg-primary-reverse:hover {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .lg\:active\:bg-primary-reverse:active {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .lg\:focus\:bg-white:focus {
    background-color: #ffffff !important;
  }
  .lg\:hover\:bg-white:hover {
    background-color: #ffffff !important;
  }
  .lg\:active\:bg-white:active {
    background-color: #ffffff !important;
  }
  .lg\:focus\:border-primary:focus {
    border-color: var(--p-primary-color) !important;
  }
  .lg\:hover\:border-primary:hover {
    border-color: var(--p-primary-color) !important;
  }
  .lg\:active\:border-primary:active {
    border-color: var(--p-primary-color) !important;
  }
  .lg\:focus\:text-white:focus {
    color: #ffffff !important;
  }
  .lg\:hover\:text-white:hover {
    color: #ffffff !important;
  }
  .lg\:active\:text-white:active {
    color: #ffffff !important;
  }
  .lg\:focus\:border-white:focus {
    border-color: #ffffff !important;
  }
  .lg\:hover\:border-white:hover {
    border-color: #ffffff !important;
  }
  .lg\:active\:border-white:active {
    border-color: #ffffff !important;
  }
  .lg\:focus\:text-color:focus {
    color: var(--p-text-color) !important;
  }
  .lg\:hover\:text-color:hover {
    color: var(--p-text-color) !important;
  }
  .lg\:active\:text-color:active {
    color: var(--p-text-color) !important;
  }
  .lg\:focus\:text-color-secondary:focus {
    color: var(--p-text-muted-color) !important;
  }
  .lg\:hover\:text-color-secondary:hover {
    color: var(--p-text-muted-color) !important;
  }
  .lg\:active\:text-color-secondary:active {
    color: var(--p-text-muted-color) !important;
  }
  .lg\:focus\:surface-ground:focus {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .lg\:hover\:surface-ground:hover {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .lg\:active\:surface-ground:active {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .lg\:focus\:surface-section:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .lg\:hover\:surface-section:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .lg\:active\:surface-section:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .lg\:focus\:surface-card:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .lg\:hover\:surface-card:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .lg\:active\:surface-card:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .lg\:focus\:surface-overlay:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .lg\:hover\:surface-overlay:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .lg\:active\:surface-overlay:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .lg\:focus\:surface-hover:focus {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .lg\:hover\:surface-hover:hover {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .lg\:active\:surface-hover:active {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .lg\:focus\:surface-border:focus {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .lg\:hover\:surface-border:hover {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .lg\:active\:surface-border:active {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:text-primary {
    color: var(--p-primary-color) !important;
  }
  .xl\:bg-primary {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .xl\:bg-primary-reverse {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .xl\:bg-white {
    background-color: #ffffff !important;
  }
  .xl\:border-primary {
    border-color: var(--p-primary-color) !important;
  }
  .xl\:text-white {
    color: #ffffff !important;
  }
  .xl\:border-white {
    border-color: #ffffff !important;
  }
  .xl\:text-color {
    color: var(--p-text-color) !important;
  }
  .xl\:text-color-secondary {
    color: var(--p-text-muted-color) !important;
  }
  .xl\:surface-ground {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .xl\:surface-section {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .xl\:surface-card {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .xl\:surface-overlay {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .xl\:surface-hover {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .xl\:surface-border {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .xl\:focus\:text-primary:focus {
    color: var(--p-primary-color) !important;
  }
  .xl\:hover\:text-primary:hover {
    color: var(--p-primary-color) !important;
  }
  .xl\:active\:text-primary:active {
    color: var(--p-primary-color) !important;
  }
  .xl\:focus\:bg-primary:focus {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .xl\:hover\:bg-primary:hover {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .xl\:active\:bg-primary:active {
    color: var(--p-primary-contrast-color) !important;
    background-color: var(--p-primary-color) !important;
  }
  .xl\:focus\:bg-primary-reverse:focus {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .xl\:hover\:bg-primary-reverse:hover {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .xl\:active\:bg-primary-reverse:active {
    color: var(--p-primary-color) !important;
    background-color: var(--p-primary-contrast-color) !important;
  }
  .xl\:focus\:bg-white:focus {
    background-color: #ffffff !important;
  }
  .xl\:hover\:bg-white:hover {
    background-color: #ffffff !important;
  }
  .xl\:active\:bg-white:active {
    background-color: #ffffff !important;
  }
  .xl\:focus\:border-primary:focus {
    border-color: var(--p-primary-color) !important;
  }
  .xl\:hover\:border-primary:hover {
    border-color: var(--p-primary-color) !important;
  }
  .xl\:active\:border-primary:active {
    border-color: var(--p-primary-color) !important;
  }
  .xl\:focus\:text-white:focus {
    color: #ffffff !important;
  }
  .xl\:hover\:text-white:hover {
    color: #ffffff !important;
  }
  .xl\:active\:text-white:active {
    color: #ffffff !important;
  }
  .xl\:focus\:border-white:focus {
    border-color: #ffffff !important;
  }
  .xl\:hover\:border-white:hover {
    border-color: #ffffff !important;
  }
  .xl\:active\:border-white:active {
    border-color: #ffffff !important;
  }
  .xl\:focus\:text-color:focus {
    color: var(--p-text-color) !important;
  }
  .xl\:hover\:text-color:hover {
    color: var(--p-text-color) !important;
  }
  .xl\:active\:text-color:active {
    color: var(--p-text-color) !important;
  }
  .xl\:focus\:text-color-secondary:focus {
    color: var(--p-text-muted-color) !important;
  }
  .xl\:hover\:text-color-secondary:hover {
    color: var(--p-text-muted-color) !important;
  }
  .xl\:active\:text-color-secondary:active {
    color: var(--p-text-muted-color) !important;
  }
  .xl\:focus\:surface-ground:focus {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .xl\:hover\:surface-ground:hover {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .xl\:active\:surface-ground:active {
    background-color: light-dark(var(--p-surface-50), var(--p-surface-950)) !important;
  }
  .xl\:focus\:surface-section:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .xl\:hover\:surface-section:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .xl\:active\:surface-section:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-950)) !important;
  }
  .xl\:focus\:surface-card:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .xl\:hover\:surface-card:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .xl\:active\:surface-card:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .xl\:focus\:surface-overlay:focus {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .xl\:hover\:surface-overlay:hover {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .xl\:active\:surface-overlay:active {
    background-color: light-dark(var(--p-surface-0), var(--p-surface-900)) !important;
  }
  .xl\:focus\:surface-hover:focus {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .xl\:hover\:surface-hover:hover {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .xl\:active\:surface-hover:active {
    background-color: light-dark(var(--p-surface-800), var(--p-surface-100)) !important;
  }
  .xl\:focus\:surface-border:focus {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .xl\:hover\:surface-border:hover {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
  .xl\:active\:surface-border:active {
    border-color: light-dark(var(--p-surface-200), var(--p-surface-700)) !important;
  }
}
.field {
  margin-bottom: 1rem;
}

.field > label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.field.grid > label {
  display: flex;
  align-items: center;
}

.field > small {
  margin-top: 0.25rem;
}

.field.grid,
.formgrid.grid {
  margin-top: 0;
}

.field.grid .col-fixed,
.formgrid.grid .col-fixed,
.field.grid .col,
.formgrid.grid .col,
.field.grid .col-1,
.formgrid.grid .col-1,
.field.grid .col-2,
.formgrid.grid .col-2,
.field.grid .col-3,
.formgrid.grid .col-3,
.field.grid .col-4,
.formgrid.grid .col-4,
.field.grid .col-5,
.formgrid.grid .col-5,
.field.grid .col-6,
.formgrid.grid .col-6,
.field.grid .col-7,
.formgrid.grid .col-7,
.field.grid .col-8,
.formgrid.grid .col-8,
.field.grid .col-9,
.formgrid.grid .col-9,
.field.grid .col-10,
.formgrid.grid .col-10,
.field.grid .col-11,
.formgrid.grid .col-11,
.field.grid .col-12,
.formgrid.grid .col-12 {
  padding-top: 0;
  padding-bottom: 0;
}

.formgroup-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.formgroup-inline .field,
.formgroup-inline .field-checkbox,
.formgroup-inline .field-radiobutton {
  margin-right: 1rem;
}

.formgroup-inline .field > label,
.formgroup-inline .field-checkbox > label,
.formgroup-inline .field-radiobutton > label {
  margin-right: 0.5rem;
  margin-bottom: 0;
}

.field-checkbox,
.field-radiobutton {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.field-checkbox > label,
.field-radiobutton > label {
  margin-left: 0.5rem;
  line-height: 1;
}

.hidden {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

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

.flex {
  display: flex !important;
}

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

@media screen and (min-width: 576px) {
  .sm\:hidden {
    display: none !important;
  }
  .sm\:block {
    display: block !important;
  }
  .sm\:inline {
    display: inline !important;
  }
  .sm\:inline-block {
    display: inline-block !important;
  }
  .sm\:flex {
    display: flex !important;
  }
  .sm\:inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:hidden {
    display: none !important;
  }
  .md\:block {
    display: block !important;
  }
  .md\:inline {
    display: inline !important;
  }
  .md\:inline-block {
    display: inline-block !important;
  }
  .md\:flex {
    display: flex !important;
  }
  .md\:inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:hidden {
    display: none !important;
  }
  .lg\:block {
    display: block !important;
  }
  .lg\:inline {
    display: inline !important;
  }
  .lg\:inline-block {
    display: inline-block !important;
  }
  .lg\:flex {
    display: flex !important;
  }
  .lg\:inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:hidden {
    display: none !important;
  }
  .xl\:block {
    display: block !important;
  }
  .xl\:inline {
    display: inline !important;
  }
  .xl\:inline-block {
    display: inline-block !important;
  }
  .xl\:flex {
    display: flex !important;
  }
  .xl\:inline-flex {
    display: inline-flex !important;
  }
}
.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

@media screen and (min-width: 576px) {
  .sm\:text-center {
    text-align: center !important;
  }
  .sm\:text-justify {
    text-align: justify !important;
  }
  .sm\:text-left {
    text-align: left !important;
  }
  .sm\:text-right {
    text-align: right !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:text-center {
    text-align: center !important;
  }
  .md\:text-justify {
    text-align: justify !important;
  }
  .md\:text-left {
    text-align: left !important;
  }
  .md\:text-right {
    text-align: right !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:text-center {
    text-align: center !important;
  }
  .lg\:text-justify {
    text-align: justify !important;
  }
  .lg\:text-left {
    text-align: left !important;
  }
  .lg\:text-right {
    text-align: right !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:text-center {
    text-align: center !important;
  }
  .xl\:text-justify {
    text-align: justify !important;
  }
  .xl\:text-left {
    text-align: left !important;
  }
  .xl\:text-right {
    text-align: right !important;
  }
}
.underline {
  text-decoration: underline !important;
}

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

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

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

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

.active\:underline:active {
  text-decoration: underline !important;
}

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

.hover\:line-through:hover {
  text-decoration: line-through !important;
}

.active\:line-through:active {
  text-decoration: line-through !important;
}

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

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

.active\:no-underline:active {
  text-decoration: none !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.text-overflow-clip {
  text-overflow: clip !important;
}

.text-overflow-ellipsis {
  text-overflow: ellipsis !important;
}

@media screen and (min-width: 576px) {
  .sm\:text-overflow-clip {
    text-overflow: clip !important;
  }
  .sm\:text-overflow-ellipsis {
    text-overflow: ellipsis !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:text-overflow-clip {
    text-overflow: clip !important;
  }
  .md\:text-overflow-ellipsis {
    text-overflow: ellipsis !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:text-overflow-clip {
    text-overflow: clip !important;
  }
  .lg\:text-overflow-ellipsis {
    text-overflow: ellipsis !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:text-overflow-clip {
    text-overflow: clip !important;
  }
  .xl\:text-overflow-ellipsis {
    text-overflow: ellipsis !important;
  }
}
.font-light {
  font-weight: 300 !important;
}

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

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

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

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

@media screen and (min-width: 576px) {
  .sm\:font-light {
    font-weight: 300 !important;
  }
  .sm\:font-normal {
    font-weight: 400 !important;
  }
  .sm\:font-medium {
    font-weight: 500 !important;
  }
  .sm\:font-semibold {
    font-weight: 600 !important;
  }
  .sm\:font-bold {
    font-weight: 700 !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:font-light {
    font-weight: 300 !important;
  }
  .md\:font-normal {
    font-weight: 400 !important;
  }
  .md\:font-medium {
    font-weight: 500 !important;
  }
  .md\:font-semibold {
    font-weight: 600 !important;
  }
  .md\:font-bold {
    font-weight: 700 !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:font-light {
    font-weight: 300 !important;
  }
  .lg\:font-normal {
    font-weight: 400 !important;
  }
  .lg\:font-medium {
    font-weight: 500 !important;
  }
  .lg\:font-semibold {
    font-weight: 600 !important;
  }
  .lg\:font-bold {
    font-weight: 700 !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:font-light {
    font-weight: 300 !important;
  }
  .xl\:font-normal {
    font-weight: 400 !important;
  }
  .xl\:font-medium {
    font-weight: 500 !important;
  }
  .xl\:font-semibold {
    font-weight: 600 !important;
  }
  .xl\:font-bold {
    font-weight: 700 !important;
  }
}
.font-italic {
  font-style: italic !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 576px) {
  .sm\:text-xs {
    font-size: 0.75rem !important;
  }
  .sm\:text-sm {
    font-size: 0.875rem !important;
  }
  .sm\:text-base {
    font-size: 1rem !important;
  }
  .sm\:text-lg {
    font-size: 1.125rem !important;
  }
  .sm\:text-xl {
    font-size: 1.25rem !important;
  }
  .sm\:text-2xl {
    font-size: 1.5rem !important;
  }
  .sm\:text-3xl {
    font-size: 1.75rem !important;
  }
  .sm\:text-4xl {
    font-size: 2rem !important;
  }
  .sm\:text-5xl {
    font-size: 2.5rem !important;
  }
  .sm\:text-6xl {
    font-size: 3rem !important;
  }
  .sm\:text-7xl {
    font-size: 4rem !important;
  }
  .sm\:text-8xl {
    font-size: 6rem !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:text-xs {
    font-size: 0.75rem !important;
  }
  .md\:text-sm {
    font-size: 0.875rem !important;
  }
  .md\:text-base {
    font-size: 1rem !important;
  }
  .md\:text-lg {
    font-size: 1.125rem !important;
  }
  .md\:text-xl {
    font-size: 1.25rem !important;
  }
  .md\:text-2xl {
    font-size: 1.5rem !important;
  }
  .md\:text-3xl {
    font-size: 1.75rem !important;
  }
  .md\:text-4xl {
    font-size: 2rem !important;
  }
  .md\:text-5xl {
    font-size: 2.5rem !important;
  }
  .md\:text-6xl {
    font-size: 3rem !important;
  }
  .md\:text-7xl {
    font-size: 4rem !important;
  }
  .md\:text-8xl {
    font-size: 6rem !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:text-xs {
    font-size: 0.75rem !important;
  }
  .lg\:text-sm {
    font-size: 0.875rem !important;
  }
  .lg\:text-base {
    font-size: 1rem !important;
  }
  .lg\:text-lg {
    font-size: 1.125rem !important;
  }
  .lg\:text-xl {
    font-size: 1.25rem !important;
  }
  .lg\:text-2xl {
    font-size: 1.5rem !important;
  }
  .lg\:text-3xl {
    font-size: 1.75rem !important;
  }
  .lg\:text-4xl {
    font-size: 2rem !important;
  }
  .lg\:text-5xl {
    font-size: 2.5rem !important;
  }
  .lg\:text-6xl {
    font-size: 3rem !important;
  }
  .lg\:text-7xl {
    font-size: 4rem !important;
  }
  .lg\:text-8xl {
    font-size: 6rem !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:text-xs {
    font-size: 0.75rem !important;
  }
  .xl\:text-sm {
    font-size: 0.875rem !important;
  }
  .xl\:text-base {
    font-size: 1rem !important;
  }
  .xl\:text-lg {
    font-size: 1.125rem !important;
  }
  .xl\:text-xl {
    font-size: 1.25rem !important;
  }
  .xl\:text-2xl {
    font-size: 1.5rem !important;
  }
  .xl\:text-3xl {
    font-size: 1.75rem !important;
  }
  .xl\:text-4xl {
    font-size: 2rem !important;
  }
  .xl\:text-5xl {
    font-size: 2.5rem !important;
  }
  .xl\:text-6xl {
    font-size: 3rem !important;
  }
  .xl\:text-7xl {
    font-size: 4rem !important;
  }
  .xl\:text-8xl {
    font-size: 6rem !important;
  }
}
.line-height-1 {
  line-height: 1 !important;
}

.line-height-2 {
  line-height: 1.25 !important;
}

.line-height-3 {
  line-height: 1.5 !important;
}

.line-height-4 {
  line-height: 2 !important;
}

.white-space-normal {
  white-space: normal !important;
}

.white-space-nowrap {
  white-space: nowrap !important;
}

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

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

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

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

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

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

.vertical-align-sub {
  vertical-align: sub !important;
}

.vertical-align-super {
  vertical-align: super !important;
}

@media screen and (min-width: 576px) {
  .sm\:vertical-align-baseline {
    vertical-align: baseline !important;
  }
  .sm\:vertical-align-top {
    vertical-align: top !important;
  }
  .sm\:vertical-align-middle {
    vertical-align: middle !important;
  }
  .sm\:vertical-align-bottom {
    vertical-align: bottom !important;
  }
  .sm\:vertical-align-text-top {
    vertical-align: text-top !important;
  }
  .sm\:vertical-align-text-bottom {
    vertical-align: text-bottom !important;
  }
  .sm\:vertical-align-sub {
    vertical-align: sub !important;
  }
  .sm\:vertical-align-super {
    vertical-align: super !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:vertical-align-baseline {
    vertical-align: baseline !important;
  }
  .md\:vertical-align-top {
    vertical-align: top !important;
  }
  .md\:vertical-align-middle {
    vertical-align: middle !important;
  }
  .md\:vertical-align-bottom {
    vertical-align: bottom !important;
  }
  .md\:vertical-align-text-top {
    vertical-align: text-top !important;
  }
  .md\:vertical-align-text-bottom {
    vertical-align: text-bottom !important;
  }
  .md\:vertical-align-sub {
    vertical-align: sub !important;
  }
  .md\:vertical-align-super {
    vertical-align: super !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:vertical-align-baseline {
    vertical-align: baseline !important;
  }
  .lg\:vertical-align-top {
    vertical-align: top !important;
  }
  .lg\:vertical-align-middle {
    vertical-align: middle !important;
  }
  .lg\:vertical-align-bottom {
    vertical-align: bottom !important;
  }
  .lg\:vertical-align-text-top {
    vertical-align: text-top !important;
  }
  .lg\:vertical-align-text-bottom {
    vertical-align: text-bottom !important;
  }
  .lg\:vertical-align-sub {
    vertical-align: sub !important;
  }
  .lg\:vertical-align-super {
    vertical-align: super !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:vertical-align-baseline {
    vertical-align: baseline !important;
  }
  .xl\:vertical-align-top {
    vertical-align: top !important;
  }
  .xl\:vertical-align-middle {
    vertical-align: middle !important;
  }
  .xl\:vertical-align-bottom {
    vertical-align: bottom !important;
  }
  .xl\:vertical-align-text-top {
    vertical-align: text-top !important;
  }
  .xl\:vertical-align-text-bottom {
    vertical-align: text-bottom !important;
  }
  .xl\:vertical-align-sub {
    vertical-align: sub !important;
  }
  .xl\:vertical-align-super {
    vertical-align: super !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

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

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

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

@media screen and (min-width: 576px) {
  .sm\:flex-row {
    flex-direction: row !important;
  }
  .sm\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .sm\:flex-column {
    flex-direction: column !important;
  }
  .sm\:flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .md\:flex-column {
    flex-direction: column !important;
  }
  .md\:flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:flex-row {
    flex-direction: row !important;
  }
  .lg\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .lg\:flex-column {
    flex-direction: column !important;
  }
  .lg\:flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:flex-row {
    flex-direction: row !important;
  }
  .xl\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .xl\:flex-column {
    flex-direction: column !important;
  }
  .xl\:flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}
.flex-wrap {
  flex-wrap: wrap !important;
}

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

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

@media screen and (min-width: 576px) {
  .sm\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .sm\:flex-nowrap {
    flex-wrap: nowrap !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .md\:flex-nowrap {
    flex-wrap: nowrap !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .lg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .lg\:flex-nowrap {
    flex-wrap: nowrap !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .xl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .xl\:flex-nowrap {
    flex-wrap: nowrap !important;
  }
}
.justify-content-start {
  justify-content: flex-start !important;
}

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

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

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

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

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

@media screen and (min-width: 576px) {
  .sm\:justify-content-start {
    justify-content: flex-start !important;
  }
  .sm\:justify-content-end {
    justify-content: flex-end !important;
  }
  .sm\:justify-content-center {
    justify-content: center !important;
  }
  .sm\:justify-content-between {
    justify-content: space-between !important;
  }
  .sm\:justify-content-around {
    justify-content: space-around !important;
  }
  .sm\:justify-content-evenly {
    justify-content: space-evenly !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:justify-content-start {
    justify-content: flex-start !important;
  }
  .md\:justify-content-end {
    justify-content: flex-end !important;
  }
  .md\:justify-content-center {
    justify-content: center !important;
  }
  .md\:justify-content-between {
    justify-content: space-between !important;
  }
  .md\:justify-content-around {
    justify-content: space-around !important;
  }
  .md\:justify-content-evenly {
    justify-content: space-evenly !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:justify-content-start {
    justify-content: flex-start !important;
  }
  .lg\:justify-content-end {
    justify-content: flex-end !important;
  }
  .lg\:justify-content-center {
    justify-content: center !important;
  }
  .lg\:justify-content-between {
    justify-content: space-between !important;
  }
  .lg\:justify-content-around {
    justify-content: space-around !important;
  }
  .lg\:justify-content-evenly {
    justify-content: space-evenly !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:justify-content-start {
    justify-content: flex-start !important;
  }
  .xl\:justify-content-end {
    justify-content: flex-end !important;
  }
  .xl\:justify-content-center {
    justify-content: center !important;
  }
  .xl\:justify-content-between {
    justify-content: space-between !important;
  }
  .xl\:justify-content-around {
    justify-content: space-around !important;
  }
  .xl\:justify-content-evenly {
    justify-content: space-evenly !important;
  }
}
.align-content-start {
  align-content: flex-start !important;
}

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

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

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

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

.align-content-evenly {
  align-content: space-evenly !important;
}

@media screen and (min-width: 576px) {
  .sm\:align-content-start {
    align-content: flex-start !important;
  }
  .sm\:align-content-end {
    align-content: flex-end !important;
  }
  .sm\:align-content-center {
    align-content: center !important;
  }
  .sm\:align-content-between {
    align-content: space-between !important;
  }
  .sm\:align-content-around {
    align-content: space-around !important;
  }
  .sm\:align-content-evenly {
    align-content: space-evenly !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:align-content-start {
    align-content: flex-start !important;
  }
  .md\:align-content-end {
    align-content: flex-end !important;
  }
  .md\:align-content-center {
    align-content: center !important;
  }
  .md\:align-content-between {
    align-content: space-between !important;
  }
  .md\:align-content-around {
    align-content: space-around !important;
  }
  .md\:align-content-evenly {
    align-content: space-evenly !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:align-content-start {
    align-content: flex-start !important;
  }
  .lg\:align-content-end {
    align-content: flex-end !important;
  }
  .lg\:align-content-center {
    align-content: center !important;
  }
  .lg\:align-content-between {
    align-content: space-between !important;
  }
  .lg\:align-content-around {
    align-content: space-around !important;
  }
  .lg\:align-content-evenly {
    align-content: space-evenly !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:align-content-start {
    align-content: flex-start !important;
  }
  .xl\:align-content-end {
    align-content: flex-end !important;
  }
  .xl\:align-content-center {
    align-content: center !important;
  }
  .xl\:align-content-between {
    align-content: space-between !important;
  }
  .xl\:align-content-around {
    align-content: space-around !important;
  }
  .xl\:align-content-evenly {
    align-content: space-evenly !important;
  }
}
.align-items-stretch {
  align-items: stretch !important;
}

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

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

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

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

@media screen and (min-width: 576px) {
  .sm\:align-items-stretch {
    align-items: stretch !important;
  }
  .sm\:align-items-start {
    align-items: flex-start !important;
  }
  .sm\:align-items-center {
    align-items: center !important;
  }
  .sm\:align-items-end {
    align-items: flex-end !important;
  }
  .sm\:align-items-baseline {
    align-items: baseline !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:align-items-stretch {
    align-items: stretch !important;
  }
  .md\:align-items-start {
    align-items: flex-start !important;
  }
  .md\:align-items-center {
    align-items: center !important;
  }
  .md\:align-items-end {
    align-items: flex-end !important;
  }
  .md\:align-items-baseline {
    align-items: baseline !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:align-items-stretch {
    align-items: stretch !important;
  }
  .lg\:align-items-start {
    align-items: flex-start !important;
  }
  .lg\:align-items-center {
    align-items: center !important;
  }
  .lg\:align-items-end {
    align-items: flex-end !important;
  }
  .lg\:align-items-baseline {
    align-items: baseline !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:align-items-stretch {
    align-items: stretch !important;
  }
  .xl\:align-items-start {
    align-items: flex-start !important;
  }
  .xl\:align-items-center {
    align-items: center !important;
  }
  .xl\:align-items-end {
    align-items: flex-end !important;
  }
  .xl\:align-items-baseline {
    align-items: baseline !important;
  }
}
.align-self-auto {
  align-self: auto !important;
}

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

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

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

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

.align-self-baseline {
  align-self: baseline !important;
}

@media screen and (min-width: 576px) {
  .sm\:align-self-auto {
    align-self: auto !important;
  }
  .sm\:align-self-start {
    align-self: flex-start !important;
  }
  .sm\:align-self-end {
    align-self: flex-end !important;
  }
  .sm\:align-self-center {
    align-self: center !important;
  }
  .sm\:align-self-stretch {
    align-self: stretch !important;
  }
  .sm\:align-self-baseline {
    align-self: baseline !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:align-self-auto {
    align-self: auto !important;
  }
  .md\:align-self-start {
    align-self: flex-start !important;
  }
  .md\:align-self-end {
    align-self: flex-end !important;
  }
  .md\:align-self-center {
    align-self: center !important;
  }
  .md\:align-self-stretch {
    align-self: stretch !important;
  }
  .md\:align-self-baseline {
    align-self: baseline !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:align-self-auto {
    align-self: auto !important;
  }
  .lg\:align-self-start {
    align-self: flex-start !important;
  }
  .lg\:align-self-end {
    align-self: flex-end !important;
  }
  .lg\:align-self-center {
    align-self: center !important;
  }
  .lg\:align-self-stretch {
    align-self: stretch !important;
  }
  .lg\:align-self-baseline {
    align-self: baseline !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:align-self-auto {
    align-self: auto !important;
  }
  .xl\:align-self-start {
    align-self: flex-start !important;
  }
  .xl\:align-self-end {
    align-self: flex-end !important;
  }
  .xl\:align-self-center {
    align-self: center !important;
  }
  .xl\:align-self-stretch {
    align-self: stretch !important;
  }
  .xl\:align-self-baseline {
    align-self: baseline !important;
  }
}
.flex-order-0 {
  order: 0 !important;
}

.flex-order-1 {
  order: 1 !important;
}

.flex-order-2 {
  order: 2 !important;
}

.flex-order-3 {
  order: 3 !important;
}

.flex-order-4 {
  order: 4 !important;
}

.flex-order-5 {
  order: 5 !important;
}

.flex-order-6 {
  order: 6 !important;
}

@media screen and (min-width: 576px) {
  .sm\:flex-order-0 {
    order: 0 !important;
  }
  .sm\:flex-order-1 {
    order: 1 !important;
  }
  .sm\:flex-order-2 {
    order: 2 !important;
  }
  .sm\:flex-order-3 {
    order: 3 !important;
  }
  .sm\:flex-order-4 {
    order: 4 !important;
  }
  .sm\:flex-order-5 {
    order: 5 !important;
  }
  .sm\:flex-order-6 {
    order: 6 !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:flex-order-0 {
    order: 0 !important;
  }
  .md\:flex-order-1 {
    order: 1 !important;
  }
  .md\:flex-order-2 {
    order: 2 !important;
  }
  .md\:flex-order-3 {
    order: 3 !important;
  }
  .md\:flex-order-4 {
    order: 4 !important;
  }
  .md\:flex-order-5 {
    order: 5 !important;
  }
  .md\:flex-order-6 {
    order: 6 !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:flex-order-0 {
    order: 0 !important;
  }
  .lg\:flex-order-1 {
    order: 1 !important;
  }
  .lg\:flex-order-2 {
    order: 2 !important;
  }
  .lg\:flex-order-3 {
    order: 3 !important;
  }
  .lg\:flex-order-4 {
    order: 4 !important;
  }
  .lg\:flex-order-5 {
    order: 5 !important;
  }
  .lg\:flex-order-6 {
    order: 6 !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:flex-order-0 {
    order: 0 !important;
  }
  .xl\:flex-order-1 {
    order: 1 !important;
  }
  .xl\:flex-order-2 {
    order: 2 !important;
  }
  .xl\:flex-order-3 {
    order: 3 !important;
  }
  .xl\:flex-order-4 {
    order: 4 !important;
  }
  .xl\:flex-order-5 {
    order: 5 !important;
  }
  .xl\:flex-order-6 {
    order: 6 !important;
  }
}
.flex-1 {
  flex: 1 1 0% !important;
}

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

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

.flex-none {
  flex: none !important;
}

@media screen and (min-width: 576px) {
  .sm\:flex-1 {
    flex: 1 1 0% !important;
  }
  .sm\:flex-auto {
    flex: 1 1 auto !important;
  }
  .sm\:flex-initial {
    flex: 0 1 auto !important;
  }
  .sm\:flex-none {
    flex: none !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:flex-1 {
    flex: 1 1 0% !important;
  }
  .md\:flex-auto {
    flex: 1 1 auto !important;
  }
  .md\:flex-initial {
    flex: 0 1 auto !important;
  }
  .md\:flex-none {
    flex: none !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:flex-1 {
    flex: 1 1 0% !important;
  }
  .lg\:flex-auto {
    flex: 1 1 auto !important;
  }
  .lg\:flex-initial {
    flex: 0 1 auto !important;
  }
  .lg\:flex-none {
    flex: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:flex-1 {
    flex: 1 1 0% !important;
  }
  .xl\:flex-auto {
    flex: 1 1 auto !important;
  }
  .xl\:flex-initial {
    flex: 0 1 auto !important;
  }
  .xl\:flex-none {
    flex: none !important;
  }
}
.flex-grow-0 {
  flex-grow: 0 !important;
}

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

@media screen and (min-width: 576px) {
  .sm\:flex-grow-0 {
    flex-grow: 0 !important;
  }
  .sm\:flex-grow-1 {
    flex-grow: 1 !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:flex-grow-0 {
    flex-grow: 0 !important;
  }
  .md\:flex-grow-1 {
    flex-grow: 1 !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:flex-grow-0 {
    flex-grow: 0 !important;
  }
  .lg\:flex-grow-1 {
    flex-grow: 1 !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:flex-grow-0 {
    flex-grow: 0 !important;
  }
  .xl\:flex-grow-1 {
    flex-grow: 1 !important;
  }
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}

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

@media screen and (min-width: 576px) {
  .sm\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }
  .sm\:flex-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }
  .md\:flex-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }
  .lg\:flex-shrink-1 {
    flex-shrink: 1 !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:flex-shrink-0 {
    flex-shrink: 0 !important;
  }
  .xl\:flex-shrink-1 {
    flex-shrink: 1 !important;
  }
}
.gap-0 {
  gap: 0rem !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 2rem !important;
}

.gap-6 {
  gap: 3rem !important;
}

.gap-7 {
  gap: 4rem !important;
}

.gap-8 {
  gap: 5rem !important;
}

.row-gap-0 {
  row-gap: 0rem !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 2rem !important;
}

.row-gap-6 {
  row-gap: 3rem !important;
}

.row-gap-7 {
  row-gap: 4rem !important;
}

.row-gap-8 {
  row-gap: 5rem !important;
}

.column-gap-0 {
  column-gap: 0rem !important;
}

.column-gap-1 {
  column-gap: 0.25rem !important;
}

.column-gap-2 {
  column-gap: 0.5rem !important;
}

.column-gap-3 {
  column-gap: 1rem !important;
}

.column-gap-4 {
  column-gap: 1.5rem !important;
}

.column-gap-5 {
  column-gap: 2rem !important;
}

.column-gap-6 {
  column-gap: 3rem !important;
}

.column-gap-7 {
  column-gap: 4rem !important;
}

.column-gap-8 {
  column-gap: 5rem !important;
}

@media screen and (min-width: 576px) {
  .sm\:gap-0 {
    gap: 0rem !important;
  }
  .sm\:gap-1 {
    gap: 0.25rem !important;
  }
  .sm\:gap-2 {
    gap: 0.5rem !important;
  }
  .sm\:gap-3 {
    gap: 1rem !important;
  }
  .sm\:gap-4 {
    gap: 1.5rem !important;
  }
  .sm\:gap-5 {
    gap: 2rem !important;
  }
  .sm\:gap-6 {
    gap: 3rem !important;
  }
  .sm\:gap-7 {
    gap: 4rem !important;
  }
  .sm\:gap-8 {
    gap: 5rem !important;
  }
  .sm\:row-gap-0 {
    row-gap: 0rem !important;
  }
  .sm\:row-gap-1 {
    row-gap: 0.25rem !important;
  }
  .sm\:row-gap-2 {
    row-gap: 0.5rem !important;
  }
  .sm\:row-gap-3 {
    row-gap: 1rem !important;
  }
  .sm\:row-gap-4 {
    row-gap: 1.5rem !important;
  }
  .sm\:row-gap-5 {
    row-gap: 2rem !important;
  }
  .sm\:row-gap-6 {
    row-gap: 3rem !important;
  }
  .sm\:row-gap-7 {
    row-gap: 4rem !important;
  }
  .sm\:row-gap-8 {
    row-gap: 5rem !important;
  }
  .sm\:column-gap-0 {
    column-gap: 0rem !important;
  }
  .sm\:column-gap-1 {
    column-gap: 0.25rem !important;
  }
  .sm\:column-gap-2 {
    column-gap: 0.5rem !important;
  }
  .sm\:column-gap-3 {
    column-gap: 1rem !important;
  }
  .sm\:column-gap-4 {
    column-gap: 1.5rem !important;
  }
  .sm\:column-gap-5 {
    column-gap: 2rem !important;
  }
  .sm\:column-gap-6 {
    column-gap: 3rem !important;
  }
  .sm\:column-gap-7 {
    column-gap: 4rem !important;
  }
  .sm\:column-gap-8 {
    column-gap: 5rem !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:gap-0 {
    gap: 0rem !important;
  }
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
  .md\:gap-2 {
    gap: 0.5rem !important;
  }
  .md\:gap-3 {
    gap: 1rem !important;
  }
  .md\:gap-4 {
    gap: 1.5rem !important;
  }
  .md\:gap-5 {
    gap: 2rem !important;
  }
  .md\:gap-6 {
    gap: 3rem !important;
  }
  .md\:gap-7 {
    gap: 4rem !important;
  }
  .md\:gap-8 {
    gap: 5rem !important;
  }
  .md\:row-gap-0 {
    row-gap: 0rem !important;
  }
  .md\:row-gap-1 {
    row-gap: 0.25rem !important;
  }
  .md\:row-gap-2 {
    row-gap: 0.5rem !important;
  }
  .md\:row-gap-3 {
    row-gap: 1rem !important;
  }
  .md\:row-gap-4 {
    row-gap: 1.5rem !important;
  }
  .md\:row-gap-5 {
    row-gap: 2rem !important;
  }
  .md\:row-gap-6 {
    row-gap: 3rem !important;
  }
  .md\:row-gap-7 {
    row-gap: 4rem !important;
  }
  .md\:row-gap-8 {
    row-gap: 5rem !important;
  }
  .md\:column-gap-0 {
    column-gap: 0rem !important;
  }
  .md\:column-gap-1 {
    column-gap: 0.25rem !important;
  }
  .md\:column-gap-2 {
    column-gap: 0.5rem !important;
  }
  .md\:column-gap-3 {
    column-gap: 1rem !important;
  }
  .md\:column-gap-4 {
    column-gap: 1.5rem !important;
  }
  .md\:column-gap-5 {
    column-gap: 2rem !important;
  }
  .md\:column-gap-6 {
    column-gap: 3rem !important;
  }
  .md\:column-gap-7 {
    column-gap: 4rem !important;
  }
  .md\:column-gap-8 {
    column-gap: 5rem !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:gap-0 {
    gap: 0rem !important;
  }
  .lg\:gap-1 {
    gap: 0.25rem !important;
  }
  .lg\:gap-2 {
    gap: 0.5rem !important;
  }
  .lg\:gap-3 {
    gap: 1rem !important;
  }
  .lg\:gap-4 {
    gap: 1.5rem !important;
  }
  .lg\:gap-5 {
    gap: 2rem !important;
  }
  .lg\:gap-6 {
    gap: 3rem !important;
  }
  .lg\:gap-7 {
    gap: 4rem !important;
  }
  .lg\:gap-8 {
    gap: 5rem !important;
  }
  .lg\:row-gap-0 {
    row-gap: 0rem !important;
  }
  .lg\:row-gap-1 {
    row-gap: 0.25rem !important;
  }
  .lg\:row-gap-2 {
    row-gap: 0.5rem !important;
  }
  .lg\:row-gap-3 {
    row-gap: 1rem !important;
  }
  .lg\:row-gap-4 {
    row-gap: 1.5rem !important;
  }
  .lg\:row-gap-5 {
    row-gap: 2rem !important;
  }
  .lg\:row-gap-6 {
    row-gap: 3rem !important;
  }
  .lg\:row-gap-7 {
    row-gap: 4rem !important;
  }
  .lg\:row-gap-8 {
    row-gap: 5rem !important;
  }
  .lg\:column-gap-0 {
    column-gap: 0rem !important;
  }
  .lg\:column-gap-1 {
    column-gap: 0.25rem !important;
  }
  .lg\:column-gap-2 {
    column-gap: 0.5rem !important;
  }
  .lg\:column-gap-3 {
    column-gap: 1rem !important;
  }
  .lg\:column-gap-4 {
    column-gap: 1.5rem !important;
  }
  .lg\:column-gap-5 {
    column-gap: 2rem !important;
  }
  .lg\:column-gap-6 {
    column-gap: 3rem !important;
  }
  .lg\:column-gap-7 {
    column-gap: 4rem !important;
  }
  .lg\:column-gap-8 {
    column-gap: 5rem !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:gap-0 {
    gap: 0rem !important;
  }
  .xl\:gap-1 {
    gap: 0.25rem !important;
  }
  .xl\:gap-2 {
    gap: 0.5rem !important;
  }
  .xl\:gap-3 {
    gap: 1rem !important;
  }
  .xl\:gap-4 {
    gap: 1.5rem !important;
  }
  .xl\:gap-5 {
    gap: 2rem !important;
  }
  .xl\:gap-6 {
    gap: 3rem !important;
  }
  .xl\:gap-7 {
    gap: 4rem !important;
  }
  .xl\:gap-8 {
    gap: 5rem !important;
  }
  .xl\:row-gap-0 {
    row-gap: 0rem !important;
  }
  .xl\:row-gap-1 {
    row-gap: 0.25rem !important;
  }
  .xl\:row-gap-2 {
    row-gap: 0.5rem !important;
  }
  .xl\:row-gap-3 {
    row-gap: 1rem !important;
  }
  .xl\:row-gap-4 {
    row-gap: 1.5rem !important;
  }
  .xl\:row-gap-5 {
    row-gap: 2rem !important;
  }
  .xl\:row-gap-6 {
    row-gap: 3rem !important;
  }
  .xl\:row-gap-7 {
    row-gap: 4rem !important;
  }
  .xl\:row-gap-8 {
    row-gap: 5rem !important;
  }
  .xl\:column-gap-0 {
    column-gap: 0rem !important;
  }
  .xl\:column-gap-1 {
    column-gap: 0.25rem !important;
  }
  .xl\:column-gap-2 {
    column-gap: 0.5rem !important;
  }
  .xl\:column-gap-3 {
    column-gap: 1rem !important;
  }
  .xl\:column-gap-4 {
    column-gap: 1.5rem !important;
  }
  .xl\:column-gap-5 {
    column-gap: 2rem !important;
  }
  .xl\:column-gap-6 {
    column-gap: 3rem !important;
  }
  .xl\:column-gap-7 {
    column-gap: 4rem !important;
  }
  .xl\:column-gap-8 {
    column-gap: 5rem !important;
  }
}
.p-0 {
  padding: 0rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

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

.p-6 {
  padding: 3rem !important;
}

.p-7 {
  padding: 4rem !important;
}

.p-8 {
  padding: 5rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

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

.pt-6 {
  padding-top: 3rem !important;
}

.pt-7 {
  padding-top: 4rem !important;
}

.pt-8 {
  padding-top: 5rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

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

.pr-6 {
  padding-right: 3rem !important;
}

.pr-7 {
  padding-right: 4rem !important;
}

.pr-8 {
  padding-right: 5rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

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

.pl-6 {
  padding-left: 3rem !important;
}

.pl-7 {
  padding-left: 4rem !important;
}

.pl-8 {
  padding-left: 5rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

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

.pb-6 {
  padding-bottom: 3rem !important;
}

.pb-7 {
  padding-bottom: 4rem !important;
}

.pb-8 {
  padding-bottom: 5rem !important;
}

.px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

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

.px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.px-7 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.px-8 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

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

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

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

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

.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-7 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-8 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

@media screen and (min-width: 576px) {
  .sm\:p-0 {
    padding: 0rem !important;
  }
  .sm\:p-1 {
    padding: 0.25rem !important;
  }
  .sm\:p-2 {
    padding: 0.5rem !important;
  }
  .sm\:p-3 {
    padding: 1rem !important;
  }
  .sm\:p-4 {
    padding: 1.5rem !important;
  }
  .sm\:p-5 {
    padding: 2rem !important;
  }
  .sm\:p-6 {
    padding: 3rem !important;
  }
  .sm\:p-7 {
    padding: 4rem !important;
  }
  .sm\:p-8 {
    padding: 5rem !important;
  }
  .sm\:pt-0 {
    padding-top: 0rem !important;
  }
  .sm\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .sm\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .sm\:pt-3 {
    padding-top: 1rem !important;
  }
  .sm\:pt-4 {
    padding-top: 1.5rem !important;
  }
  .sm\:pt-5 {
    padding-top: 2rem !important;
  }
  .sm\:pt-6 {
    padding-top: 3rem !important;
  }
  .sm\:pt-7 {
    padding-top: 4rem !important;
  }
  .sm\:pt-8 {
    padding-top: 5rem !important;
  }
  .sm\:pr-0 {
    padding-right: 0rem !important;
  }
  .sm\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .sm\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .sm\:pr-3 {
    padding-right: 1rem !important;
  }
  .sm\:pr-4 {
    padding-right: 1.5rem !important;
  }
  .sm\:pr-5 {
    padding-right: 2rem !important;
  }
  .sm\:pr-6 {
    padding-right: 3rem !important;
  }
  .sm\:pr-7 {
    padding-right: 4rem !important;
  }
  .sm\:pr-8 {
    padding-right: 5rem !important;
  }
  .sm\:pl-0 {
    padding-left: 0rem !important;
  }
  .sm\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .sm\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .sm\:pl-3 {
    padding-left: 1rem !important;
  }
  .sm\:pl-4 {
    padding-left: 1.5rem !important;
  }
  .sm\:pl-5 {
    padding-left: 2rem !important;
  }
  .sm\:pl-6 {
    padding-left: 3rem !important;
  }
  .sm\:pl-7 {
    padding-left: 4rem !important;
  }
  .sm\:pl-8 {
    padding-left: 5rem !important;
  }
  .sm\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .sm\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .sm\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .sm\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .sm\:pb-4 {
    padding-bottom: 1.5rem !important;
  }
  .sm\:pb-5 {
    padding-bottom: 2rem !important;
  }
  .sm\:pb-6 {
    padding-bottom: 3rem !important;
  }
  .sm\:pb-7 {
    padding-bottom: 4rem !important;
  }
  .sm\:pb-8 {
    padding-bottom: 5rem !important;
  }
  .sm\:px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .sm\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .sm\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .sm\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .sm\:px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .sm\:px-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .sm\:px-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .sm\:px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .sm\:px-8 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .sm\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .sm\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .sm\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .sm\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .sm\:py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .sm\:py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .sm\:py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .sm\:py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .sm\:py-8 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:p-0 {
    padding: 0rem !important;
  }
  .md\:p-1 {
    padding: 0.25rem !important;
  }
  .md\:p-2 {
    padding: 0.5rem !important;
  }
  .md\:p-3 {
    padding: 1rem !important;
  }
  .md\:p-4 {
    padding: 1.5rem !important;
  }
  .md\:p-5 {
    padding: 2rem !important;
  }
  .md\:p-6 {
    padding: 3rem !important;
  }
  .md\:p-7 {
    padding: 4rem !important;
  }
  .md\:p-8 {
    padding: 5rem !important;
  }
  .md\:pt-0 {
    padding-top: 0rem !important;
  }
  .md\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .md\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .md\:pt-3 {
    padding-top: 1rem !important;
  }
  .md\:pt-4 {
    padding-top: 1.5rem !important;
  }
  .md\:pt-5 {
    padding-top: 2rem !important;
  }
  .md\:pt-6 {
    padding-top: 3rem !important;
  }
  .md\:pt-7 {
    padding-top: 4rem !important;
  }
  .md\:pt-8 {
    padding-top: 5rem !important;
  }
  .md\:pr-0 {
    padding-right: 0rem !important;
  }
  .md\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .md\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .md\:pr-3 {
    padding-right: 1rem !important;
  }
  .md\:pr-4 {
    padding-right: 1.5rem !important;
  }
  .md\:pr-5 {
    padding-right: 2rem !important;
  }
  .md\:pr-6 {
    padding-right: 3rem !important;
  }
  .md\:pr-7 {
    padding-right: 4rem !important;
  }
  .md\:pr-8 {
    padding-right: 5rem !important;
  }
  .md\:pl-0 {
    padding-left: 0rem !important;
  }
  .md\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .md\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .md\:pl-3 {
    padding-left: 1rem !important;
  }
  .md\:pl-4 {
    padding-left: 1.5rem !important;
  }
  .md\:pl-5 {
    padding-left: 2rem !important;
  }
  .md\:pl-6 {
    padding-left: 3rem !important;
  }
  .md\:pl-7 {
    padding-left: 4rem !important;
  }
  .md\:pl-8 {
    padding-left: 5rem !important;
  }
  .md\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .md\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .md\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .md\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .md\:pb-4 {
    padding-bottom: 1.5rem !important;
  }
  .md\:pb-5 {
    padding-bottom: 2rem !important;
  }
  .md\:pb-6 {
    padding-bottom: 3rem !important;
  }
  .md\:pb-7 {
    padding-bottom: 4rem !important;
  }
  .md\:pb-8 {
    padding-bottom: 5rem !important;
  }
  .md\:px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .md\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .md\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .md\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .md\:px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .md\:px-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .md\:px-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .md\:px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .md\:px-8 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .md\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .md\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .md\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .md\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .md\:py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .md\:py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .md\:py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .md\:py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .md\:py-8 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:p-0 {
    padding: 0rem !important;
  }
  .lg\:p-1 {
    padding: 0.25rem !important;
  }
  .lg\:p-2 {
    padding: 0.5rem !important;
  }
  .lg\:p-3 {
    padding: 1rem !important;
  }
  .lg\:p-4 {
    padding: 1.5rem !important;
  }
  .lg\:p-5 {
    padding: 2rem !important;
  }
  .lg\:p-6 {
    padding: 3rem !important;
  }
  .lg\:p-7 {
    padding: 4rem !important;
  }
  .lg\:p-8 {
    padding: 5rem !important;
  }
  .lg\:pt-0 {
    padding-top: 0rem !important;
  }
  .lg\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .lg\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .lg\:pt-3 {
    padding-top: 1rem !important;
  }
  .lg\:pt-4 {
    padding-top: 1.5rem !important;
  }
  .lg\:pt-5 {
    padding-top: 2rem !important;
  }
  .lg\:pt-6 {
    padding-top: 3rem !important;
  }
  .lg\:pt-7 {
    padding-top: 4rem !important;
  }
  .lg\:pt-8 {
    padding-top: 5rem !important;
  }
  .lg\:pr-0 {
    padding-right: 0rem !important;
  }
  .lg\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .lg\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .lg\:pr-3 {
    padding-right: 1rem !important;
  }
  .lg\:pr-4 {
    padding-right: 1.5rem !important;
  }
  .lg\:pr-5 {
    padding-right: 2rem !important;
  }
  .lg\:pr-6 {
    padding-right: 3rem !important;
  }
  .lg\:pr-7 {
    padding-right: 4rem !important;
  }
  .lg\:pr-8 {
    padding-right: 5rem !important;
  }
  .lg\:pl-0 {
    padding-left: 0rem !important;
  }
  .lg\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .lg\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .lg\:pl-3 {
    padding-left: 1rem !important;
  }
  .lg\:pl-4 {
    padding-left: 1.5rem !important;
  }
  .lg\:pl-5 {
    padding-left: 2rem !important;
  }
  .lg\:pl-6 {
    padding-left: 3rem !important;
  }
  .lg\:pl-7 {
    padding-left: 4rem !important;
  }
  .lg\:pl-8 {
    padding-left: 5rem !important;
  }
  .lg\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .lg\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .lg\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .lg\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .lg\:pb-4 {
    padding-bottom: 1.5rem !important;
  }
  .lg\:pb-5 {
    padding-bottom: 2rem !important;
  }
  .lg\:pb-6 {
    padding-bottom: 3rem !important;
  }
  .lg\:pb-7 {
    padding-bottom: 4rem !important;
  }
  .lg\:pb-8 {
    padding-bottom: 5rem !important;
  }
  .lg\:px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .lg\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .lg\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .lg\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .lg\:px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .lg\:px-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .lg\:px-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .lg\:px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .lg\:px-8 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .lg\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .lg\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .lg\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .lg\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .lg\:py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .lg\:py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .lg\:py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .lg\:py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .lg\:py-8 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:p-0 {
    padding: 0rem !important;
  }
  .xl\:p-1 {
    padding: 0.25rem !important;
  }
  .xl\:p-2 {
    padding: 0.5rem !important;
  }
  .xl\:p-3 {
    padding: 1rem !important;
  }
  .xl\:p-4 {
    padding: 1.5rem !important;
  }
  .xl\:p-5 {
    padding: 2rem !important;
  }
  .xl\:p-6 {
    padding: 3rem !important;
  }
  .xl\:p-7 {
    padding: 4rem !important;
  }
  .xl\:p-8 {
    padding: 5rem !important;
  }
  .xl\:pt-0 {
    padding-top: 0rem !important;
  }
  .xl\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .xl\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .xl\:pt-3 {
    padding-top: 1rem !important;
  }
  .xl\:pt-4 {
    padding-top: 1.5rem !important;
  }
  .xl\:pt-5 {
    padding-top: 2rem !important;
  }
  .xl\:pt-6 {
    padding-top: 3rem !important;
  }
  .xl\:pt-7 {
    padding-top: 4rem !important;
  }
  .xl\:pt-8 {
    padding-top: 5rem !important;
  }
  .xl\:pr-0 {
    padding-right: 0rem !important;
  }
  .xl\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .xl\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .xl\:pr-3 {
    padding-right: 1rem !important;
  }
  .xl\:pr-4 {
    padding-right: 1.5rem !important;
  }
  .xl\:pr-5 {
    padding-right: 2rem !important;
  }
  .xl\:pr-6 {
    padding-right: 3rem !important;
  }
  .xl\:pr-7 {
    padding-right: 4rem !important;
  }
  .xl\:pr-8 {
    padding-right: 5rem !important;
  }
  .xl\:pl-0 {
    padding-left: 0rem !important;
  }
  .xl\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .xl\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .xl\:pl-3 {
    padding-left: 1rem !important;
  }
  .xl\:pl-4 {
    padding-left: 1.5rem !important;
  }
  .xl\:pl-5 {
    padding-left: 2rem !important;
  }
  .xl\:pl-6 {
    padding-left: 3rem !important;
  }
  .xl\:pl-7 {
    padding-left: 4rem !important;
  }
  .xl\:pl-8 {
    padding-left: 5rem !important;
  }
  .xl\:pb-0 {
    padding-bottom: 0rem !important;
  }
  .xl\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xl\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xl\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .xl\:pb-4 {
    padding-bottom: 1.5rem !important;
  }
  .xl\:pb-5 {
    padding-bottom: 2rem !important;
  }
  .xl\:pb-6 {
    padding-bottom: 3rem !important;
  }
  .xl\:pb-7 {
    padding-bottom: 4rem !important;
  }
  .xl\:pb-8 {
    padding-bottom: 5rem !important;
  }
  .xl\:px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .xl\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .xl\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xl\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xl\:px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xl\:px-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xl\:px-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xl\:px-7 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xl\:px-8 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xl\:py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .xl\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xl\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xl\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xl\:py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xl\:py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xl\:py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xl\:py-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xl\:py-8 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
.m-0 {
  margin: 0rem !important;
}

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

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

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

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

.m-6 {
  margin: 3rem !important;
}

.m-7 {
  margin: 4rem !important;
}

.m-8 {
  margin: 5rem !important;
}

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

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

.-m-3 {
  margin: -1rem !important;
}

.-m-4 {
  margin: -1.5rem !important;
}

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

.-m-6 {
  margin: -3rem !important;
}

.-m-7 {
  margin: -4rem !important;
}

.-m-8 {
  margin: -5rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

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

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

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

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

.mt-6 {
  margin-top: 3rem !important;
}

.mt-7 {
  margin-top: 4rem !important;
}

.mt-8 {
  margin-top: 5rem !important;
}

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

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

.-mt-3 {
  margin-top: -1rem !important;
}

.-mt-4 {
  margin-top: -1.5rem !important;
}

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

.-mt-6 {
  margin-top: -3rem !important;
}

.-mt-7 {
  margin-top: -4rem !important;
}

.-mt-8 {
  margin-top: -5rem !important;
}

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

.mr-0 {
  margin-right: 0rem !important;
}

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

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

.mr-3 {
  margin-right: 1rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

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

.mr-6 {
  margin-right: 3rem !important;
}

.mr-7 {
  margin-right: 4rem !important;
}

.mr-8 {
  margin-right: 5rem !important;
}

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

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

.-mr-3 {
  margin-right: -1rem !important;
}

.-mr-4 {
  margin-right: -1.5rem !important;
}

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

.-mr-6 {
  margin-right: -3rem !important;
}

.-mr-7 {
  margin-right: -4rem !important;
}

.-mr-8 {
  margin-right: -5rem !important;
}

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

.ml-0 {
  margin-left: 0rem !important;
}

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

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

.ml-3 {
  margin-left: 1rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

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

.ml-6 {
  margin-left: 3rem !important;
}

.ml-7 {
  margin-left: 4rem !important;
}

.ml-8 {
  margin-left: 5rem !important;
}

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

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

.-ml-3 {
  margin-left: -1rem !important;
}

.-ml-4 {
  margin-left: -1.5rem !important;
}

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

.-ml-6 {
  margin-left: -3rem !important;
}

.-ml-7 {
  margin-left: -4rem !important;
}

.-ml-8 {
  margin-left: -5rem !important;
}

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

.mb-0 {
  margin-bottom: 0rem !important;
}

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

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

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

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

.mb-6 {
  margin-bottom: 3rem !important;
}

.mb-7 {
  margin-bottom: 4rem !important;
}

.mb-8 {
  margin-bottom: 5rem !important;
}

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

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

.-mb-3 {
  margin-bottom: -1rem !important;
}

.-mb-4 {
  margin-bottom: -1.5rem !important;
}

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

.-mb-6 {
  margin-bottom: -3rem !important;
}

.-mb-7 {
  margin-bottom: -4rem !important;
}

.-mb-8 {
  margin-bottom: -5rem !important;
}

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

.mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

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

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

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

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

.mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.mx-7 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.mx-8 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

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

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

.-mx-3 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.-mx-4 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

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

.-mx-6 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.-mx-7 {
  margin-left: -4rem !important;
  margin-right: -4rem !important;
}

.-mx-8 {
  margin-left: -5rem !important;
  margin-right: -5rem !important;
}

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

.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

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

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

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

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

.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-7 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-8 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

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

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

.-my-3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.-my-4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

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

.-my-6 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.-my-7 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.-my-8 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

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

@media screen and (min-width: 576px) {
  .sm\:m-0 {
    margin: 0rem !important;
  }
  .sm\:m-1 {
    margin: 0.25rem !important;
  }
  .sm\:m-2 {
    margin: 0.5rem !important;
  }
  .sm\:m-3 {
    margin: 1rem !important;
  }
  .sm\:m-4 {
    margin: 1.5rem !important;
  }
  .sm\:m-5 {
    margin: 2rem !important;
  }
  .sm\:m-6 {
    margin: 3rem !important;
  }
  .sm\:m-7 {
    margin: 4rem !important;
  }
  .sm\:m-8 {
    margin: 5rem !important;
  }
  .sm\:-m-1 {
    margin: -0.25rem !important;
  }
  .sm\:-m-2 {
    margin: -0.5rem !important;
  }
  .sm\:-m-3 {
    margin: -1rem !important;
  }
  .sm\:-m-4 {
    margin: -1.5rem !important;
  }
  .sm\:-m-5 {
    margin: -2rem !important;
  }
  .sm\:-m-6 {
    margin: -3rem !important;
  }
  .sm\:-m-7 {
    margin: -4rem !important;
  }
  .sm\:-m-8 {
    margin: -5rem !important;
  }
  .sm\:m-auto {
    margin: auto !important;
  }
  .sm\:mt-0 {
    margin-top: 0rem !important;
  }
  .sm\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .sm\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .sm\:mt-3 {
    margin-top: 1rem !important;
  }
  .sm\:mt-4 {
    margin-top: 1.5rem !important;
  }
  .sm\:mt-5 {
    margin-top: 2rem !important;
  }
  .sm\:mt-6 {
    margin-top: 3rem !important;
  }
  .sm\:mt-7 {
    margin-top: 4rem !important;
  }
  .sm\:mt-8 {
    margin-top: 5rem !important;
  }
  .sm\:-mt-1 {
    margin-top: -0.25rem !important;
  }
  .sm\:-mt-2 {
    margin-top: -0.5rem !important;
  }
  .sm\:-mt-3 {
    margin-top: -1rem !important;
  }
  .sm\:-mt-4 {
    margin-top: -1.5rem !important;
  }
  .sm\:-mt-5 {
    margin-top: -2rem !important;
  }
  .sm\:-mt-6 {
    margin-top: -3rem !important;
  }
  .sm\:-mt-7 {
    margin-top: -4rem !important;
  }
  .sm\:-mt-8 {
    margin-top: -5rem !important;
  }
  .sm\:mt-auto {
    margin-top: auto !important;
  }
  .sm\:mr-0 {
    margin-right: 0rem !important;
  }
  .sm\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .sm\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .sm\:mr-3 {
    margin-right: 1rem !important;
  }
  .sm\:mr-4 {
    margin-right: 1.5rem !important;
  }
  .sm\:mr-5 {
    margin-right: 2rem !important;
  }
  .sm\:mr-6 {
    margin-right: 3rem !important;
  }
  .sm\:mr-7 {
    margin-right: 4rem !important;
  }
  .sm\:mr-8 {
    margin-right: 5rem !important;
  }
  .sm\:-mr-1 {
    margin-right: -0.25rem !important;
  }
  .sm\:-mr-2 {
    margin-right: -0.5rem !important;
  }
  .sm\:-mr-3 {
    margin-right: -1rem !important;
  }
  .sm\:-mr-4 {
    margin-right: -1.5rem !important;
  }
  .sm\:-mr-5 {
    margin-right: -2rem !important;
  }
  .sm\:-mr-6 {
    margin-right: -3rem !important;
  }
  .sm\:-mr-7 {
    margin-right: -4rem !important;
  }
  .sm\:-mr-8 {
    margin-right: -5rem !important;
  }
  .sm\:mr-auto {
    margin-right: auto !important;
  }
  .sm\:ml-0 {
    margin-left: 0rem !important;
  }
  .sm\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .sm\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .sm\:ml-3 {
    margin-left: 1rem !important;
  }
  .sm\:ml-4 {
    margin-left: 1.5rem !important;
  }
  .sm\:ml-5 {
    margin-left: 2rem !important;
  }
  .sm\:ml-6 {
    margin-left: 3rem !important;
  }
  .sm\:ml-7 {
    margin-left: 4rem !important;
  }
  .sm\:ml-8 {
    margin-left: 5rem !important;
  }
  .sm\:-ml-1 {
    margin-left: -0.25rem !important;
  }
  .sm\:-ml-2 {
    margin-left: -0.5rem !important;
  }
  .sm\:-ml-3 {
    margin-left: -1rem !important;
  }
  .sm\:-ml-4 {
    margin-left: -1.5rem !important;
  }
  .sm\:-ml-5 {
    margin-left: -2rem !important;
  }
  .sm\:-ml-6 {
    margin-left: -3rem !important;
  }
  .sm\:-ml-7 {
    margin-left: -4rem !important;
  }
  .sm\:-ml-8 {
    margin-left: -5rem !important;
  }
  .sm\:ml-auto {
    margin-left: auto !important;
  }
  .sm\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .sm\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .sm\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .sm\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .sm\:mb-4 {
    margin-bottom: 1.5rem !important;
  }
  .sm\:mb-5 {
    margin-bottom: 2rem !important;
  }
  .sm\:mb-6 {
    margin-bottom: 3rem !important;
  }
  .sm\:mb-7 {
    margin-bottom: 4rem !important;
  }
  .sm\:mb-8 {
    margin-bottom: 5rem !important;
  }
  .sm\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }
  .sm\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }
  .sm\:-mb-3 {
    margin-bottom: -1rem !important;
  }
  .sm\:-mb-4 {
    margin-bottom: -1.5rem !important;
  }
  .sm\:-mb-5 {
    margin-bottom: -2rem !important;
  }
  .sm\:-mb-6 {
    margin-bottom: -3rem !important;
  }
  .sm\:-mb-7 {
    margin-bottom: -4rem !important;
  }
  .sm\:-mb-8 {
    margin-bottom: -5rem !important;
  }
  .sm\:mb-auto {
    margin-bottom: auto !important;
  }
  .sm\:mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .sm\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .sm\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .sm\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .sm\:mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .sm\:mx-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .sm\:mx-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .sm\:mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .sm\:mx-8 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .sm\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .sm\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .sm\:-mx-3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .sm\:-mx-4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .sm\:-mx-5 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .sm\:-mx-6 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .sm\:-mx-7 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .sm\:-mx-8 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .sm\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .sm\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .sm\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .sm\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .sm\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .sm\:my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .sm\:my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .sm\:my-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .sm\:my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .sm\:my-8 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .sm\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .sm\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .sm\:-my-3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .sm\:-my-4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .sm\:-my-5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .sm\:-my-6 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .sm\:-my-7 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .sm\:-my-8 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .sm\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:m-0 {
    margin: 0rem !important;
  }
  .md\:m-1 {
    margin: 0.25rem !important;
  }
  .md\:m-2 {
    margin: 0.5rem !important;
  }
  .md\:m-3 {
    margin: 1rem !important;
  }
  .md\:m-4 {
    margin: 1.5rem !important;
  }
  .md\:m-5 {
    margin: 2rem !important;
  }
  .md\:m-6 {
    margin: 3rem !important;
  }
  .md\:m-7 {
    margin: 4rem !important;
  }
  .md\:m-8 {
    margin: 5rem !important;
  }
  .md\:-m-1 {
    margin: -0.25rem !important;
  }
  .md\:-m-2 {
    margin: -0.5rem !important;
  }
  .md\:-m-3 {
    margin: -1rem !important;
  }
  .md\:-m-4 {
    margin: -1.5rem !important;
  }
  .md\:-m-5 {
    margin: -2rem !important;
  }
  .md\:-m-6 {
    margin: -3rem !important;
  }
  .md\:-m-7 {
    margin: -4rem !important;
  }
  .md\:-m-8 {
    margin: -5rem !important;
  }
  .md\:m-auto {
    margin: auto !important;
  }
  .md\:mt-0 {
    margin-top: 0rem !important;
  }
  .md\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .md\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .md\:mt-3 {
    margin-top: 1rem !important;
  }
  .md\:mt-4 {
    margin-top: 1.5rem !important;
  }
  .md\:mt-5 {
    margin-top: 2rem !important;
  }
  .md\:mt-6 {
    margin-top: 3rem !important;
  }
  .md\:mt-7 {
    margin-top: 4rem !important;
  }
  .md\:mt-8 {
    margin-top: 5rem !important;
  }
  .md\:-mt-1 {
    margin-top: -0.25rem !important;
  }
  .md\:-mt-2 {
    margin-top: -0.5rem !important;
  }
  .md\:-mt-3 {
    margin-top: -1rem !important;
  }
  .md\:-mt-4 {
    margin-top: -1.5rem !important;
  }
  .md\:-mt-5 {
    margin-top: -2rem !important;
  }
  .md\:-mt-6 {
    margin-top: -3rem !important;
  }
  .md\:-mt-7 {
    margin-top: -4rem !important;
  }
  .md\:-mt-8 {
    margin-top: -5rem !important;
  }
  .md\:mt-auto {
    margin-top: auto !important;
  }
  .md\:mr-0 {
    margin-right: 0rem !important;
  }
  .md\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .md\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .md\:mr-3 {
    margin-right: 1rem !important;
  }
  .md\:mr-4 {
    margin-right: 1.5rem !important;
  }
  .md\:mr-5 {
    margin-right: 2rem !important;
  }
  .md\:mr-6 {
    margin-right: 3rem !important;
  }
  .md\:mr-7 {
    margin-right: 4rem !important;
  }
  .md\:mr-8 {
    margin-right: 5rem !important;
  }
  .md\:-mr-1 {
    margin-right: -0.25rem !important;
  }
  .md\:-mr-2 {
    margin-right: -0.5rem !important;
  }
  .md\:-mr-3 {
    margin-right: -1rem !important;
  }
  .md\:-mr-4 {
    margin-right: -1.5rem !important;
  }
  .md\:-mr-5 {
    margin-right: -2rem !important;
  }
  .md\:-mr-6 {
    margin-right: -3rem !important;
  }
  .md\:-mr-7 {
    margin-right: -4rem !important;
  }
  .md\:-mr-8 {
    margin-right: -5rem !important;
  }
  .md\:mr-auto {
    margin-right: auto !important;
  }
  .md\:ml-0 {
    margin-left: 0rem !important;
  }
  .md\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .md\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .md\:ml-3 {
    margin-left: 1rem !important;
  }
  .md\:ml-4 {
    margin-left: 1.5rem !important;
  }
  .md\:ml-5 {
    margin-left: 2rem !important;
  }
  .md\:ml-6 {
    margin-left: 3rem !important;
  }
  .md\:ml-7 {
    margin-left: 4rem !important;
  }
  .md\:ml-8 {
    margin-left: 5rem !important;
  }
  .md\:-ml-1 {
    margin-left: -0.25rem !important;
  }
  .md\:-ml-2 {
    margin-left: -0.5rem !important;
  }
  .md\:-ml-3 {
    margin-left: -1rem !important;
  }
  .md\:-ml-4 {
    margin-left: -1.5rem !important;
  }
  .md\:-ml-5 {
    margin-left: -2rem !important;
  }
  .md\:-ml-6 {
    margin-left: -3rem !important;
  }
  .md\:-ml-7 {
    margin-left: -4rem !important;
  }
  .md\:-ml-8 {
    margin-left: -5rem !important;
  }
  .md\:ml-auto {
    margin-left: auto !important;
  }
  .md\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .md\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .md\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .md\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .md\:mb-4 {
    margin-bottom: 1.5rem !important;
  }
  .md\:mb-5 {
    margin-bottom: 2rem !important;
  }
  .md\:mb-6 {
    margin-bottom: 3rem !important;
  }
  .md\:mb-7 {
    margin-bottom: 4rem !important;
  }
  .md\:mb-8 {
    margin-bottom: 5rem !important;
  }
  .md\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }
  .md\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }
  .md\:-mb-3 {
    margin-bottom: -1rem !important;
  }
  .md\:-mb-4 {
    margin-bottom: -1.5rem !important;
  }
  .md\:-mb-5 {
    margin-bottom: -2rem !important;
  }
  .md\:-mb-6 {
    margin-bottom: -3rem !important;
  }
  .md\:-mb-7 {
    margin-bottom: -4rem !important;
  }
  .md\:-mb-8 {
    margin-bottom: -5rem !important;
  }
  .md\:mb-auto {
    margin-bottom: auto !important;
  }
  .md\:mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .md\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .md\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .md\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .md\:mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .md\:mx-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .md\:mx-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .md\:mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .md\:mx-8 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .md\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .md\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .md\:-mx-3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .md\:-mx-4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .md\:-mx-5 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .md\:-mx-6 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .md\:-mx-7 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .md\:-mx-8 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .md\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .md\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .md\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .md\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .md\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .md\:my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .md\:my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .md\:my-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .md\:my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .md\:my-8 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .md\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .md\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .md\:-my-3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .md\:-my-4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .md\:-my-5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .md\:-my-6 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .md\:-my-7 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .md\:-my-8 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .md\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:m-0 {
    margin: 0rem !important;
  }
  .lg\:m-1 {
    margin: 0.25rem !important;
  }
  .lg\:m-2 {
    margin: 0.5rem !important;
  }
  .lg\:m-3 {
    margin: 1rem !important;
  }
  .lg\:m-4 {
    margin: 1.5rem !important;
  }
  .lg\:m-5 {
    margin: 2rem !important;
  }
  .lg\:m-6 {
    margin: 3rem !important;
  }
  .lg\:m-7 {
    margin: 4rem !important;
  }
  .lg\:m-8 {
    margin: 5rem !important;
  }
  .lg\:-m-1 {
    margin: -0.25rem !important;
  }
  .lg\:-m-2 {
    margin: -0.5rem !important;
  }
  .lg\:-m-3 {
    margin: -1rem !important;
  }
  .lg\:-m-4 {
    margin: -1.5rem !important;
  }
  .lg\:-m-5 {
    margin: -2rem !important;
  }
  .lg\:-m-6 {
    margin: -3rem !important;
  }
  .lg\:-m-7 {
    margin: -4rem !important;
  }
  .lg\:-m-8 {
    margin: -5rem !important;
  }
  .lg\:m-auto {
    margin: auto !important;
  }
  .lg\:mt-0 {
    margin-top: 0rem !important;
  }
  .lg\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .lg\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .lg\:mt-3 {
    margin-top: 1rem !important;
  }
  .lg\:mt-4 {
    margin-top: 1.5rem !important;
  }
  .lg\:mt-5 {
    margin-top: 2rem !important;
  }
  .lg\:mt-6 {
    margin-top: 3rem !important;
  }
  .lg\:mt-7 {
    margin-top: 4rem !important;
  }
  .lg\:mt-8 {
    margin-top: 5rem !important;
  }
  .lg\:-mt-1 {
    margin-top: -0.25rem !important;
  }
  .lg\:-mt-2 {
    margin-top: -0.5rem !important;
  }
  .lg\:-mt-3 {
    margin-top: -1rem !important;
  }
  .lg\:-mt-4 {
    margin-top: -1.5rem !important;
  }
  .lg\:-mt-5 {
    margin-top: -2rem !important;
  }
  .lg\:-mt-6 {
    margin-top: -3rem !important;
  }
  .lg\:-mt-7 {
    margin-top: -4rem !important;
  }
  .lg\:-mt-8 {
    margin-top: -5rem !important;
  }
  .lg\:mt-auto {
    margin-top: auto !important;
  }
  .lg\:mr-0 {
    margin-right: 0rem !important;
  }
  .lg\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .lg\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .lg\:mr-3 {
    margin-right: 1rem !important;
  }
  .lg\:mr-4 {
    margin-right: 1.5rem !important;
  }
  .lg\:mr-5 {
    margin-right: 2rem !important;
  }
  .lg\:mr-6 {
    margin-right: 3rem !important;
  }
  .lg\:mr-7 {
    margin-right: 4rem !important;
  }
  .lg\:mr-8 {
    margin-right: 5rem !important;
  }
  .lg\:-mr-1 {
    margin-right: -0.25rem !important;
  }
  .lg\:-mr-2 {
    margin-right: -0.5rem !important;
  }
  .lg\:-mr-3 {
    margin-right: -1rem !important;
  }
  .lg\:-mr-4 {
    margin-right: -1.5rem !important;
  }
  .lg\:-mr-5 {
    margin-right: -2rem !important;
  }
  .lg\:-mr-6 {
    margin-right: -3rem !important;
  }
  .lg\:-mr-7 {
    margin-right: -4rem !important;
  }
  .lg\:-mr-8 {
    margin-right: -5rem !important;
  }
  .lg\:mr-auto {
    margin-right: auto !important;
  }
  .lg\:ml-0 {
    margin-left: 0rem !important;
  }
  .lg\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .lg\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .lg\:ml-3 {
    margin-left: 1rem !important;
  }
  .lg\:ml-4 {
    margin-left: 1.5rem !important;
  }
  .lg\:ml-5 {
    margin-left: 2rem !important;
  }
  .lg\:ml-6 {
    margin-left: 3rem !important;
  }
  .lg\:ml-7 {
    margin-left: 4rem !important;
  }
  .lg\:ml-8 {
    margin-left: 5rem !important;
  }
  .lg\:-ml-1 {
    margin-left: -0.25rem !important;
  }
  .lg\:-ml-2 {
    margin-left: -0.5rem !important;
  }
  .lg\:-ml-3 {
    margin-left: -1rem !important;
  }
  .lg\:-ml-4 {
    margin-left: -1.5rem !important;
  }
  .lg\:-ml-5 {
    margin-left: -2rem !important;
  }
  .lg\:-ml-6 {
    margin-left: -3rem !important;
  }
  .lg\:-ml-7 {
    margin-left: -4rem !important;
  }
  .lg\:-ml-8 {
    margin-left: -5rem !important;
  }
  .lg\:ml-auto {
    margin-left: auto !important;
  }
  .lg\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .lg\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .lg\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .lg\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .lg\:mb-4 {
    margin-bottom: 1.5rem !important;
  }
  .lg\:mb-5 {
    margin-bottom: 2rem !important;
  }
  .lg\:mb-6 {
    margin-bottom: 3rem !important;
  }
  .lg\:mb-7 {
    margin-bottom: 4rem !important;
  }
  .lg\:mb-8 {
    margin-bottom: 5rem !important;
  }
  .lg\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }
  .lg\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }
  .lg\:-mb-3 {
    margin-bottom: -1rem !important;
  }
  .lg\:-mb-4 {
    margin-bottom: -1.5rem !important;
  }
  .lg\:-mb-5 {
    margin-bottom: -2rem !important;
  }
  .lg\:-mb-6 {
    margin-bottom: -3rem !important;
  }
  .lg\:-mb-7 {
    margin-bottom: -4rem !important;
  }
  .lg\:-mb-8 {
    margin-bottom: -5rem !important;
  }
  .lg\:mb-auto {
    margin-bottom: auto !important;
  }
  .lg\:mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .lg\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .lg\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .lg\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .lg\:mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .lg\:mx-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .lg\:mx-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .lg\:mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .lg\:mx-8 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .lg\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .lg\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .lg\:-mx-3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .lg\:-mx-4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .lg\:-mx-5 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .lg\:-mx-6 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .lg\:-mx-7 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .lg\:-mx-8 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .lg\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .lg\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .lg\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .lg\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .lg\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .lg\:my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .lg\:my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .lg\:my-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .lg\:my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .lg\:my-8 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .lg\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .lg\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .lg\:-my-3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .lg\:-my-4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .lg\:-my-5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .lg\:-my-6 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .lg\:-my-7 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .lg\:-my-8 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .lg\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:m-0 {
    margin: 0rem !important;
  }
  .xl\:m-1 {
    margin: 0.25rem !important;
  }
  .xl\:m-2 {
    margin: 0.5rem !important;
  }
  .xl\:m-3 {
    margin: 1rem !important;
  }
  .xl\:m-4 {
    margin: 1.5rem !important;
  }
  .xl\:m-5 {
    margin: 2rem !important;
  }
  .xl\:m-6 {
    margin: 3rem !important;
  }
  .xl\:m-7 {
    margin: 4rem !important;
  }
  .xl\:m-8 {
    margin: 5rem !important;
  }
  .xl\:-m-1 {
    margin: -0.25rem !important;
  }
  .xl\:-m-2 {
    margin: -0.5rem !important;
  }
  .xl\:-m-3 {
    margin: -1rem !important;
  }
  .xl\:-m-4 {
    margin: -1.5rem !important;
  }
  .xl\:-m-5 {
    margin: -2rem !important;
  }
  .xl\:-m-6 {
    margin: -3rem !important;
  }
  .xl\:-m-7 {
    margin: -4rem !important;
  }
  .xl\:-m-8 {
    margin: -5rem !important;
  }
  .xl\:m-auto {
    margin: auto !important;
  }
  .xl\:mt-0 {
    margin-top: 0rem !important;
  }
  .xl\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .xl\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .xl\:mt-3 {
    margin-top: 1rem !important;
  }
  .xl\:mt-4 {
    margin-top: 1.5rem !important;
  }
  .xl\:mt-5 {
    margin-top: 2rem !important;
  }
  .xl\:mt-6 {
    margin-top: 3rem !important;
  }
  .xl\:mt-7 {
    margin-top: 4rem !important;
  }
  .xl\:mt-8 {
    margin-top: 5rem !important;
  }
  .xl\:-mt-1 {
    margin-top: -0.25rem !important;
  }
  .xl\:-mt-2 {
    margin-top: -0.5rem !important;
  }
  .xl\:-mt-3 {
    margin-top: -1rem !important;
  }
  .xl\:-mt-4 {
    margin-top: -1.5rem !important;
  }
  .xl\:-mt-5 {
    margin-top: -2rem !important;
  }
  .xl\:-mt-6 {
    margin-top: -3rem !important;
  }
  .xl\:-mt-7 {
    margin-top: -4rem !important;
  }
  .xl\:-mt-8 {
    margin-top: -5rem !important;
  }
  .xl\:mt-auto {
    margin-top: auto !important;
  }
  .xl\:mr-0 {
    margin-right: 0rem !important;
  }
  .xl\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .xl\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .xl\:mr-3 {
    margin-right: 1rem !important;
  }
  .xl\:mr-4 {
    margin-right: 1.5rem !important;
  }
  .xl\:mr-5 {
    margin-right: 2rem !important;
  }
  .xl\:mr-6 {
    margin-right: 3rem !important;
  }
  .xl\:mr-7 {
    margin-right: 4rem !important;
  }
  .xl\:mr-8 {
    margin-right: 5rem !important;
  }
  .xl\:-mr-1 {
    margin-right: -0.25rem !important;
  }
  .xl\:-mr-2 {
    margin-right: -0.5rem !important;
  }
  .xl\:-mr-3 {
    margin-right: -1rem !important;
  }
  .xl\:-mr-4 {
    margin-right: -1.5rem !important;
  }
  .xl\:-mr-5 {
    margin-right: -2rem !important;
  }
  .xl\:-mr-6 {
    margin-right: -3rem !important;
  }
  .xl\:-mr-7 {
    margin-right: -4rem !important;
  }
  .xl\:-mr-8 {
    margin-right: -5rem !important;
  }
  .xl\:mr-auto {
    margin-right: auto !important;
  }
  .xl\:ml-0 {
    margin-left: 0rem !important;
  }
  .xl\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .xl\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .xl\:ml-3 {
    margin-left: 1rem !important;
  }
  .xl\:ml-4 {
    margin-left: 1.5rem !important;
  }
  .xl\:ml-5 {
    margin-left: 2rem !important;
  }
  .xl\:ml-6 {
    margin-left: 3rem !important;
  }
  .xl\:ml-7 {
    margin-left: 4rem !important;
  }
  .xl\:ml-8 {
    margin-left: 5rem !important;
  }
  .xl\:-ml-1 {
    margin-left: -0.25rem !important;
  }
  .xl\:-ml-2 {
    margin-left: -0.5rem !important;
  }
  .xl\:-ml-3 {
    margin-left: -1rem !important;
  }
  .xl\:-ml-4 {
    margin-left: -1.5rem !important;
  }
  .xl\:-ml-5 {
    margin-left: -2rem !important;
  }
  .xl\:-ml-6 {
    margin-left: -3rem !important;
  }
  .xl\:-ml-7 {
    margin-left: -4rem !important;
  }
  .xl\:-ml-8 {
    margin-left: -5rem !important;
  }
  .xl\:ml-auto {
    margin-left: auto !important;
  }
  .xl\:mb-0 {
    margin-bottom: 0rem !important;
  }
  .xl\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xl\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xl\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .xl\:mb-4 {
    margin-bottom: 1.5rem !important;
  }
  .xl\:mb-5 {
    margin-bottom: 2rem !important;
  }
  .xl\:mb-6 {
    margin-bottom: 3rem !important;
  }
  .xl\:mb-7 {
    margin-bottom: 4rem !important;
  }
  .xl\:mb-8 {
    margin-bottom: 5rem !important;
  }
  .xl\:-mb-1 {
    margin-bottom: -0.25rem !important;
  }
  .xl\:-mb-2 {
    margin-bottom: -0.5rem !important;
  }
  .xl\:-mb-3 {
    margin-bottom: -1rem !important;
  }
  .xl\:-mb-4 {
    margin-bottom: -1.5rem !important;
  }
  .xl\:-mb-5 {
    margin-bottom: -2rem !important;
  }
  .xl\:-mb-6 {
    margin-bottom: -3rem !important;
  }
  .xl\:-mb-7 {
    margin-bottom: -4rem !important;
  }
  .xl\:-mb-8 {
    margin-bottom: -5rem !important;
  }
  .xl\:mb-auto {
    margin-bottom: auto !important;
  }
  .xl\:mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
  .xl\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .xl\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xl\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xl\:mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xl\:mx-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xl\:mx-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xl\:mx-7 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xl\:mx-8 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xl\:-mx-1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .xl\:-mx-2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xl\:-mx-3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .xl\:-mx-4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .xl\:-mx-5 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .xl\:-mx-6 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .xl\:-mx-7 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .xl\:-mx-8 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .xl\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .xl\:my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .xl\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .xl\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xl\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xl\:my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xl\:my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xl\:my-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xl\:my-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xl\:my-8 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xl\:-my-1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .xl\:-my-2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .xl\:-my-3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .xl\:-my-4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .xl\:-my-5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .xl\:-my-6 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .xl\:-my-7 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .xl\:-my-8 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .xl\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
.shadow-none {
  box-shadow: none !important;
}

.shadow-1 {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
}

.shadow-2 {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
}

.shadow-3 {
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
}

.shadow-4 {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
}

.shadow-5 {
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
}

.shadow-6 {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
}

.shadow-7 {
  box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
}

.shadow-8 {
  box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
}

.focus\:shadow-none:focus {
  box-shadow: none !important;
}

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

.active\:shadow-none:active {
  box-shadow: none !important;
}

.focus\:shadow-1:focus {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
}

.hover\:shadow-1:hover {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
}

.active\:shadow-1:active {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
}

.focus\:shadow-2:focus {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
}

.hover\:shadow-2:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
}

.active\:shadow-2:active {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
}

.focus\:shadow-3:focus {
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
}

.hover\:shadow-3:hover {
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
}

.active\:shadow-3:active {
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
}

.focus\:shadow-4:focus {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
}

.hover\:shadow-4:hover {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
}

.active\:shadow-4:active {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
}

.focus\:shadow-5:focus {
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
}

.hover\:shadow-5:hover {
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
}

.active\:shadow-5:active {
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
}

.focus\:shadow-6:focus {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
}

.hover\:shadow-6:hover {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
}

.active\:shadow-6:active {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
}

.focus\:shadow-7:focus {
  box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
}

.hover\:shadow-7:hover {
  box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
}

.active\:shadow-7:active {
  box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
}

.focus\:shadow-8:focus {
  box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
}

.hover\:shadow-8:hover {
  box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
}

.active\:shadow-8:active {
  box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
}

@media screen and (min-width: 576px) {
  .sm\:shadow-none {
    box-shadow: none !important;
  }
  .sm\:shadow-1 {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .sm\:shadow-2 {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .sm\:shadow-3 {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .sm\:shadow-4 {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:shadow-5 {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:shadow-6 {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .sm\:shadow-7 {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .sm\:shadow-8 {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:focus\:shadow-none:focus {
    box-shadow: none !important;
  }
  .sm\:hover\:shadow-none:hover {
    box-shadow: none !important;
  }
  .sm\:active\:shadow-none:active {
    box-shadow: none !important;
  }
  .sm\:focus\:shadow-1:focus {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .sm\:hover\:shadow-1:hover {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .sm\:active\:shadow-1:active {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .sm\:focus\:shadow-2:focus {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .sm\:hover\:shadow-2:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .sm\:active\:shadow-2:active {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .sm\:focus\:shadow-3:focus {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .sm\:hover\:shadow-3:hover {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .sm\:active\:shadow-3:active {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .sm\:focus\:shadow-4:focus {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:hover\:shadow-4:hover {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:active\:shadow-4:active {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:focus\:shadow-5:focus {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:hover\:shadow-5:hover {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:active\:shadow-5:active {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:focus\:shadow-6:focus {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .sm\:hover\:shadow-6:hover {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .sm\:active\:shadow-6:active {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .sm\:focus\:shadow-7:focus {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .sm\:hover\:shadow-7:hover {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .sm\:active\:shadow-7:active {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .sm\:focus\:shadow-8:focus {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:hover\:shadow-8:hover {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .sm\:active\:shadow-8:active {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:shadow-none {
    box-shadow: none !important;
  }
  .md\:shadow-1 {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .md\:shadow-2 {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .md\:shadow-3 {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .md\:shadow-4 {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:shadow-5 {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:shadow-6 {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .md\:shadow-7 {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .md\:shadow-8 {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:focus\:shadow-none:focus {
    box-shadow: none !important;
  }
  .md\:hover\:shadow-none:hover {
    box-shadow: none !important;
  }
  .md\:active\:shadow-none:active {
    box-shadow: none !important;
  }
  .md\:focus\:shadow-1:focus {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .md\:hover\:shadow-1:hover {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .md\:active\:shadow-1:active {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .md\:focus\:shadow-2:focus {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .md\:hover\:shadow-2:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .md\:active\:shadow-2:active {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .md\:focus\:shadow-3:focus {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .md\:hover\:shadow-3:hover {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .md\:active\:shadow-3:active {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .md\:focus\:shadow-4:focus {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:hover\:shadow-4:hover {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:active\:shadow-4:active {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:focus\:shadow-5:focus {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:hover\:shadow-5:hover {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:active\:shadow-5:active {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:focus\:shadow-6:focus {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .md\:hover\:shadow-6:hover {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .md\:active\:shadow-6:active {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .md\:focus\:shadow-7:focus {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .md\:hover\:shadow-7:hover {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .md\:active\:shadow-7:active {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .md\:focus\:shadow-8:focus {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:hover\:shadow-8:hover {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .md\:active\:shadow-8:active {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:shadow-none {
    box-shadow: none !important;
  }
  .lg\:shadow-1 {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .lg\:shadow-2 {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .lg\:shadow-3 {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .lg\:shadow-4 {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:shadow-5 {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:shadow-6 {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .lg\:shadow-7 {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .lg\:shadow-8 {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:focus\:shadow-none:focus {
    box-shadow: none !important;
  }
  .lg\:hover\:shadow-none:hover {
    box-shadow: none !important;
  }
  .lg\:active\:shadow-none:active {
    box-shadow: none !important;
  }
  .lg\:focus\:shadow-1:focus {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .lg\:hover\:shadow-1:hover {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .lg\:active\:shadow-1:active {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .lg\:focus\:shadow-2:focus {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .lg\:hover\:shadow-2:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .lg\:active\:shadow-2:active {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .lg\:focus\:shadow-3:focus {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .lg\:hover\:shadow-3:hover {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .lg\:active\:shadow-3:active {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .lg\:focus\:shadow-4:focus {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:hover\:shadow-4:hover {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:active\:shadow-4:active {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:focus\:shadow-5:focus {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:hover\:shadow-5:hover {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:active\:shadow-5:active {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:focus\:shadow-6:focus {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .lg\:hover\:shadow-6:hover {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .lg\:active\:shadow-6:active {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .lg\:focus\:shadow-7:focus {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .lg\:hover\:shadow-7:hover {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .lg\:active\:shadow-7:active {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .lg\:focus\:shadow-8:focus {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:hover\:shadow-8:hover {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .lg\:active\:shadow-8:active {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:shadow-none {
    box-shadow: none !important;
  }
  .xl\:shadow-1 {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .xl\:shadow-2 {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .xl\:shadow-3 {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .xl\:shadow-4 {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:shadow-5 {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:shadow-6 {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .xl\:shadow-7 {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .xl\:shadow-8 {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:focus\:shadow-none:focus {
    box-shadow: none !important;
  }
  .xl\:hover\:shadow-none:hover {
    box-shadow: none !important;
  }
  .xl\:active\:shadow-none:active {
    box-shadow: none !important;
  }
  .xl\:focus\:shadow-1:focus {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .xl\:hover\:shadow-1:hover {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .xl\:active\:shadow-1:active {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
  }
  .xl\:focus\:shadow-2:focus {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .xl\:hover\:shadow-2:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .xl\:active\:shadow-2:active {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.12) !important;
  }
  .xl\:focus\:shadow-3:focus {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .xl\:hover\:shadow-3:hover {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .xl\:active\:shadow-3:active {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08), 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 1px 4px -1px rgba(0, 0, 0, 0.1) !important;
  }
  .xl\:focus\:shadow-4:focus {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:hover\:shadow-4:hover {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:active\:shadow-4:active {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:focus\:shadow-5:focus {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:hover\:shadow-5:hover {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:active\:shadow-5:active {
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1), 0px 4px 5px -2px rgba(0, 0, 0, 0.12), 0px 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:focus\:shadow-6:focus {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .xl\:hover\:shadow-6:hover {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .xl\:active\:shadow-6:active {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18) !important;
  }
  .xl\:focus\:shadow-7:focus {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .xl\:hover\:shadow-7:hover {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .xl\:active\:shadow-7:active {
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.08), 0px 22px 30px 2px rgba(0, 0, 0, 0.15), 0px 8px 10px rgba(0, 0, 0, 0.15) !important;
  }
  .xl\:focus\:shadow-8:focus {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:hover\:shadow-8:hover {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
  .xl\:active\:shadow-8:active {
    box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 11px 15px rgba(0, 0, 0, 0.2) !important;
  }
}
.border-none {
  border-width: 0px !important;
  border-style: none;
}

.border-1 {
  border-width: 1px !important;
  border-style: solid;
}

.border-2 {
  border-width: 2px !important;
  border-style: solid;
}

.border-3 {
  border-width: 3px !important;
  border-style: solid;
}

.border-top-none {
  border-top-width: 0px !important;
  border-top-style: none;
}

.border-top-1 {
  border-top-width: 1px !important;
  border-top-style: solid;
}

.border-top-2 {
  border-top-width: 2px !important;
  border-top-style: solid;
}

.border-top-3 {
  border-top-width: 3px !important;
  border-top-style: solid;
}

.border-right-none {
  border-right-width: 0px !important;
  border-right-style: none;
}

.border-right-1 {
  border-right-width: 1px !important;
  border-right-style: solid;
}

.border-right-2 {
  border-right-width: 2px !important;
  border-right-style: solid;
}

.border-right-3 {
  border-right-width: 3px !important;
  border-right-style: solid;
}

.border-left-none {
  border-left-width: 0px !important;
  border-left-style: none;
}

.border-left-1 {
  border-left-width: 1px !important;
  border-left-style: solid;
}

.border-left-2 {
  border-left-width: 2px !important;
  border-left-style: solid;
}

.border-left-3 {
  border-left-width: 3px !important;
  border-left-style: solid;
}

.border-bottom-none {
  border-bottom-width: 0px !important;
  border-bottom-style: none;
}

.border-bottom-1 {
  border-bottom-width: 1px !important;
  border-bottom-style: solid;
}

.border-bottom-2 {
  border-bottom-width: 2px !important;
  border-bottom-style: solid;
}

.border-bottom-3 {
  border-bottom-width: 3px !important;
  border-bottom-style: solid;
}

.border-x-none {
  border-left-width: 0px !important;
  border-left-style: none;
  border-right-width: 0px !important;
  border-right-style: none;
}

.border-x-1 {
  border-left-width: 1px !important;
  border-left-style: solid;
  border-right-width: 1px !important;
  border-right-style: solid;
}

.border-x-2 {
  border-left-width: 2px !important;
  border-left-style: solid;
  border-right-width: 2px !important;
  border-right-style: solid;
}

.border-x-3 {
  border-left-width: 3px !important;
  border-left-style: solid;
  border-right-width: 3px !important;
  border-right-style: solid;
}

.border-y-none {
  border-top-width: 0px !important;
  border-top-style: none;
  border-bottom-width: 0px !important;
  border-bottom-style: none;
}

.border-y-1 {
  border-top-width: 1px !important;
  border-top-style: solid;
  border-bottom-width: 1px !important;
  border-bottom-style: solid;
}

.border-y-2 {
  border-top-width: 2px !important;
  border-top-style: solid;
  border-bottom-width: 2px !important;
  border-bottom-style: solid;
}

.border-y-3 {
  border-top-width: 3px !important;
  border-top-style: solid;
  border-bottom-width: 3px !important;
  border-bottom-style: solid;
}

@media screen and (min-width: 576px) {
  .sm\:border-none {
    border-width: 0px !important;
    border-style: none;
  }
  .sm\:border-1 {
    border-width: 1px !important;
    border-style: solid;
  }
  .sm\:border-2 {
    border-width: 2px !important;
    border-style: solid;
  }
  .sm\:border-3 {
    border-width: 3px !important;
    border-style: solid;
  }
  .sm\:border-top-none {
    border-top-width: 0px !important;
    border-top-style: none;
  }
  .sm\:border-top-1 {
    border-top-width: 1px !important;
    border-top-style: solid;
  }
  .sm\:border-top-2 {
    border-top-width: 2px !important;
    border-top-style: solid;
  }
  .sm\:border-top-3 {
    border-top-width: 3px !important;
    border-top-style: solid;
  }
  .sm\:border-right-none {
    border-right-width: 0px !important;
    border-right-style: none;
  }
  .sm\:border-right-1 {
    border-right-width: 1px !important;
    border-right-style: solid;
  }
  .sm\:border-right-2 {
    border-right-width: 2px !important;
    border-right-style: solid;
  }
  .sm\:border-right-3 {
    border-right-width: 3px !important;
    border-right-style: solid;
  }
  .sm\:border-left-none {
    border-left-width: 0px !important;
    border-left-style: none;
  }
  .sm\:border-left-1 {
    border-left-width: 1px !important;
    border-left-style: solid;
  }
  .sm\:border-left-2 {
    border-left-width: 2px !important;
    border-left-style: solid;
  }
  .sm\:border-left-3 {
    border-left-width: 3px !important;
    border-left-style: solid;
  }
  .sm\:border-bottom-none {
    border-bottom-width: 0px !important;
    border-bottom-style: none;
  }
  .sm\:border-bottom-1 {
    border-bottom-width: 1px !important;
    border-bottom-style: solid;
  }
  .sm\:border-bottom-2 {
    border-bottom-width: 2px !important;
    border-bottom-style: solid;
  }
  .sm\:border-bottom-3 {
    border-bottom-width: 3px !important;
    border-bottom-style: solid;
  }
  .sm\:border-x-none {
    border-left-width: 0px !important;
    border-left-style: none;
    border-right-width: 0px !important;
    border-right-style: none;
  }
  .sm\:border-x-1 {
    border-left-width: 1px !important;
    border-left-style: solid;
    border-right-width: 1px !important;
    border-right-style: solid;
  }
  .sm\:border-x-2 {
    border-left-width: 2px !important;
    border-left-style: solid;
    border-right-width: 2px !important;
    border-right-style: solid;
  }
  .sm\:border-x-3 {
    border-left-width: 3px !important;
    border-left-style: solid;
    border-right-width: 3px !important;
    border-right-style: solid;
  }
  .sm\:border-y-none {
    border-top-width: 0px !important;
    border-top-style: none;
    border-bottom-width: 0px !important;
    border-bottom-style: none;
  }
  .sm\:border-y-1 {
    border-top-width: 1px !important;
    border-top-style: solid;
    border-bottom-width: 1px !important;
    border-bottom-style: solid;
  }
  .sm\:border-y-2 {
    border-top-width: 2px !important;
    border-top-style: solid;
    border-bottom-width: 2px !important;
    border-bottom-style: solid;
  }
  .sm\:border-y-3 {
    border-top-width: 3px !important;
    border-top-style: solid;
    border-bottom-width: 3px !important;
    border-bottom-style: solid;
  }
}
@media screen and (min-width: 768px) {
  .md\:border-none {
    border-width: 0px !important;
    border-style: none;
  }
  .md\:border-1 {
    border-width: 1px !important;
    border-style: solid;
  }
  .md\:border-2 {
    border-width: 2px !important;
    border-style: solid;
  }
  .md\:border-3 {
    border-width: 3px !important;
    border-style: solid;
  }
  .md\:border-top-none {
    border-top-width: 0px !important;
    border-top-style: none;
  }
  .md\:border-top-1 {
    border-top-width: 1px !important;
    border-top-style: solid;
  }
  .md\:border-top-2 {
    border-top-width: 2px !important;
    border-top-style: solid;
  }
  .md\:border-top-3 {
    border-top-width: 3px !important;
    border-top-style: solid;
  }
  .md\:border-right-none {
    border-right-width: 0px !important;
    border-right-style: none;
  }
  .md\:border-right-1 {
    border-right-width: 1px !important;
    border-right-style: solid;
  }
  .md\:border-right-2 {
    border-right-width: 2px !important;
    border-right-style: solid;
  }
  .md\:border-right-3 {
    border-right-width: 3px !important;
    border-right-style: solid;
  }
  .md\:border-left-none {
    border-left-width: 0px !important;
    border-left-style: none;
  }
  .md\:border-left-1 {
    border-left-width: 1px !important;
    border-left-style: solid;
  }
  .md\:border-left-2 {
    border-left-width: 2px !important;
    border-left-style: solid;
  }
  .md\:border-left-3 {
    border-left-width: 3px !important;
    border-left-style: solid;
  }
  .md\:border-bottom-none {
    border-bottom-width: 0px !important;
    border-bottom-style: none;
  }
  .md\:border-bottom-1 {
    border-bottom-width: 1px !important;
    border-bottom-style: solid;
  }
  .md\:border-bottom-2 {
    border-bottom-width: 2px !important;
    border-bottom-style: solid;
  }
  .md\:border-bottom-3 {
    border-bottom-width: 3px !important;
    border-bottom-style: solid;
  }
  .md\:border-x-none {
    border-left-width: 0px !important;
    border-left-style: none;
    border-right-width: 0px !important;
    border-right-style: none;
  }
  .md\:border-x-1 {
    border-left-width: 1px !important;
    border-left-style: solid;
    border-right-width: 1px !important;
    border-right-style: solid;
  }
  .md\:border-x-2 {
    border-left-width: 2px !important;
    border-left-style: solid;
    border-right-width: 2px !important;
    border-right-style: solid;
  }
  .md\:border-x-3 {
    border-left-width: 3px !important;
    border-left-style: solid;
    border-right-width: 3px !important;
    border-right-style: solid;
  }
  .md\:border-y-none {
    border-top-width: 0px !important;
    border-top-style: none;
    border-bottom-width: 0px !important;
    border-bottom-style: none;
  }
  .md\:border-y-1 {
    border-top-width: 1px !important;
    border-top-style: solid;
    border-bottom-width: 1px !important;
    border-bottom-style: solid;
  }
  .md\:border-y-2 {
    border-top-width: 2px !important;
    border-top-style: solid;
    border-bottom-width: 2px !important;
    border-bottom-style: solid;
  }
  .md\:border-y-3 {
    border-top-width: 3px !important;
    border-top-style: solid;
    border-bottom-width: 3px !important;
    border-bottom-style: solid;
  }
}
@media screen and (min-width: 992px) {
  .lg\:border-none {
    border-width: 0px !important;
    border-style: none;
  }
  .lg\:border-1 {
    border-width: 1px !important;
    border-style: solid;
  }
  .lg\:border-2 {
    border-width: 2px !important;
    border-style: solid;
  }
  .lg\:border-3 {
    border-width: 3px !important;
    border-style: solid;
  }
  .lg\:border-top-none {
    border-top-width: 0px !important;
    border-top-style: none;
  }
  .lg\:border-top-1 {
    border-top-width: 1px !important;
    border-top-style: solid;
  }
  .lg\:border-top-2 {
    border-top-width: 2px !important;
    border-top-style: solid;
  }
  .lg\:border-top-3 {
    border-top-width: 3px !important;
    border-top-style: solid;
  }
  .lg\:border-right-none {
    border-right-width: 0px !important;
    border-right-style: none;
  }
  .lg\:border-right-1 {
    border-right-width: 1px !important;
    border-right-style: solid;
  }
  .lg\:border-right-2 {
    border-right-width: 2px !important;
    border-right-style: solid;
  }
  .lg\:border-right-3 {
    border-right-width: 3px !important;
    border-right-style: solid;
  }
  .lg\:border-left-none {
    border-left-width: 0px !important;
    border-left-style: none;
  }
  .lg\:border-left-1 {
    border-left-width: 1px !important;
    border-left-style: solid;
  }
  .lg\:border-left-2 {
    border-left-width: 2px !important;
    border-left-style: solid;
  }
  .lg\:border-left-3 {
    border-left-width: 3px !important;
    border-left-style: solid;
  }
  .lg\:border-bottom-none {
    border-bottom-width: 0px !important;
    border-bottom-style: none;
  }
  .lg\:border-bottom-1 {
    border-bottom-width: 1px !important;
    border-bottom-style: solid;
  }
  .lg\:border-bottom-2 {
    border-bottom-width: 2px !important;
    border-bottom-style: solid;
  }
  .lg\:border-bottom-3 {
    border-bottom-width: 3px !important;
    border-bottom-style: solid;
  }
  .lg\:border-x-none {
    border-left-width: 0px !important;
    border-left-style: none;
    border-right-width: 0px !important;
    border-right-style: none;
  }
  .lg\:border-x-1 {
    border-left-width: 1px !important;
    border-left-style: solid;
    border-right-width: 1px !important;
    border-right-style: solid;
  }
  .lg\:border-x-2 {
    border-left-width: 2px !important;
    border-left-style: solid;
    border-right-width: 2px !important;
    border-right-style: solid;
  }
  .lg\:border-x-3 {
    border-left-width: 3px !important;
    border-left-style: solid;
    border-right-width: 3px !important;
    border-right-style: solid;
  }
  .lg\:border-y-none {
    border-top-width: 0px !important;
    border-top-style: none;
    border-bottom-width: 0px !important;
    border-bottom-style: none;
  }
  .lg\:border-y-1 {
    border-top-width: 1px !important;
    border-top-style: solid;
    border-bottom-width: 1px !important;
    border-bottom-style: solid;
  }
  .lg\:border-y-2 {
    border-top-width: 2px !important;
    border-top-style: solid;
    border-bottom-width: 2px !important;
    border-bottom-style: solid;
  }
  .lg\:border-y-3 {
    border-top-width: 3px !important;
    border-top-style: solid;
    border-bottom-width: 3px !important;
    border-bottom-style: solid;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:border-none {
    border-width: 0px !important;
    border-style: none;
  }
  .xl\:border-1 {
    border-width: 1px !important;
    border-style: solid;
  }
  .xl\:border-2 {
    border-width: 2px !important;
    border-style: solid;
  }
  .xl\:border-3 {
    border-width: 3px !important;
    border-style: solid;
  }
  .xl\:border-top-none {
    border-top-width: 0px !important;
    border-top-style: none;
  }
  .xl\:border-top-1 {
    border-top-width: 1px !important;
    border-top-style: solid;
  }
  .xl\:border-top-2 {
    border-top-width: 2px !important;
    border-top-style: solid;
  }
  .xl\:border-top-3 {
    border-top-width: 3px !important;
    border-top-style: solid;
  }
  .xl\:border-right-none {
    border-right-width: 0px !important;
    border-right-style: none;
  }
  .xl\:border-right-1 {
    border-right-width: 1px !important;
    border-right-style: solid;
  }
  .xl\:border-right-2 {
    border-right-width: 2px !important;
    border-right-style: solid;
  }
  .xl\:border-right-3 {
    border-right-width: 3px !important;
    border-right-style: solid;
  }
  .xl\:border-left-none {
    border-left-width: 0px !important;
    border-left-style: none;
  }
  .xl\:border-left-1 {
    border-left-width: 1px !important;
    border-left-style: solid;
  }
  .xl\:border-left-2 {
    border-left-width: 2px !important;
    border-left-style: solid;
  }
  .xl\:border-left-3 {
    border-left-width: 3px !important;
    border-left-style: solid;
  }
  .xl\:border-bottom-none {
    border-bottom-width: 0px !important;
    border-bottom-style: none;
  }
  .xl\:border-bottom-1 {
    border-bottom-width: 1px !important;
    border-bottom-style: solid;
  }
  .xl\:border-bottom-2 {
    border-bottom-width: 2px !important;
    border-bottom-style: solid;
  }
  .xl\:border-bottom-3 {
    border-bottom-width: 3px !important;
    border-bottom-style: solid;
  }
  .xl\:border-x-none {
    border-left-width: 0px !important;
    border-left-style: none;
    border-right-width: 0px !important;
    border-right-style: none;
  }
  .xl\:border-x-1 {
    border-left-width: 1px !important;
    border-left-style: solid;
    border-right-width: 1px !important;
    border-right-style: solid;
  }
  .xl\:border-x-2 {
    border-left-width: 2px !important;
    border-left-style: solid;
    border-right-width: 2px !important;
    border-right-style: solid;
  }
  .xl\:border-x-3 {
    border-left-width: 3px !important;
    border-left-style: solid;
    border-right-width: 3px !important;
    border-right-style: solid;
  }
  .xl\:border-y-none {
    border-top-width: 0px !important;
    border-top-style: none;
    border-bottom-width: 0px !important;
    border-bottom-style: none;
  }
  .xl\:border-y-1 {
    border-top-width: 1px !important;
    border-top-style: solid;
    border-bottom-width: 1px !important;
    border-bottom-style: solid;
  }
  .xl\:border-y-2 {
    border-top-width: 2px !important;
    border-top-style: solid;
    border-bottom-width: 2px !important;
    border-bottom-style: solid;
  }
  .xl\:border-y-3 {
    border-top-width: 3px !important;
    border-top-style: solid;
    border-bottom-width: 3px !important;
    border-bottom-style: solid;
  }
}
.border-solid {
  border-style: solid !important;
}

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

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

.border-double {
  border-style: double !important;
}

@media screen and (min-width: 576px) {
  .sm\:border-solid {
    border-style: solid !important;
  }
  .sm\:border-dashed {
    border-style: dashed !important;
  }
  .sm\:border-dotted {
    border-style: dotted !important;
  }
  .sm\:border-double {
    border-style: double !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:border-solid {
    border-style: solid !important;
  }
  .md\:border-dashed {
    border-style: dashed !important;
  }
  .md\:border-dotted {
    border-style: dotted !important;
  }
  .md\:border-double {
    border-style: double !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:border-solid {
    border-style: solid !important;
  }
  .lg\:border-dashed {
    border-style: dashed !important;
  }
  .lg\:border-dotted {
    border-style: dotted !important;
  }
  .lg\:border-double {
    border-style: double !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:border-solid {
    border-style: solid !important;
  }
  .xl\:border-dashed {
    border-style: dashed !important;
  }
  .xl\:border-dotted {
    border-style: dotted !important;
  }
  .xl\:border-double {
    border-style: double !important;
  }
}
.border-noround {
  border-radius: 0 !important;
}

.border-round {
  border-radius: var(--p-content-border-radius) !important;
}

.border-round-xs {
  border-radius: 0.125rem !important;
}

.border-round-sm {
  border-radius: 0.25rem !important;
}

.border-round-md {
  border-radius: 0.375rem !important;
}

.border-round-lg {
  border-radius: 0.5rem !important;
}

.border-round-xl {
  border-radius: 0.75rem !important;
}

.border-round-2xl {
  border-radius: 1rem !important;
}

.border-round-3xl {
  border-radius: 1.5rem !important;
}

.border-circle {
  border-radius: 50% !important;
}

@media screen and (min-width: 576px) {
  .sm\:border-noround {
    border-radius: 0 !important;
  }
  .sm\:border-round {
    border-radius: var(--p-content-border-radius) !important;
  }
  .sm\:border-round-xs {
    border-radius: 0.125rem !important;
  }
  .sm\:border-round-sm {
    border-radius: 0.25rem !important;
  }
  .sm\:border-round-md {
    border-radius: 0.375rem !important;
  }
  .sm\:border-round-lg {
    border-radius: 0.5rem !important;
  }
  .sm\:border-round-xl {
    border-radius: 0.75rem !important;
  }
  .sm\:border-round-2xl {
    border-radius: 1rem !important;
  }
  .sm\:border-round-3xl {
    border-radius: 1.5rem !important;
  }
  .sm\:border-circle {
    border-radius: 50% !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:border-noround {
    border-radius: 0 !important;
  }
  .md\:border-round {
    border-radius: var(--p-content-border-radius) !important;
  }
  .md\:border-round-xs {
    border-radius: 0.125rem !important;
  }
  .md\:border-round-sm {
    border-radius: 0.25rem !important;
  }
  .md\:border-round-md {
    border-radius: 0.375rem !important;
  }
  .md\:border-round-lg {
    border-radius: 0.5rem !important;
  }
  .md\:border-round-xl {
    border-radius: 0.75rem !important;
  }
  .md\:border-round-2xl {
    border-radius: 1rem !important;
  }
  .md\:border-round-3xl {
    border-radius: 1.5rem !important;
  }
  .md\:border-circle {
    border-radius: 50% !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:border-noround {
    border-radius: 0 !important;
  }
  .lg\:border-round {
    border-radius: var(--p-content-border-radius) !important;
  }
  .lg\:border-round-xs {
    border-radius: 0.125rem !important;
  }
  .lg\:border-round-sm {
    border-radius: 0.25rem !important;
  }
  .lg\:border-round-md {
    border-radius: 0.375rem !important;
  }
  .lg\:border-round-lg {
    border-radius: 0.5rem !important;
  }
  .lg\:border-round-xl {
    border-radius: 0.75rem !important;
  }
  .lg\:border-round-2xl {
    border-radius: 1rem !important;
  }
  .lg\:border-round-3xl {
    border-radius: 1.5rem !important;
  }
  .lg\:border-circle {
    border-radius: 50% !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:border-noround {
    border-radius: 0 !important;
  }
  .xl\:border-round {
    border-radius: var(--p-content-border-radius) !important;
  }
  .xl\:border-round-xs {
    border-radius: 0.125rem !important;
  }
  .xl\:border-round-sm {
    border-radius: 0.25rem !important;
  }
  .xl\:border-round-md {
    border-radius: 0.375rem !important;
  }
  .xl\:border-round-lg {
    border-radius: 0.5rem !important;
  }
  .xl\:border-round-xl {
    border-radius: 0.75rem !important;
  }
  .xl\:border-round-2xl {
    border-radius: 1rem !important;
  }
  .xl\:border-round-3xl {
    border-radius: 1.5rem !important;
  }
  .xl\:border-circle {
    border-radius: 50% !important;
  }
}
.border-noround-left {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.border-noround-top {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.border-noround-right {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.border-noround-bottom {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.border-round-left {
  border-top-left-radius: var(--p-content-border-radius) !important;
  border-bottom-left-radius: var(--p-content-border-radius) !important;
}

.border-round-top {
  border-top-left-radius: var(--p-content-border-radius) !important;
  border-top-right-radius: var(--p-content-border-radius) !important;
}

.border-round-right {
  border-top-right-radius: var(--p-content-border-radius) !important;
  border-bottom-right-radius: var(--p-content-border-radius) !important;
}

.border-round-bottom {
  border-bottom-left-radius: var(--p-content-border-radius) !important;
  border-bottom-right-radius: var(--p-content-border-radius) !important;
}

.border-round-left-xs {
  border-top-left-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}

.border-round-top-xs {
  border-top-left-radius: 0.125rem !important;
  border-top-right-radius: 0.125rem !important;
}

.border-round-right-xs {
  border-top-right-radius: 0.125rem !important;
  border-bottom-right-radius: 0.125rem !important;
}

.border-round-bottom-xs {
  border-bottom-left-radius: 0.125rem !important;
  border-bottom-right-radius: 0.125rem !important;
}

.border-round-left-sm {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.border-round-top-sm {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.border-round-right-sm {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.border-round-bottom-sm {
  border-bottom-left-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.border-round-left-md {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.border-round-top-md {
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
}

.border-round-right-md {
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

.border-round-bottom-md {
  border-bottom-left-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

.border-round-left-lg {
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.border-round-top-lg {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}

.border-round-right-lg {
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.border-round-bottom-lg {
  border-bottom-left-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.border-round-left-xl {
  border-top-left-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}

.border-round-top-xl {
  border-top-left-radius: 0.75rem !important;
  border-top-right-radius: 0.75rem !important;
}

.border-round-right-xl {
  border-top-right-radius: 0.75rem !important;
  border-bottom-right-radius: 0.75rem !important;
}

.border-round-bottom-xl {
  border-bottom-left-radius: 0.75rem !important;
  border-bottom-right-radius: 0.75rem !important;
}

.border-round-left-2xl {
  border-top-left-radius: 1rem !important;
  border-bottom-left-radius: 1rem !important;
}

.border-round-top-2xl {
  border-top-left-radius: 1rem !important;
  border-top-right-radius: 1rem !important;
}

.border-round-right-2xl {
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
}

.border-round-bottom-2xl {
  border-bottom-left-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
}

.border-round-left-3xl {
  border-top-left-radius: 1.5rem !important;
  border-bottom-left-radius: 1.5rem !important;
}

.border-round-top-3xl {
  border-top-left-radius: 1.5rem !important;
  border-top-right-radius: 1.5rem !important;
}

.border-round-right-3xl {
  border-top-right-radius: 1.5rem !important;
  border-bottom-right-radius: 1.5rem !important;
}

.border-round-bottom-3xl {
  border-bottom-left-radius: 1.5rem !important;
  border-bottom-right-radius: 1.5rem !important;
}

.border-circle-left {
  border-top-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.border-circle-top {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.border-circle-right {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.border-circle-bottom {
  border-bottom-left-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

@media screen and (min-width: 576px) {
  .sm\:border-noround-left {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .sm\:border-noround-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .sm\:border-noround-right {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .sm\:border-noround-bottom {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .sm\:border-round-left {
    border-top-left-radius: var(--p-content-border-radius) !important;
    border-bottom-left-radius: var(--p-content-border-radius) !important;
  }
  .sm\:border-round-top {
    border-top-left-radius: var(--p-content-border-radius) !important;
    border-top-right-radius: var(--p-content-border-radius) !important;
  }
  .sm\:border-round-right {
    border-top-right-radius: var(--p-content-border-radius) !important;
    border-bottom-right-radius: var(--p-content-border-radius) !important;
  }
  .sm\:border-round-bottom {
    border-bottom-left-radius: var(--p-content-border-radius) !important;
    border-bottom-right-radius: var(--p-content-border-radius) !important;
  }
  .sm\:border-round-left-xs {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }
  .sm\:border-round-top-xs {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }
  .sm\:border-round-right-xs {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }
  .sm\:border-round-bottom-xs {
    border-bottom-left-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }
  .sm\:border-round-left-sm {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }
  .sm\:border-round-top-sm {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }
  .sm\:border-round-right-sm {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }
  .sm\:border-round-bottom-sm {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }
  .sm\:border-round-left-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }
  .sm\:border-round-top-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }
  .sm\:border-round-right-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }
  .sm\:border-round-bottom-md {
    border-bottom-left-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }
  .sm\:border-round-left-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }
  .sm\:border-round-top-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }
  .sm\:border-round-right-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }
  .sm\:border-round-bottom-lg {
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }
  .sm\:border-round-left-xl {
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }
  .sm\:border-round-top-xl {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }
  .sm\:border-round-right-xl {
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }
  .sm\:border-round-bottom-xl {
    border-bottom-left-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }
  .sm\:border-round-left-2xl {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }
  .sm\:border-round-top-2xl {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }
  .sm\:border-round-right-2xl {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }
  .sm\:border-round-bottom-2xl {
    border-bottom-left-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }
  .sm\:border-round-left-3xl {
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }
  .sm\:border-round-top-3xl {
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }
  .sm\:border-round-right-3xl {
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }
  .sm\:border-round-bottom-3xl {
    border-bottom-left-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }
  .sm\:border-circle-left {
    border-top-left-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
  }
  .sm\:border-circle-top {
    border-top-left-radius: 50% !important;
    border-top-right-radius: 50% !important;
  }
  .sm\:border-circle-right {
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
  }
  .sm\:border-circle-bottom {
    border-bottom-left-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:border-noround-left {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .md\:border-noround-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .md\:border-noround-right {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .md\:border-noround-bottom {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .md\:border-round-left {
    border-top-left-radius: var(--p-content-border-radius) !important;
    border-bottom-left-radius: var(--p-content-border-radius) !important;
  }
  .md\:border-round-top {
    border-top-left-radius: var(--p-content-border-radius) !important;
    border-top-right-radius: var(--p-content-border-radius) !important;
  }
  .md\:border-round-right {
    border-top-right-radius: var(--p-content-border-radius) !important;
    border-bottom-right-radius: var(--p-content-border-radius) !important;
  }
  .md\:border-round-bottom {
    border-bottom-left-radius: var(--p-content-border-radius) !important;
    border-bottom-right-radius: var(--p-content-border-radius) !important;
  }
  .md\:border-round-left-xs {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }
  .md\:border-round-top-xs {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }
  .md\:border-round-right-xs {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }
  .md\:border-round-bottom-xs {
    border-bottom-left-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }
  .md\:border-round-left-sm {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }
  .md\:border-round-top-sm {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }
  .md\:border-round-right-sm {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }
  .md\:border-round-bottom-sm {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }
  .md\:border-round-left-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }
  .md\:border-round-top-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }
  .md\:border-round-right-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }
  .md\:border-round-bottom-md {
    border-bottom-left-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }
  .md\:border-round-left-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }
  .md\:border-round-top-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }
  .md\:border-round-right-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }
  .md\:border-round-bottom-lg {
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }
  .md\:border-round-left-xl {
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }
  .md\:border-round-top-xl {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }
  .md\:border-round-right-xl {
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }
  .md\:border-round-bottom-xl {
    border-bottom-left-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }
  .md\:border-round-left-2xl {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }
  .md\:border-round-top-2xl {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }
  .md\:border-round-right-2xl {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }
  .md\:border-round-bottom-2xl {
    border-bottom-left-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }
  .md\:border-round-left-3xl {
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }
  .md\:border-round-top-3xl {
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }
  .md\:border-round-right-3xl {
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }
  .md\:border-round-bottom-3xl {
    border-bottom-left-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }
  .md\:border-circle-left {
    border-top-left-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
  }
  .md\:border-circle-top {
    border-top-left-radius: 50% !important;
    border-top-right-radius: 50% !important;
  }
  .md\:border-circle-right {
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
  }
  .md\:border-circle-bottom {
    border-bottom-left-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:border-noround-left {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .lg\:border-noround-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .lg\:border-noround-right {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .lg\:border-noround-bottom {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .lg\:border-round-left {
    border-top-left-radius: var(--p-content-border-radius) !important;
    border-bottom-left-radius: var(--p-content-border-radius) !important;
  }
  .lg\:border-round-top {
    border-top-left-radius: var(--p-content-border-radius) !important;
    border-top-right-radius: var(--p-content-border-radius) !important;
  }
  .lg\:border-round-right {
    border-top-right-radius: var(--p-content-border-radius) !important;
    border-bottom-right-radius: var(--p-content-border-radius) !important;
  }
  .lg\:border-round-bottom {
    border-bottom-left-radius: var(--p-content-border-radius) !important;
    border-bottom-right-radius: var(--p-content-border-radius) !important;
  }
  .lg\:border-round-left-xs {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }
  .lg\:border-round-top-xs {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }
  .lg\:border-round-right-xs {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }
  .lg\:border-round-bottom-xs {
    border-bottom-left-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }
  .lg\:border-round-left-sm {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }
  .lg\:border-round-top-sm {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }
  .lg\:border-round-right-sm {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }
  .lg\:border-round-bottom-sm {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }
  .lg\:border-round-left-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }
  .lg\:border-round-top-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }
  .lg\:border-round-right-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }
  .lg\:border-round-bottom-md {
    border-bottom-left-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }
  .lg\:border-round-left-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }
  .lg\:border-round-top-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }
  .lg\:border-round-right-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }
  .lg\:border-round-bottom-lg {
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }
  .lg\:border-round-left-xl {
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }
  .lg\:border-round-top-xl {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }
  .lg\:border-round-right-xl {
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }
  .lg\:border-round-bottom-xl {
    border-bottom-left-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }
  .lg\:border-round-left-2xl {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }
  .lg\:border-round-top-2xl {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }
  .lg\:border-round-right-2xl {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }
  .lg\:border-round-bottom-2xl {
    border-bottom-left-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }
  .lg\:border-round-left-3xl {
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }
  .lg\:border-round-top-3xl {
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }
  .lg\:border-round-right-3xl {
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }
  .lg\:border-round-bottom-3xl {
    border-bottom-left-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }
  .lg\:border-circle-left {
    border-top-left-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
  }
  .lg\:border-circle-top {
    border-top-left-radius: 50% !important;
    border-top-right-radius: 50% !important;
  }
  .lg\:border-circle-right {
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
  }
  .lg\:border-circle-bottom {
    border-bottom-left-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:border-noround-left {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .xl\:border-noround-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .xl\:border-noround-right {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .xl\:border-noround-bottom {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .xl\:border-round-left {
    border-top-left-radius: var(--p-content-border-radius) !important;
    border-bottom-left-radius: var(--p-content-border-radius) !important;
  }
  .xl\:border-round-top {
    border-top-left-radius: var(--p-content-border-radius) !important;
    border-top-right-radius: var(--p-content-border-radius) !important;
  }
  .xl\:border-round-right {
    border-top-right-radius: var(--p-content-border-radius) !important;
    border-bottom-right-radius: var(--p-content-border-radius) !important;
  }
  .xl\:border-round-bottom {
    border-bottom-left-radius: var(--p-content-border-radius) !important;
    border-bottom-right-radius: var(--p-content-border-radius) !important;
  }
  .xl\:border-round-left-xs {
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }
  .xl\:border-round-top-xs {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }
  .xl\:border-round-right-xs {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }
  .xl\:border-round-bottom-xs {
    border-bottom-left-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }
  .xl\:border-round-left-sm {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }
  .xl\:border-round-top-sm {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }
  .xl\:border-round-right-sm {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }
  .xl\:border-round-bottom-sm {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }
  .xl\:border-round-left-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }
  .xl\:border-round-top-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }
  .xl\:border-round-right-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }
  .xl\:border-round-bottom-md {
    border-bottom-left-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }
  .xl\:border-round-left-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
  }
  .xl\:border-round-top-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
  }
  .xl\:border-round-right-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }
  .xl\:border-round-bottom-lg {
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }
  .xl\:border-round-left-xl {
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
  }
  .xl\:border-round-top-xl {
    border-top-left-radius: 0.75rem !important;
    border-top-right-radius: 0.75rem !important;
  }
  .xl\:border-round-right-xl {
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }
  .xl\:border-round-bottom-xl {
    border-bottom-left-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
  }
  .xl\:border-round-left-2xl {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
  }
  .xl\:border-round-top-2xl {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
  }
  .xl\:border-round-right-2xl {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }
  .xl\:border-round-bottom-2xl {
    border-bottom-left-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
  }
  .xl\:border-round-left-3xl {
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
  }
  .xl\:border-round-top-3xl {
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
  }
  .xl\:border-round-right-3xl {
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }
  .xl\:border-round-bottom-3xl {
    border-bottom-left-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
  }
  .xl\:border-circle-left {
    border-top-left-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
  }
  .xl\:border-circle-top {
    border-top-left-radius: 50% !important;
    border-top-right-radius: 50% !important;
  }
  .xl\:border-circle-right {
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
  }
  .xl\:border-circle-bottom {
    border-bottom-left-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
  }
}
.w-full {
  width: 100% !important;
}

.w-screen {
  width: 100vw !important;
}

.w-auto {
  width: auto !important;
}

.w-1 {
  width: 8.3333% !important;
}

.w-2 {
  width: 16.6667% !important;
}

.w-3 {
  width: 25% !important;
}

.w-4 {
  width: 33.3333% !important;
}

.w-5 {
  width: 41.6667% !important;
}

.w-6 {
  width: 50% !important;
}

.w-7 {
  width: 58.3333% !important;
}

.w-8 {
  width: 66.6667% !important;
}

.w-9 {
  width: 75% !important;
}

.w-10 {
  width: 83.3333% !important;
}

.w-11 {
  width: 91.6667% !important;
}

.w-12 {
  width: 100% !important;
}

.w-min {
  width: min-content !important;
}

.w-max {
  width: max-content !important;
}

.w-fit {
  width: fit-content !important;
}

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

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

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

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

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

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

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

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

.w-9rem {
  width: 9rem !important;
}

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

.w-11rem {
  width: 11rem !important;
}

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

.w-13rem {
  width: 13rem !important;
}

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

.w-15rem {
  width: 15rem !important;
}

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

.w-17rem {
  width: 17rem !important;
}

.w-18rem {
  width: 18rem !important;
}

.w-19rem {
  width: 19rem !important;
}

.w-20rem {
  width: 20rem !important;
}

.w-21rem {
  width: 21rem !important;
}

.w-22rem {
  width: 22rem !important;
}

.w-23rem {
  width: 23rem !important;
}

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

.w-25rem {
  width: 25rem !important;
}

.w-26rem {
  width: 26rem !important;
}

.w-27rem {
  width: 27rem !important;
}

.w-28rem {
  width: 28rem !important;
}

.w-29rem {
  width: 29rem !important;
}

.w-30rem {
  width: 30rem !important;
}

@media screen and (min-width: 576px) {
  .sm\:w-full {
    width: 100% !important;
  }
  .sm\:w-screen {
    width: 100vw !important;
  }
  .sm\:w-auto {
    width: auto !important;
  }
  .sm\:w-1 {
    width: 8.3333% !important;
  }
  .sm\:w-2 {
    width: 16.6667% !important;
  }
  .sm\:w-3 {
    width: 25% !important;
  }
  .sm\:w-4 {
    width: 33.3333% !important;
  }
  .sm\:w-5 {
    width: 41.6667% !important;
  }
  .sm\:w-6 {
    width: 50% !important;
  }
  .sm\:w-7 {
    width: 58.3333% !important;
  }
  .sm\:w-8 {
    width: 66.6667% !important;
  }
  .sm\:w-9 {
    width: 75% !important;
  }
  .sm\:w-10 {
    width: 83.3333% !important;
  }
  .sm\:w-11 {
    width: 91.6667% !important;
  }
  .sm\:w-12 {
    width: 100% !important;
  }
  .sm\:w-min {
    width: min-content !important;
  }
  .sm\:w-max {
    width: max-content !important;
  }
  .sm\:w-fit {
    width: fit-content !important;
  }
  .sm\:w-1rem {
    width: 1rem !important;
  }
  .sm\:w-2rem {
    width: 2rem !important;
  }
  .sm\:w-3rem {
    width: 3rem !important;
  }
  .sm\:w-4rem {
    width: 4rem !important;
  }
  .sm\:w-5rem {
    width: 5rem !important;
  }
  .sm\:w-6rem {
    width: 6rem !important;
  }
  .sm\:w-7rem {
    width: 7rem !important;
  }
  .sm\:w-8rem {
    width: 8rem !important;
  }
  .sm\:w-9rem {
    width: 9rem !important;
  }
  .sm\:w-10rem {
    width: 10rem !important;
  }
  .sm\:w-11rem {
    width: 11rem !important;
  }
  .sm\:w-12rem {
    width: 12rem !important;
  }
  .sm\:w-13rem {
    width: 13rem !important;
  }
  .sm\:w-14rem {
    width: 14rem !important;
  }
  .sm\:w-15rem {
    width: 15rem !important;
  }
  .sm\:w-16rem {
    width: 16rem !important;
  }
  .sm\:w-17rem {
    width: 17rem !important;
  }
  .sm\:w-18rem {
    width: 18rem !important;
  }
  .sm\:w-19rem {
    width: 19rem !important;
  }
  .sm\:w-20rem {
    width: 20rem !important;
  }
  .sm\:w-21rem {
    width: 21rem !important;
  }
  .sm\:w-22rem {
    width: 22rem !important;
  }
  .sm\:w-23rem {
    width: 23rem !important;
  }
  .sm\:w-24rem {
    width: 24rem !important;
  }
  .sm\:w-25rem {
    width: 25rem !important;
  }
  .sm\:w-26rem {
    width: 26rem !important;
  }
  .sm\:w-27rem {
    width: 27rem !important;
  }
  .sm\:w-28rem {
    width: 28rem !important;
  }
  .sm\:w-29rem {
    width: 29rem !important;
  }
  .sm\:w-30rem {
    width: 30rem !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:w-full {
    width: 100% !important;
  }
  .md\:w-screen {
    width: 100vw !important;
  }
  .md\:w-auto {
    width: auto !important;
  }
  .md\:w-1 {
    width: 8.3333% !important;
  }
  .md\:w-2 {
    width: 16.6667% !important;
  }
  .md\:w-3 {
    width: 25% !important;
  }
  .md\:w-4 {
    width: 33.3333% !important;
  }
  .md\:w-5 {
    width: 41.6667% !important;
  }
  .md\:w-6 {
    width: 50% !important;
  }
  .md\:w-7 {
    width: 58.3333% !important;
  }
  .md\:w-8 {
    width: 66.6667% !important;
  }
  .md\:w-9 {
    width: 75% !important;
  }
  .md\:w-10 {
    width: 83.3333% !important;
  }
  .md\:w-11 {
    width: 91.6667% !important;
  }
  .md\:w-12 {
    width: 100% !important;
  }
  .md\:w-min {
    width: min-content !important;
  }
  .md\:w-max {
    width: max-content !important;
  }
  .md\:w-fit {
    width: fit-content !important;
  }
  .md\:w-1rem {
    width: 1rem !important;
  }
  .md\:w-2rem {
    width: 2rem !important;
  }
  .md\:w-3rem {
    width: 3rem !important;
  }
  .md\:w-4rem {
    width: 4rem !important;
  }
  .md\:w-5rem {
    width: 5rem !important;
  }
  .md\:w-6rem {
    width: 6rem !important;
  }
  .md\:w-7rem {
    width: 7rem !important;
  }
  .md\:w-8rem {
    width: 8rem !important;
  }
  .md\:w-9rem {
    width: 9rem !important;
  }
  .md\:w-10rem {
    width: 10rem !important;
  }
  .md\:w-11rem {
    width: 11rem !important;
  }
  .md\:w-12rem {
    width: 12rem !important;
  }
  .md\:w-13rem {
    width: 13rem !important;
  }
  .md\:w-14rem {
    width: 14rem !important;
  }
  .md\:w-15rem {
    width: 15rem !important;
  }
  .md\:w-16rem {
    width: 16rem !important;
  }
  .md\:w-17rem {
    width: 17rem !important;
  }
  .md\:w-18rem {
    width: 18rem !important;
  }
  .md\:w-19rem {
    width: 19rem !important;
  }
  .md\:w-20rem {
    width: 20rem !important;
  }
  .md\:w-21rem {
    width: 21rem !important;
  }
  .md\:w-22rem {
    width: 22rem !important;
  }
  .md\:w-23rem {
    width: 23rem !important;
  }
  .md\:w-24rem {
    width: 24rem !important;
  }
  .md\:w-25rem {
    width: 25rem !important;
  }
  .md\:w-26rem {
    width: 26rem !important;
  }
  .md\:w-27rem {
    width: 27rem !important;
  }
  .md\:w-28rem {
    width: 28rem !important;
  }
  .md\:w-29rem {
    width: 29rem !important;
  }
  .md\:w-30rem {
    width: 30rem !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:w-full {
    width: 100% !important;
  }
  .lg\:w-screen {
    width: 100vw !important;
  }
  .lg\:w-auto {
    width: auto !important;
  }
  .lg\:w-1 {
    width: 8.3333% !important;
  }
  .lg\:w-2 {
    width: 16.6667% !important;
  }
  .lg\:w-3 {
    width: 25% !important;
  }
  .lg\:w-4 {
    width: 33.3333% !important;
  }
  .lg\:w-5 {
    width: 41.6667% !important;
  }
  .lg\:w-6 {
    width: 50% !important;
  }
  .lg\:w-7 {
    width: 58.3333% !important;
  }
  .lg\:w-8 {
    width: 66.6667% !important;
  }
  .lg\:w-9 {
    width: 75% !important;
  }
  .lg\:w-10 {
    width: 83.3333% !important;
  }
  .lg\:w-11 {
    width: 91.6667% !important;
  }
  .lg\:w-12 {
    width: 100% !important;
  }
  .lg\:w-min {
    width: min-content !important;
  }
  .lg\:w-max {
    width: max-content !important;
  }
  .lg\:w-fit {
    width: fit-content !important;
  }
  .lg\:w-1rem {
    width: 1rem !important;
  }
  .lg\:w-2rem {
    width: 2rem !important;
  }
  .lg\:w-3rem {
    width: 3rem !important;
  }
  .lg\:w-4rem {
    width: 4rem !important;
  }
  .lg\:w-5rem {
    width: 5rem !important;
  }
  .lg\:w-6rem {
    width: 6rem !important;
  }
  .lg\:w-7rem {
    width: 7rem !important;
  }
  .lg\:w-8rem {
    width: 8rem !important;
  }
  .lg\:w-9rem {
    width: 9rem !important;
  }
  .lg\:w-10rem {
    width: 10rem !important;
  }
  .lg\:w-11rem {
    width: 11rem !important;
  }
  .lg\:w-12rem {
    width: 12rem !important;
  }
  .lg\:w-13rem {
    width: 13rem !important;
  }
  .lg\:w-14rem {
    width: 14rem !important;
  }
  .lg\:w-15rem {
    width: 15rem !important;
  }
  .lg\:w-16rem {
    width: 16rem !important;
  }
  .lg\:w-17rem {
    width: 17rem !important;
  }
  .lg\:w-18rem {
    width: 18rem !important;
  }
  .lg\:w-19rem {
    width: 19rem !important;
  }
  .lg\:w-20rem {
    width: 20rem !important;
  }
  .lg\:w-21rem {
    width: 21rem !important;
  }
  .lg\:w-22rem {
    width: 22rem !important;
  }
  .lg\:w-23rem {
    width: 23rem !important;
  }
  .lg\:w-24rem {
    width: 24rem !important;
  }
  .lg\:w-25rem {
    width: 25rem !important;
  }
  .lg\:w-26rem {
    width: 26rem !important;
  }
  .lg\:w-27rem {
    width: 27rem !important;
  }
  .lg\:w-28rem {
    width: 28rem !important;
  }
  .lg\:w-29rem {
    width: 29rem !important;
  }
  .lg\:w-30rem {
    width: 30rem !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:w-full {
    width: 100% !important;
  }
  .xl\:w-screen {
    width: 100vw !important;
  }
  .xl\:w-auto {
    width: auto !important;
  }
  .xl\:w-1 {
    width: 8.3333% !important;
  }
  .xl\:w-2 {
    width: 16.6667% !important;
  }
  .xl\:w-3 {
    width: 25% !important;
  }
  .xl\:w-4 {
    width: 33.3333% !important;
  }
  .xl\:w-5 {
    width: 41.6667% !important;
  }
  .xl\:w-6 {
    width: 50% !important;
  }
  .xl\:w-7 {
    width: 58.3333% !important;
  }
  .xl\:w-8 {
    width: 66.6667% !important;
  }
  .xl\:w-9 {
    width: 75% !important;
  }
  .xl\:w-10 {
    width: 83.3333% !important;
  }
  .xl\:w-11 {
    width: 91.6667% !important;
  }
  .xl\:w-12 {
    width: 100% !important;
  }
  .xl\:w-min {
    width: min-content !important;
  }
  .xl\:w-max {
    width: max-content !important;
  }
  .xl\:w-fit {
    width: fit-content !important;
  }
  .xl\:w-1rem {
    width: 1rem !important;
  }
  .xl\:w-2rem {
    width: 2rem !important;
  }
  .xl\:w-3rem {
    width: 3rem !important;
  }
  .xl\:w-4rem {
    width: 4rem !important;
  }
  .xl\:w-5rem {
    width: 5rem !important;
  }
  .xl\:w-6rem {
    width: 6rem !important;
  }
  .xl\:w-7rem {
    width: 7rem !important;
  }
  .xl\:w-8rem {
    width: 8rem !important;
  }
  .xl\:w-9rem {
    width: 9rem !important;
  }
  .xl\:w-10rem {
    width: 10rem !important;
  }
  .xl\:w-11rem {
    width: 11rem !important;
  }
  .xl\:w-12rem {
    width: 12rem !important;
  }
  .xl\:w-13rem {
    width: 13rem !important;
  }
  .xl\:w-14rem {
    width: 14rem !important;
  }
  .xl\:w-15rem {
    width: 15rem !important;
  }
  .xl\:w-16rem {
    width: 16rem !important;
  }
  .xl\:w-17rem {
    width: 17rem !important;
  }
  .xl\:w-18rem {
    width: 18rem !important;
  }
  .xl\:w-19rem {
    width: 19rem !important;
  }
  .xl\:w-20rem {
    width: 20rem !important;
  }
  .xl\:w-21rem {
    width: 21rem !important;
  }
  .xl\:w-22rem {
    width: 22rem !important;
  }
  .xl\:w-23rem {
    width: 23rem !important;
  }
  .xl\:w-24rem {
    width: 24rem !important;
  }
  .xl\:w-25rem {
    width: 25rem !important;
  }
  .xl\:w-26rem {
    width: 26rem !important;
  }
  .xl\:w-27rem {
    width: 27rem !important;
  }
  .xl\:w-28rem {
    width: 28rem !important;
  }
  .xl\:w-29rem {
    width: 29rem !important;
  }
  .xl\:w-30rem {
    width: 30rem !important;
  }
}
.h-full {
  height: 100% !important;
}

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

.h-auto {
  height: auto !important;
}

.h-min {
  height: min-content !important;
}

.h-max {
  height: max-content !important;
}

.h-fit {
  height: fit-content !important;
}

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

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

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

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

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

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

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

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

.h-9rem {
  height: 9rem !important;
}

.h-10rem {
  height: 10rem !important;
}

.h-11rem {
  height: 11rem !important;
}

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

.h-13rem {
  height: 13rem !important;
}

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

.h-15rem {
  height: 15rem !important;
}

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

.h-17rem {
  height: 17rem !important;
}

.h-18rem {
  height: 18rem !important;
}

.h-19rem {
  height: 19rem !important;
}

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

.h-21rem {
  height: 21rem !important;
}

.h-22rem {
  height: 22rem !important;
}

.h-23rem {
  height: 23rem !important;
}

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

.h-25rem {
  height: 25rem !important;
}

.h-26rem {
  height: 26rem !important;
}

.h-27rem {
  height: 27rem !important;
}

.h-28rem {
  height: 28rem !important;
}

.h-29rem {
  height: 29rem !important;
}

.h-30rem {
  height: 30rem !important;
}

@media screen and (min-width: 576px) {
  .sm\:h-full {
    height: 100% !important;
  }
  .sm\:h-screen {
    height: 100vh !important;
  }
  .sm\:h-auto {
    height: auto !important;
  }
  .sm\:h-min {
    height: min-content !important;
  }
  .sm\:h-max {
    height: max-content !important;
  }
  .sm\:h-fit {
    height: fit-content !important;
  }
  .sm\:h-1rem {
    height: 1rem !important;
  }
  .sm\:h-2rem {
    height: 2rem !important;
  }
  .sm\:h-3rem {
    height: 3rem !important;
  }
  .sm\:h-4rem {
    height: 4rem !important;
  }
  .sm\:h-5rem {
    height: 5rem !important;
  }
  .sm\:h-6rem {
    height: 6rem !important;
  }
  .sm\:h-7rem {
    height: 7rem !important;
  }
  .sm\:h-8rem {
    height: 8rem !important;
  }
  .sm\:h-9rem {
    height: 9rem !important;
  }
  .sm\:h-10rem {
    height: 10rem !important;
  }
  .sm\:h-11rem {
    height: 11rem !important;
  }
  .sm\:h-12rem {
    height: 12rem !important;
  }
  .sm\:h-13rem {
    height: 13rem !important;
  }
  .sm\:h-14rem {
    height: 14rem !important;
  }
  .sm\:h-15rem {
    height: 15rem !important;
  }
  .sm\:h-16rem {
    height: 16rem !important;
  }
  .sm\:h-17rem {
    height: 17rem !important;
  }
  .sm\:h-18rem {
    height: 18rem !important;
  }
  .sm\:h-19rem {
    height: 19rem !important;
  }
  .sm\:h-20rem {
    height: 20rem !important;
  }
  .sm\:h-21rem {
    height: 21rem !important;
  }
  .sm\:h-22rem {
    height: 22rem !important;
  }
  .sm\:h-23rem {
    height: 23rem !important;
  }
  .sm\:h-24rem {
    height: 24rem !important;
  }
  .sm\:h-25rem {
    height: 25rem !important;
  }
  .sm\:h-26rem {
    height: 26rem !important;
  }
  .sm\:h-27rem {
    height: 27rem !important;
  }
  .sm\:h-28rem {
    height: 28rem !important;
  }
  .sm\:h-29rem {
    height: 29rem !important;
  }
  .sm\:h-30rem {
    height: 30rem !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:h-full {
    height: 100% !important;
  }
  .md\:h-screen {
    height: 100vh !important;
  }
  .md\:h-auto {
    height: auto !important;
  }
  .md\:h-min {
    height: min-content !important;
  }
  .md\:h-max {
    height: max-content !important;
  }
  .md\:h-fit {
    height: fit-content !important;
  }
  .md\:h-1rem {
    height: 1rem !important;
  }
  .md\:h-2rem {
    height: 2rem !important;
  }
  .md\:h-3rem {
    height: 3rem !important;
  }
  .md\:h-4rem {
    height: 4rem !important;
  }
  .md\:h-5rem {
    height: 5rem !important;
  }
  .md\:h-6rem {
    height: 6rem !important;
  }
  .md\:h-7rem {
    height: 7rem !important;
  }
  .md\:h-8rem {
    height: 8rem !important;
  }
  .md\:h-9rem {
    height: 9rem !important;
  }
  .md\:h-10rem {
    height: 10rem !important;
  }
  .md\:h-11rem {
    height: 11rem !important;
  }
  .md\:h-12rem {
    height: 12rem !important;
  }
  .md\:h-13rem {
    height: 13rem !important;
  }
  .md\:h-14rem {
    height: 14rem !important;
  }
  .md\:h-15rem {
    height: 15rem !important;
  }
  .md\:h-16rem {
    height: 16rem !important;
  }
  .md\:h-17rem {
    height: 17rem !important;
  }
  .md\:h-18rem {
    height: 18rem !important;
  }
  .md\:h-19rem {
    height: 19rem !important;
  }
  .md\:h-20rem {
    height: 20rem !important;
  }
  .md\:h-21rem {
    height: 21rem !important;
  }
  .md\:h-22rem {
    height: 22rem !important;
  }
  .md\:h-23rem {
    height: 23rem !important;
  }
  .md\:h-24rem {
    height: 24rem !important;
  }
  .md\:h-25rem {
    height: 25rem !important;
  }
  .md\:h-26rem {
    height: 26rem !important;
  }
  .md\:h-27rem {
    height: 27rem !important;
  }
  .md\:h-28rem {
    height: 28rem !important;
  }
  .md\:h-29rem {
    height: 29rem !important;
  }
  .md\:h-30rem {
    height: 30rem !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:h-full {
    height: 100% !important;
  }
  .lg\:h-screen {
    height: 100vh !important;
  }
  .lg\:h-auto {
    height: auto !important;
  }
  .lg\:h-min {
    height: min-content !important;
  }
  .lg\:h-max {
    height: max-content !important;
  }
  .lg\:h-fit {
    height: fit-content !important;
  }
  .lg\:h-1rem {
    height: 1rem !important;
  }
  .lg\:h-2rem {
    height: 2rem !important;
  }
  .lg\:h-3rem {
    height: 3rem !important;
  }
  .lg\:h-4rem {
    height: 4rem !important;
  }
  .lg\:h-5rem {
    height: 5rem !important;
  }
  .lg\:h-6rem {
    height: 6rem !important;
  }
  .lg\:h-7rem {
    height: 7rem !important;
  }
  .lg\:h-8rem {
    height: 8rem !important;
  }
  .lg\:h-9rem {
    height: 9rem !important;
  }
  .lg\:h-10rem {
    height: 10rem !important;
  }
  .lg\:h-11rem {
    height: 11rem !important;
  }
  .lg\:h-12rem {
    height: 12rem !important;
  }
  .lg\:h-13rem {
    height: 13rem !important;
  }
  .lg\:h-14rem {
    height: 14rem !important;
  }
  .lg\:h-15rem {
    height: 15rem !important;
  }
  .lg\:h-16rem {
    height: 16rem !important;
  }
  .lg\:h-17rem {
    height: 17rem !important;
  }
  .lg\:h-18rem {
    height: 18rem !important;
  }
  .lg\:h-19rem {
    height: 19rem !important;
  }
  .lg\:h-20rem {
    height: 20rem !important;
  }
  .lg\:h-21rem {
    height: 21rem !important;
  }
  .lg\:h-22rem {
    height: 22rem !important;
  }
  .lg\:h-23rem {
    height: 23rem !important;
  }
  .lg\:h-24rem {
    height: 24rem !important;
  }
  .lg\:h-25rem {
    height: 25rem !important;
  }
  .lg\:h-26rem {
    height: 26rem !important;
  }
  .lg\:h-27rem {
    height: 27rem !important;
  }
  .lg\:h-28rem {
    height: 28rem !important;
  }
  .lg\:h-29rem {
    height: 29rem !important;
  }
  .lg\:h-30rem {
    height: 30rem !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:h-full {
    height: 100% !important;
  }
  .xl\:h-screen {
    height: 100vh !important;
  }
  .xl\:h-auto {
    height: auto !important;
  }
  .xl\:h-min {
    height: min-content !important;
  }
  .xl\:h-max {
    height: max-content !important;
  }
  .xl\:h-fit {
    height: fit-content !important;
  }
  .xl\:h-1rem {
    height: 1rem !important;
  }
  .xl\:h-2rem {
    height: 2rem !important;
  }
  .xl\:h-3rem {
    height: 3rem !important;
  }
  .xl\:h-4rem {
    height: 4rem !important;
  }
  .xl\:h-5rem {
    height: 5rem !important;
  }
  .xl\:h-6rem {
    height: 6rem !important;
  }
  .xl\:h-7rem {
    height: 7rem !important;
  }
  .xl\:h-8rem {
    height: 8rem !important;
  }
  .xl\:h-9rem {
    height: 9rem !important;
  }
  .xl\:h-10rem {
    height: 10rem !important;
  }
  .xl\:h-11rem {
    height: 11rem !important;
  }
  .xl\:h-12rem {
    height: 12rem !important;
  }
  .xl\:h-13rem {
    height: 13rem !important;
  }
  .xl\:h-14rem {
    height: 14rem !important;
  }
  .xl\:h-15rem {
    height: 15rem !important;
  }
  .xl\:h-16rem {
    height: 16rem !important;
  }
  .xl\:h-17rem {
    height: 17rem !important;
  }
  .xl\:h-18rem {
    height: 18rem !important;
  }
  .xl\:h-19rem {
    height: 19rem !important;
  }
  .xl\:h-20rem {
    height: 20rem !important;
  }
  .xl\:h-21rem {
    height: 21rem !important;
  }
  .xl\:h-22rem {
    height: 22rem !important;
  }
  .xl\:h-23rem {
    height: 23rem !important;
  }
  .xl\:h-24rem {
    height: 24rem !important;
  }
  .xl\:h-25rem {
    height: 25rem !important;
  }
  .xl\:h-26rem {
    height: 26rem !important;
  }
  .xl\:h-27rem {
    height: 27rem !important;
  }
  .xl\:h-28rem {
    height: 28rem !important;
  }
  .xl\:h-29rem {
    height: 29rem !important;
  }
  .xl\:h-30rem {
    height: 30rem !important;
  }
}
.min-w-0 {
  min-width: 0px !important;
}

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

.min-w-screen {
  min-width: 100vw !important;
}

.min-w-min {
  min-width: min-content !important;
}

.min-w-max {
  min-width: max-content !important;
}

@media screen and (min-width: 576px) {
  .sm\:min-w-0 {
    min-width: 0px !important;
  }
  .sm\:min-w-full {
    min-width: 100% !important;
  }
  .sm\:min-w-screen {
    min-width: 100vw !important;
  }
  .sm\:min-w-min {
    min-width: min-content !important;
  }
  .sm\:min-w-max {
    min-width: max-content !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:min-w-0 {
    min-width: 0px !important;
  }
  .md\:min-w-full {
    min-width: 100% !important;
  }
  .md\:min-w-screen {
    min-width: 100vw !important;
  }
  .md\:min-w-min {
    min-width: min-content !important;
  }
  .md\:min-w-max {
    min-width: max-content !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:min-w-0 {
    min-width: 0px !important;
  }
  .lg\:min-w-full {
    min-width: 100% !important;
  }
  .lg\:min-w-screen {
    min-width: 100vw !important;
  }
  .lg\:min-w-min {
    min-width: min-content !important;
  }
  .lg\:min-w-max {
    min-width: max-content !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:min-w-0 {
    min-width: 0px !important;
  }
  .xl\:min-w-full {
    min-width: 100% !important;
  }
  .xl\:min-w-screen {
    min-width: 100vw !important;
  }
  .xl\:min-w-min {
    min-width: min-content !important;
  }
  .xl\:min-w-max {
    min-width: max-content !important;
  }
}
.max-w-0 {
  max-width: 0px !important;
}

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

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

.max-w-min {
  max-width: min-content !important;
}

.max-w-max {
  max-width: max-content !important;
}

.max-w-fit {
  max-width: fit-content !important;
}

.max-w-1rem {
  max-width: 1rem !important;
}

.max-w-2rem {
  max-width: 2rem !important;
}

.max-w-3rem {
  max-width: 3rem !important;
}

.max-w-4rem {
  max-width: 4rem !important;
}

.max-w-5rem {
  max-width: 5rem !important;
}

.max-w-6rem {
  max-width: 6rem !important;
}

.max-w-7rem {
  max-width: 7rem !important;
}

.max-w-8rem {
  max-width: 8rem !important;
}

.max-w-9rem {
  max-width: 9rem !important;
}

.max-w-10rem {
  max-width: 10rem !important;
}

.max-w-11rem {
  max-width: 11rem !important;
}

.max-w-12rem {
  max-width: 12rem !important;
}

.max-w-13rem {
  max-width: 13rem !important;
}

.max-w-14rem {
  max-width: 14rem !important;
}

.max-w-15rem {
  max-width: 15rem !important;
}

.max-w-16rem {
  max-width: 16rem !important;
}

.max-w-17rem {
  max-width: 17rem !important;
}

.max-w-18rem {
  max-width: 18rem !important;
}

.max-w-19rem {
  max-width: 19rem !important;
}

.max-w-20rem {
  max-width: 20rem !important;
}

.max-w-21rem {
  max-width: 21rem !important;
}

.max-w-22rem {
  max-width: 22rem !important;
}

.max-w-23rem {
  max-width: 23rem !important;
}

.max-w-24rem {
  max-width: 24rem !important;
}

.max-w-25rem {
  max-width: 25rem !important;
}

.max-w-26rem {
  max-width: 26rem !important;
}

.max-w-27rem {
  max-width: 27rem !important;
}

.max-w-28rem {
  max-width: 28rem !important;
}

.max-w-29rem {
  max-width: 29rem !important;
}

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

@media screen and (min-width: 576px) {
  .sm\:max-w-0 {
    max-width: 0px !important;
  }
  .sm\:max-w-full {
    max-width: 100% !important;
  }
  .sm\:max-w-screen {
    max-width: 100vw !important;
  }
  .sm\:max-w-min {
    max-width: min-content !important;
  }
  .sm\:max-w-max {
    max-width: max-content !important;
  }
  .sm\:max-w-fit {
    max-width: fit-content !important;
  }
  .sm\:max-w-1rem {
    max-width: 1rem !important;
  }
  .sm\:max-w-2rem {
    max-width: 2rem !important;
  }
  .sm\:max-w-3rem {
    max-width: 3rem !important;
  }
  .sm\:max-w-4rem {
    max-width: 4rem !important;
  }
  .sm\:max-w-5rem {
    max-width: 5rem !important;
  }
  .sm\:max-w-6rem {
    max-width: 6rem !important;
  }
  .sm\:max-w-7rem {
    max-width: 7rem !important;
  }
  .sm\:max-w-8rem {
    max-width: 8rem !important;
  }
  .sm\:max-w-9rem {
    max-width: 9rem !important;
  }
  .sm\:max-w-10rem {
    max-width: 10rem !important;
  }
  .sm\:max-w-11rem {
    max-width: 11rem !important;
  }
  .sm\:max-w-12rem {
    max-width: 12rem !important;
  }
  .sm\:max-w-13rem {
    max-width: 13rem !important;
  }
  .sm\:max-w-14rem {
    max-width: 14rem !important;
  }
  .sm\:max-w-15rem {
    max-width: 15rem !important;
  }
  .sm\:max-w-16rem {
    max-width: 16rem !important;
  }
  .sm\:max-w-17rem {
    max-width: 17rem !important;
  }
  .sm\:max-w-18rem {
    max-width: 18rem !important;
  }
  .sm\:max-w-19rem {
    max-width: 19rem !important;
  }
  .sm\:max-w-20rem {
    max-width: 20rem !important;
  }
  .sm\:max-w-21rem {
    max-width: 21rem !important;
  }
  .sm\:max-w-22rem {
    max-width: 22rem !important;
  }
  .sm\:max-w-23rem {
    max-width: 23rem !important;
  }
  .sm\:max-w-24rem {
    max-width: 24rem !important;
  }
  .sm\:max-w-25rem {
    max-width: 25rem !important;
  }
  .sm\:max-w-26rem {
    max-width: 26rem !important;
  }
  .sm\:max-w-27rem {
    max-width: 27rem !important;
  }
  .sm\:max-w-28rem {
    max-width: 28rem !important;
  }
  .sm\:max-w-29rem {
    max-width: 29rem !important;
  }
  .sm\:max-w-30rem {
    max-width: 30rem !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:max-w-0 {
    max-width: 0px !important;
  }
  .md\:max-w-full {
    max-width: 100% !important;
  }
  .md\:max-w-screen {
    max-width: 100vw !important;
  }
  .md\:max-w-min {
    max-width: min-content !important;
  }
  .md\:max-w-max {
    max-width: max-content !important;
  }
  .md\:max-w-fit {
    max-width: fit-content !important;
  }
  .md\:max-w-1rem {
    max-width: 1rem !important;
  }
  .md\:max-w-2rem {
    max-width: 2rem !important;
  }
  .md\:max-w-3rem {
    max-width: 3rem !important;
  }
  .md\:max-w-4rem {
    max-width: 4rem !important;
  }
  .md\:max-w-5rem {
    max-width: 5rem !important;
  }
  .md\:max-w-6rem {
    max-width: 6rem !important;
  }
  .md\:max-w-7rem {
    max-width: 7rem !important;
  }
  .md\:max-w-8rem {
    max-width: 8rem !important;
  }
  .md\:max-w-9rem {
    max-width: 9rem !important;
  }
  .md\:max-w-10rem {
    max-width: 10rem !important;
  }
  .md\:max-w-11rem {
    max-width: 11rem !important;
  }
  .md\:max-w-12rem {
    max-width: 12rem !important;
  }
  .md\:max-w-13rem {
    max-width: 13rem !important;
  }
  .md\:max-w-14rem {
    max-width: 14rem !important;
  }
  .md\:max-w-15rem {
    max-width: 15rem !important;
  }
  .md\:max-w-16rem {
    max-width: 16rem !important;
  }
  .md\:max-w-17rem {
    max-width: 17rem !important;
  }
  .md\:max-w-18rem {
    max-width: 18rem !important;
  }
  .md\:max-w-19rem {
    max-width: 19rem !important;
  }
  .md\:max-w-20rem {
    max-width: 20rem !important;
  }
  .md\:max-w-21rem {
    max-width: 21rem !important;
  }
  .md\:max-w-22rem {
    max-width: 22rem !important;
  }
  .md\:max-w-23rem {
    max-width: 23rem !important;
  }
  .md\:max-w-24rem {
    max-width: 24rem !important;
  }
  .md\:max-w-25rem {
    max-width: 25rem !important;
  }
  .md\:max-w-26rem {
    max-width: 26rem !important;
  }
  .md\:max-w-27rem {
    max-width: 27rem !important;
  }
  .md\:max-w-28rem {
    max-width: 28rem !important;
  }
  .md\:max-w-29rem {
    max-width: 29rem !important;
  }
  .md\:max-w-30rem {
    max-width: 30rem !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:max-w-0 {
    max-width: 0px !important;
  }
  .lg\:max-w-full {
    max-width: 100% !important;
  }
  .lg\:max-w-screen {
    max-width: 100vw !important;
  }
  .lg\:max-w-min {
    max-width: min-content !important;
  }
  .lg\:max-w-max {
    max-width: max-content !important;
  }
  .lg\:max-w-fit {
    max-width: fit-content !important;
  }
  .lg\:max-w-1rem {
    max-width: 1rem !important;
  }
  .lg\:max-w-2rem {
    max-width: 2rem !important;
  }
  .lg\:max-w-3rem {
    max-width: 3rem !important;
  }
  .lg\:max-w-4rem {
    max-width: 4rem !important;
  }
  .lg\:max-w-5rem {
    max-width: 5rem !important;
  }
  .lg\:max-w-6rem {
    max-width: 6rem !important;
  }
  .lg\:max-w-7rem {
    max-width: 7rem !important;
  }
  .lg\:max-w-8rem {
    max-width: 8rem !important;
  }
  .lg\:max-w-9rem {
    max-width: 9rem !important;
  }
  .lg\:max-w-10rem {
    max-width: 10rem !important;
  }
  .lg\:max-w-11rem {
    max-width: 11rem !important;
  }
  .lg\:max-w-12rem {
    max-width: 12rem !important;
  }
  .lg\:max-w-13rem {
    max-width: 13rem !important;
  }
  .lg\:max-w-14rem {
    max-width: 14rem !important;
  }
  .lg\:max-w-15rem {
    max-width: 15rem !important;
  }
  .lg\:max-w-16rem {
    max-width: 16rem !important;
  }
  .lg\:max-w-17rem {
    max-width: 17rem !important;
  }
  .lg\:max-w-18rem {
    max-width: 18rem !important;
  }
  .lg\:max-w-19rem {
    max-width: 19rem !important;
  }
  .lg\:max-w-20rem {
    max-width: 20rem !important;
  }
  .lg\:max-w-21rem {
    max-width: 21rem !important;
  }
  .lg\:max-w-22rem {
    max-width: 22rem !important;
  }
  .lg\:max-w-23rem {
    max-width: 23rem !important;
  }
  .lg\:max-w-24rem {
    max-width: 24rem !important;
  }
  .lg\:max-w-25rem {
    max-width: 25rem !important;
  }
  .lg\:max-w-26rem {
    max-width: 26rem !important;
  }
  .lg\:max-w-27rem {
    max-width: 27rem !important;
  }
  .lg\:max-w-28rem {
    max-width: 28rem !important;
  }
  .lg\:max-w-29rem {
    max-width: 29rem !important;
  }
  .lg\:max-w-30rem {
    max-width: 30rem !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:max-w-0 {
    max-width: 0px !important;
  }
  .xl\:max-w-full {
    max-width: 100% !important;
  }
  .xl\:max-w-screen {
    max-width: 100vw !important;
  }
  .xl\:max-w-min {
    max-width: min-content !important;
  }
  .xl\:max-w-max {
    max-width: max-content !important;
  }
  .xl\:max-w-fit {
    max-width: fit-content !important;
  }
  .xl\:max-w-1rem {
    max-width: 1rem !important;
  }
  .xl\:max-w-2rem {
    max-width: 2rem !important;
  }
  .xl\:max-w-3rem {
    max-width: 3rem !important;
  }
  .xl\:max-w-4rem {
    max-width: 4rem !important;
  }
  .xl\:max-w-5rem {
    max-width: 5rem !important;
  }
  .xl\:max-w-6rem {
    max-width: 6rem !important;
  }
  .xl\:max-w-7rem {
    max-width: 7rem !important;
  }
  .xl\:max-w-8rem {
    max-width: 8rem !important;
  }
  .xl\:max-w-9rem {
    max-width: 9rem !important;
  }
  .xl\:max-w-10rem {
    max-width: 10rem !important;
  }
  .xl\:max-w-11rem {
    max-width: 11rem !important;
  }
  .xl\:max-w-12rem {
    max-width: 12rem !important;
  }
  .xl\:max-w-13rem {
    max-width: 13rem !important;
  }
  .xl\:max-w-14rem {
    max-width: 14rem !important;
  }
  .xl\:max-w-15rem {
    max-width: 15rem !important;
  }
  .xl\:max-w-16rem {
    max-width: 16rem !important;
  }
  .xl\:max-w-17rem {
    max-width: 17rem !important;
  }
  .xl\:max-w-18rem {
    max-width: 18rem !important;
  }
  .xl\:max-w-19rem {
    max-width: 19rem !important;
  }
  .xl\:max-w-20rem {
    max-width: 20rem !important;
  }
  .xl\:max-w-21rem {
    max-width: 21rem !important;
  }
  .xl\:max-w-22rem {
    max-width: 22rem !important;
  }
  .xl\:max-w-23rem {
    max-width: 23rem !important;
  }
  .xl\:max-w-24rem {
    max-width: 24rem !important;
  }
  .xl\:max-w-25rem {
    max-width: 25rem !important;
  }
  .xl\:max-w-26rem {
    max-width: 26rem !important;
  }
  .xl\:max-w-27rem {
    max-width: 27rem !important;
  }
  .xl\:max-w-28rem {
    max-width: 28rem !important;
  }
  .xl\:max-w-29rem {
    max-width: 29rem !important;
  }
  .xl\:max-w-30rem {
    max-width: 30rem !important;
  }
}
.min-h-0 {
  min-height: 0px !important;
}

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

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

@media screen and (min-width: 576px) {
  .sm\:min-h-0 {
    min-height: 0px !important;
  }
  .sm\:min-h-full {
    min-height: 100% !important;
  }
  .sm\:min-h-screen {
    min-height: 100vh !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:min-h-0 {
    min-height: 0px !important;
  }
  .md\:min-h-full {
    min-height: 100% !important;
  }
  .md\:min-h-screen {
    min-height: 100vh !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:min-h-0 {
    min-height: 0px !important;
  }
  .lg\:min-h-full {
    min-height: 100% !important;
  }
  .lg\:min-h-screen {
    min-height: 100vh !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:min-h-0 {
    min-height: 0px !important;
  }
  .xl\:min-h-full {
    min-height: 100% !important;
  }
  .xl\:min-h-screen {
    min-height: 100vh !important;
  }
}
.max-h-0 {
  max-height: 0px !important;
}

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

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

.max-h-min {
  max-height: min-content !important;
}

.max-h-max {
  max-height: max-content !important;
}

.max-h-fit {
  max-height: fit-content !important;
}

.max-h-1rem {
  max-height: 1rem !important;
}

.max-h-2rem {
  max-height: 2rem !important;
}

.max-h-3rem {
  max-height: 3rem !important;
}

.max-h-4rem {
  max-height: 4rem !important;
}

.max-h-5rem {
  max-height: 5rem !important;
}

.max-h-6rem {
  max-height: 6rem !important;
}

.max-h-7rem {
  max-height: 7rem !important;
}

.max-h-8rem {
  max-height: 8rem !important;
}

.max-h-9rem {
  max-height: 9rem !important;
}

.max-h-10rem {
  max-height: 10rem !important;
}

.max-h-11rem {
  max-height: 11rem !important;
}

.max-h-12rem {
  max-height: 12rem !important;
}

.max-h-13rem {
  max-height: 13rem !important;
}

.max-h-14rem {
  max-height: 14rem !important;
}

.max-h-15rem {
  max-height: 15rem !important;
}

.max-h-16rem {
  max-height: 16rem !important;
}

.max-h-17rem {
  max-height: 17rem !important;
}

.max-h-18rem {
  max-height: 18rem !important;
}

.max-h-19rem {
  max-height: 19rem !important;
}

.max-h-20rem {
  max-height: 20rem !important;
}

.max-h-21rem {
  max-height: 21rem !important;
}

.max-h-22rem {
  max-height: 22rem !important;
}

.max-h-23rem {
  max-height: 23rem !important;
}

.max-h-24rem {
  max-height: 24rem !important;
}

.max-h-25rem {
  max-height: 25rem !important;
}

.max-h-26rem {
  max-height: 26rem !important;
}

.max-h-27rem {
  max-height: 27rem !important;
}

.max-h-28rem {
  max-height: 28rem !important;
}

.max-h-29rem {
  max-height: 29rem !important;
}

.max-h-30rem {
  max-height: 30rem !important;
}

@media screen and (min-width: 576px) {
  .sm\:max-h-0 {
    max-height: 0px !important;
  }
  .sm\:max-h-full {
    max-height: 100% !important;
  }
  .sm\:max-h-screen {
    max-height: 100vh !important;
  }
  .sm\:max-h-min {
    max-height: min-content !important;
  }
  .sm\:max-h-max {
    max-height: max-content !important;
  }
  .sm\:max-h-fit {
    max-height: fit-content !important;
  }
  .sm\:max-h-1rem {
    max-height: 1rem !important;
  }
  .sm\:max-h-2rem {
    max-height: 2rem !important;
  }
  .sm\:max-h-3rem {
    max-height: 3rem !important;
  }
  .sm\:max-h-4rem {
    max-height: 4rem !important;
  }
  .sm\:max-h-5rem {
    max-height: 5rem !important;
  }
  .sm\:max-h-6rem {
    max-height: 6rem !important;
  }
  .sm\:max-h-7rem {
    max-height: 7rem !important;
  }
  .sm\:max-h-8rem {
    max-height: 8rem !important;
  }
  .sm\:max-h-9rem {
    max-height: 9rem !important;
  }
  .sm\:max-h-10rem {
    max-height: 10rem !important;
  }
  .sm\:max-h-11rem {
    max-height: 11rem !important;
  }
  .sm\:max-h-12rem {
    max-height: 12rem !important;
  }
  .sm\:max-h-13rem {
    max-height: 13rem !important;
  }
  .sm\:max-h-14rem {
    max-height: 14rem !important;
  }
  .sm\:max-h-15rem {
    max-height: 15rem !important;
  }
  .sm\:max-h-16rem {
    max-height: 16rem !important;
  }
  .sm\:max-h-17rem {
    max-height: 17rem !important;
  }
  .sm\:max-h-18rem {
    max-height: 18rem !important;
  }
  .sm\:max-h-19rem {
    max-height: 19rem !important;
  }
  .sm\:max-h-20rem {
    max-height: 20rem !important;
  }
  .sm\:max-h-21rem {
    max-height: 21rem !important;
  }
  .sm\:max-h-22rem {
    max-height: 22rem !important;
  }
  .sm\:max-h-23rem {
    max-height: 23rem !important;
  }
  .sm\:max-h-24rem {
    max-height: 24rem !important;
  }
  .sm\:max-h-25rem {
    max-height: 25rem !important;
  }
  .sm\:max-h-26rem {
    max-height: 26rem !important;
  }
  .sm\:max-h-27rem {
    max-height: 27rem !important;
  }
  .sm\:max-h-28rem {
    max-height: 28rem !important;
  }
  .sm\:max-h-29rem {
    max-height: 29rem !important;
  }
  .sm\:max-h-30rem {
    max-height: 30rem !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:max-h-0 {
    max-height: 0px !important;
  }
  .md\:max-h-full {
    max-height: 100% !important;
  }
  .md\:max-h-screen {
    max-height: 100vh !important;
  }
  .md\:max-h-min {
    max-height: min-content !important;
  }
  .md\:max-h-max {
    max-height: max-content !important;
  }
  .md\:max-h-fit {
    max-height: fit-content !important;
  }
  .md\:max-h-1rem {
    max-height: 1rem !important;
  }
  .md\:max-h-2rem {
    max-height: 2rem !important;
  }
  .md\:max-h-3rem {
    max-height: 3rem !important;
  }
  .md\:max-h-4rem {
    max-height: 4rem !important;
  }
  .md\:max-h-5rem {
    max-height: 5rem !important;
  }
  .md\:max-h-6rem {
    max-height: 6rem !important;
  }
  .md\:max-h-7rem {
    max-height: 7rem !important;
  }
  .md\:max-h-8rem {
    max-height: 8rem !important;
  }
  .md\:max-h-9rem {
    max-height: 9rem !important;
  }
  .md\:max-h-10rem {
    max-height: 10rem !important;
  }
  .md\:max-h-11rem {
    max-height: 11rem !important;
  }
  .md\:max-h-12rem {
    max-height: 12rem !important;
  }
  .md\:max-h-13rem {
    max-height: 13rem !important;
  }
  .md\:max-h-14rem {
    max-height: 14rem !important;
  }
  .md\:max-h-15rem {
    max-height: 15rem !important;
  }
  .md\:max-h-16rem {
    max-height: 16rem !important;
  }
  .md\:max-h-17rem {
    max-height: 17rem !important;
  }
  .md\:max-h-18rem {
    max-height: 18rem !important;
  }
  .md\:max-h-19rem {
    max-height: 19rem !important;
  }
  .md\:max-h-20rem {
    max-height: 20rem !important;
  }
  .md\:max-h-21rem {
    max-height: 21rem !important;
  }
  .md\:max-h-22rem {
    max-height: 22rem !important;
  }
  .md\:max-h-23rem {
    max-height: 23rem !important;
  }
  .md\:max-h-24rem {
    max-height: 24rem !important;
  }
  .md\:max-h-25rem {
    max-height: 25rem !important;
  }
  .md\:max-h-26rem {
    max-height: 26rem !important;
  }
  .md\:max-h-27rem {
    max-height: 27rem !important;
  }
  .md\:max-h-28rem {
    max-height: 28rem !important;
  }
  .md\:max-h-29rem {
    max-height: 29rem !important;
  }
  .md\:max-h-30rem {
    max-height: 30rem !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:max-h-0 {
    max-height: 0px !important;
  }
  .lg\:max-h-full {
    max-height: 100% !important;
  }
  .lg\:max-h-screen {
    max-height: 100vh !important;
  }
  .lg\:max-h-min {
    max-height: min-content !important;
  }
  .lg\:max-h-max {
    max-height: max-content !important;
  }
  .lg\:max-h-fit {
    max-height: fit-content !important;
  }
  .lg\:max-h-1rem {
    max-height: 1rem !important;
  }
  .lg\:max-h-2rem {
    max-height: 2rem !important;
  }
  .lg\:max-h-3rem {
    max-height: 3rem !important;
  }
  .lg\:max-h-4rem {
    max-height: 4rem !important;
  }
  .lg\:max-h-5rem {
    max-height: 5rem !important;
  }
  .lg\:max-h-6rem {
    max-height: 6rem !important;
  }
  .lg\:max-h-7rem {
    max-height: 7rem !important;
  }
  .lg\:max-h-8rem {
    max-height: 8rem !important;
  }
  .lg\:max-h-9rem {
    max-height: 9rem !important;
  }
  .lg\:max-h-10rem {
    max-height: 10rem !important;
  }
  .lg\:max-h-11rem {
    max-height: 11rem !important;
  }
  .lg\:max-h-12rem {
    max-height: 12rem !important;
  }
  .lg\:max-h-13rem {
    max-height: 13rem !important;
  }
  .lg\:max-h-14rem {
    max-height: 14rem !important;
  }
  .lg\:max-h-15rem {
    max-height: 15rem !important;
  }
  .lg\:max-h-16rem {
    max-height: 16rem !important;
  }
  .lg\:max-h-17rem {
    max-height: 17rem !important;
  }
  .lg\:max-h-18rem {
    max-height: 18rem !important;
  }
  .lg\:max-h-19rem {
    max-height: 19rem !important;
  }
  .lg\:max-h-20rem {
    max-height: 20rem !important;
  }
  .lg\:max-h-21rem {
    max-height: 21rem !important;
  }
  .lg\:max-h-22rem {
    max-height: 22rem !important;
  }
  .lg\:max-h-23rem {
    max-height: 23rem !important;
  }
  .lg\:max-h-24rem {
    max-height: 24rem !important;
  }
  .lg\:max-h-25rem {
    max-height: 25rem !important;
  }
  .lg\:max-h-26rem {
    max-height: 26rem !important;
  }
  .lg\:max-h-27rem {
    max-height: 27rem !important;
  }
  .lg\:max-h-28rem {
    max-height: 28rem !important;
  }
  .lg\:max-h-29rem {
    max-height: 29rem !important;
  }
  .lg\:max-h-30rem {
    max-height: 30rem !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:max-h-0 {
    max-height: 0px !important;
  }
  .xl\:max-h-full {
    max-height: 100% !important;
  }
  .xl\:max-h-screen {
    max-height: 100vh !important;
  }
  .xl\:max-h-min {
    max-height: min-content !important;
  }
  .xl\:max-h-max {
    max-height: max-content !important;
  }
  .xl\:max-h-fit {
    max-height: fit-content !important;
  }
  .xl\:max-h-1rem {
    max-height: 1rem !important;
  }
  .xl\:max-h-2rem {
    max-height: 2rem !important;
  }
  .xl\:max-h-3rem {
    max-height: 3rem !important;
  }
  .xl\:max-h-4rem {
    max-height: 4rem !important;
  }
  .xl\:max-h-5rem {
    max-height: 5rem !important;
  }
  .xl\:max-h-6rem {
    max-height: 6rem !important;
  }
  .xl\:max-h-7rem {
    max-height: 7rem !important;
  }
  .xl\:max-h-8rem {
    max-height: 8rem !important;
  }
  .xl\:max-h-9rem {
    max-height: 9rem !important;
  }
  .xl\:max-h-10rem {
    max-height: 10rem !important;
  }
  .xl\:max-h-11rem {
    max-height: 11rem !important;
  }
  .xl\:max-h-12rem {
    max-height: 12rem !important;
  }
  .xl\:max-h-13rem {
    max-height: 13rem !important;
  }
  .xl\:max-h-14rem {
    max-height: 14rem !important;
  }
  .xl\:max-h-15rem {
    max-height: 15rem !important;
  }
  .xl\:max-h-16rem {
    max-height: 16rem !important;
  }
  .xl\:max-h-17rem {
    max-height: 17rem !important;
  }
  .xl\:max-h-18rem {
    max-height: 18rem !important;
  }
  .xl\:max-h-19rem {
    max-height: 19rem !important;
  }
  .xl\:max-h-20rem {
    max-height: 20rem !important;
  }
  .xl\:max-h-21rem {
    max-height: 21rem !important;
  }
  .xl\:max-h-22rem {
    max-height: 22rem !important;
  }
  .xl\:max-h-23rem {
    max-height: 23rem !important;
  }
  .xl\:max-h-24rem {
    max-height: 24rem !important;
  }
  .xl\:max-h-25rem {
    max-height: 25rem !important;
  }
  .xl\:max-h-26rem {
    max-height: 26rem !important;
  }
  .xl\:max-h-27rem {
    max-height: 27rem !important;
  }
  .xl\:max-h-28rem {
    max-height: 28rem !important;
  }
  .xl\:max-h-29rem {
    max-height: 29rem !important;
  }
  .xl\:max-h-30rem {
    max-height: 30rem !important;
  }
}
.static {
  position: static !important;
}

.fixed {
  position: fixed !important;
}

.absolute {
  position: absolute !important;
}

.relative {
  position: relative !important;
}

.sticky {
  position: sticky !important;
}

@media screen and (min-width: 576px) {
  .sm\:static {
    position: static !important;
  }
  .sm\:fixed {
    position: fixed !important;
  }
  .sm\:absolute {
    position: absolute !important;
  }
  .sm\:relative {
    position: relative !important;
  }
  .sm\:sticky {
    position: sticky !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:static {
    position: static !important;
  }
  .md\:fixed {
    position: fixed !important;
  }
  .md\:absolute {
    position: absolute !important;
  }
  .md\:relative {
    position: relative !important;
  }
  .md\:sticky {
    position: sticky !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:static {
    position: static !important;
  }
  .lg\:fixed {
    position: fixed !important;
  }
  .lg\:absolute {
    position: absolute !important;
  }
  .lg\:relative {
    position: relative !important;
  }
  .lg\:sticky {
    position: sticky !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:static {
    position: static !important;
  }
  .xl\:fixed {
    position: fixed !important;
  }
  .xl\:absolute {
    position: absolute !important;
  }
  .xl\:relative {
    position: relative !important;
  }
  .xl\:sticky {
    position: sticky !important;
  }
}
.top-auto {
  top: auto !important;
}

.top-0 {
  top: 0px !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

@media screen and (min-width: 576px) {
  .sm\:top-auto {
    top: auto !important;
  }
  .sm\:top-0 {
    top: 0px !important;
  }
  .sm\:top-50 {
    top: 50% !important;
  }
  .sm\:top-100 {
    top: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:top-auto {
    top: auto !important;
  }
  .md\:top-0 {
    top: 0px !important;
  }
  .md\:top-50 {
    top: 50% !important;
  }
  .md\:top-100 {
    top: 100% !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:top-auto {
    top: auto !important;
  }
  .lg\:top-0 {
    top: 0px !important;
  }
  .lg\:top-50 {
    top: 50% !important;
  }
  .lg\:top-100 {
    top: 100% !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:top-auto {
    top: auto !important;
  }
  .xl\:top-0 {
    top: 0px !important;
  }
  .xl\:top-50 {
    top: 50% !important;
  }
  .xl\:top-100 {
    top: 100% !important;
  }
}
.left-auto {
  left: auto !important;
}

.left-0 {
  left: 0px !important;
}

.left-50 {
  left: 50% !important;
}

.left-100 {
  left: 100% !important;
}

@media screen and (min-width: 576px) {
  .sm\:left-auto {
    left: auto !important;
  }
  .sm\:left-0 {
    left: 0px !important;
  }
  .sm\:left-50 {
    left: 50% !important;
  }
  .sm\:left-100 {
    left: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:left-auto {
    left: auto !important;
  }
  .md\:left-0 {
    left: 0px !important;
  }
  .md\:left-50 {
    left: 50% !important;
  }
  .md\:left-100 {
    left: 100% !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:left-auto {
    left: auto !important;
  }
  .lg\:left-0 {
    left: 0px !important;
  }
  .lg\:left-50 {
    left: 50% !important;
  }
  .lg\:left-100 {
    left: 100% !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:left-auto {
    left: auto !important;
  }
  .xl\:left-0 {
    left: 0px !important;
  }
  .xl\:left-50 {
    left: 50% !important;
  }
  .xl\:left-100 {
    left: 100% !important;
  }
}
.right-auto {
  right: auto !important;
}

.right-0 {
  right: 0px !important;
}

.right-50 {
  right: 50% !important;
}

.right-100 {
  right: 100% !important;
}

@media screen and (min-width: 576px) {
  .sm\:right-auto {
    right: auto !important;
  }
  .sm\:right-0 {
    right: 0px !important;
  }
  .sm\:right-50 {
    right: 50% !important;
  }
  .sm\:right-100 {
    right: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:right-auto {
    right: auto !important;
  }
  .md\:right-0 {
    right: 0px !important;
  }
  .md\:right-50 {
    right: 50% !important;
  }
  .md\:right-100 {
    right: 100% !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:right-auto {
    right: auto !important;
  }
  .lg\:right-0 {
    right: 0px !important;
  }
  .lg\:right-50 {
    right: 50% !important;
  }
  .lg\:right-100 {
    right: 100% !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:right-auto {
    right: auto !important;
  }
  .xl\:right-0 {
    right: 0px !important;
  }
  .xl\:right-50 {
    right: 50% !important;
  }
  .xl\:right-100 {
    right: 100% !important;
  }
}
.bottom-auto {
  bottom: auto !important;
}

.bottom-0 {
  bottom: 0px !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

@media screen and (min-width: 576px) {
  .sm\:bottom-auto {
    bottom: auto !important;
  }
  .sm\:bottom-0 {
    bottom: 0px !important;
  }
  .sm\:bottom-50 {
    bottom: 50% !important;
  }
  .sm\:bottom-100 {
    bottom: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:bottom-auto {
    bottom: auto !important;
  }
  .md\:bottom-0 {
    bottom: 0px !important;
  }
  .md\:bottom-50 {
    bottom: 50% !important;
  }
  .md\:bottom-100 {
    bottom: 100% !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:bottom-auto {
    bottom: auto !important;
  }
  .lg\:bottom-0 {
    bottom: 0px !important;
  }
  .lg\:bottom-50 {
    bottom: 50% !important;
  }
  .lg\:bottom-100 {
    bottom: 100% !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:bottom-auto {
    bottom: auto !important;
  }
  .xl\:bottom-0 {
    bottom: 0px !important;
  }
  .xl\:bottom-50 {
    bottom: 50% !important;
  }
  .xl\:bottom-100 {
    bottom: 100% !important;
  }
}
.overflow-auto {
  overflow: auto !important;
}

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

.overflow-visible {
  overflow: visible !important;
}

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

@media screen and (min-width: 576px) {
  .sm\:overflow-auto {
    overflow: auto !important;
  }
  .sm\:overflow-hidden {
    overflow: hidden !important;
  }
  .sm\:overflow-visible {
    overflow: visible !important;
  }
  .sm\:overflow-scroll {
    overflow: scroll !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:overflow-auto {
    overflow: auto !important;
  }
  .md\:overflow-hidden {
    overflow: hidden !important;
  }
  .md\:overflow-visible {
    overflow: visible !important;
  }
  .md\:overflow-scroll {
    overflow: scroll !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:overflow-auto {
    overflow: auto !important;
  }
  .lg\:overflow-hidden {
    overflow: hidden !important;
  }
  .lg\:overflow-visible {
    overflow: visible !important;
  }
  .lg\:overflow-scroll {
    overflow: scroll !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:overflow-auto {
    overflow: auto !important;
  }
  .xl\:overflow-hidden {
    overflow: hidden !important;
  }
  .xl\:overflow-visible {
    overflow: visible !important;
  }
  .xl\:overflow-scroll {
    overflow: scroll !important;
  }
}
.overflow-x-auto {
  overflow-x: auto !important;
}

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

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

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

@media screen and (min-width: 576px) {
  .sm\:overflow-x-auto {
    overflow-x: auto !important;
  }
  .sm\:overflow-x-hidden {
    overflow-x: hidden !important;
  }
  .sm\:overflow-x-visible {
    overflow-x: visible !important;
  }
  .sm\:overflow-x-scroll {
    overflow-x: scroll !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:overflow-x-auto {
    overflow-x: auto !important;
  }
  .md\:overflow-x-hidden {
    overflow-x: hidden !important;
  }
  .md\:overflow-x-visible {
    overflow-x: visible !important;
  }
  .md\:overflow-x-scroll {
    overflow-x: scroll !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:overflow-x-auto {
    overflow-x: auto !important;
  }
  .lg\:overflow-x-hidden {
    overflow-x: hidden !important;
  }
  .lg\:overflow-x-visible {
    overflow-x: visible !important;
  }
  .lg\:overflow-x-scroll {
    overflow-x: scroll !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:overflow-x-auto {
    overflow-x: auto !important;
  }
  .xl\:overflow-x-hidden {
    overflow-x: hidden !important;
  }
  .xl\:overflow-x-visible {
    overflow-x: visible !important;
  }
  .xl\:overflow-x-scroll {
    overflow-x: scroll !important;
  }
}
.overflow-y-auto {
  overflow-y: auto !important;
}

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

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

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

@media screen and (min-width: 576px) {
  .sm\:overflow-y-auto {
    overflow-y: auto !important;
  }
  .sm\:overflow-y-hidden {
    overflow-y: hidden !important;
  }
  .sm\:overflow-y-visible {
    overflow-y: visible !important;
  }
  .sm\:overflow-y-scroll {
    overflow-y: scroll !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:overflow-y-auto {
    overflow-y: auto !important;
  }
  .md\:overflow-y-hidden {
    overflow-y: hidden !important;
  }
  .md\:overflow-y-visible {
    overflow-y: visible !important;
  }
  .md\:overflow-y-scroll {
    overflow-y: scroll !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:overflow-y-auto {
    overflow-y: auto !important;
  }
  .lg\:overflow-y-hidden {
    overflow-y: hidden !important;
  }
  .lg\:overflow-y-visible {
    overflow-y: visible !important;
  }
  .lg\:overflow-y-scroll {
    overflow-y: scroll !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:overflow-y-auto {
    overflow-y: auto !important;
  }
  .xl\:overflow-y-hidden {
    overflow-y: hidden !important;
  }
  .xl\:overflow-y-visible {
    overflow-y: visible !important;
  }
  .xl\:overflow-y-scroll {
    overflow-y: scroll !important;
  }
}
.z-auto {
  z-index: auto !important;
}

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

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

.z-4 {
  z-index: 4 !important;
}

.z-5 {
  z-index: 5 !important;
}

@media screen and (min-width: 576px) {
  .sm\:z-auto {
    z-index: auto !important;
  }
  .sm\:z-0 {
    z-index: 0 !important;
  }
  .sm\:z-1 {
    z-index: 1 !important;
  }
  .sm\:z-2 {
    z-index: 2 !important;
  }
  .sm\:z-3 {
    z-index: 3 !important;
  }
  .sm\:z-4 {
    z-index: 4 !important;
  }
  .sm\:z-5 {
    z-index: 5 !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:z-auto {
    z-index: auto !important;
  }
  .md\:z-0 {
    z-index: 0 !important;
  }
  .md\:z-1 {
    z-index: 1 !important;
  }
  .md\:z-2 {
    z-index: 2 !important;
  }
  .md\:z-3 {
    z-index: 3 !important;
  }
  .md\:z-4 {
    z-index: 4 !important;
  }
  .md\:z-5 {
    z-index: 5 !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:z-auto {
    z-index: auto !important;
  }
  .lg\:z-0 {
    z-index: 0 !important;
  }
  .lg\:z-1 {
    z-index: 1 !important;
  }
  .lg\:z-2 {
    z-index: 2 !important;
  }
  .lg\:z-3 {
    z-index: 3 !important;
  }
  .lg\:z-4 {
    z-index: 4 !important;
  }
  .lg\:z-5 {
    z-index: 5 !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:z-auto {
    z-index: auto !important;
  }
  .xl\:z-0 {
    z-index: 0 !important;
  }
  .xl\:z-1 {
    z-index: 1 !important;
  }
  .xl\:z-2 {
    z-index: 2 !important;
  }
  .xl\:z-3 {
    z-index: 3 !important;
  }
  .xl\:z-4 {
    z-index: 4 !important;
  }
  .xl\:z-5 {
    z-index: 5 !important;
  }
}
.bg-repeat {
  background-repeat: repeat !important;
}

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

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

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

.bg-repeat-round {
  background-repeat: round !important;
}

.bg-repeat-space {
  background-repeat: space !important;
}

@media screen and (min-width: 576px) {
  .sm\:bg-repeat {
    background-repeat: repeat !important;
  }
  .sm\:bg-no-repeat {
    background-repeat: no-repeat !important;
  }
  .sm\:bg-repeat-x {
    background-repeat: repeat-x !important;
  }
  .sm\:bg-repeat-y {
    background-repeat: repeat-y !important;
  }
  .sm\:bg-repeat-round {
    background-repeat: round !important;
  }
  .sm\:bg-repeat-space {
    background-repeat: space !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:bg-repeat {
    background-repeat: repeat !important;
  }
  .md\:bg-no-repeat {
    background-repeat: no-repeat !important;
  }
  .md\:bg-repeat-x {
    background-repeat: repeat-x !important;
  }
  .md\:bg-repeat-y {
    background-repeat: repeat-y !important;
  }
  .md\:bg-repeat-round {
    background-repeat: round !important;
  }
  .md\:bg-repeat-space {
    background-repeat: space !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:bg-repeat {
    background-repeat: repeat !important;
  }
  .lg\:bg-no-repeat {
    background-repeat: no-repeat !important;
  }
  .lg\:bg-repeat-x {
    background-repeat: repeat-x !important;
  }
  .lg\:bg-repeat-y {
    background-repeat: repeat-y !important;
  }
  .lg\:bg-repeat-round {
    background-repeat: round !important;
  }
  .lg\:bg-repeat-space {
    background-repeat: space !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:bg-repeat {
    background-repeat: repeat !important;
  }
  .xl\:bg-no-repeat {
    background-repeat: no-repeat !important;
  }
  .xl\:bg-repeat-x {
    background-repeat: repeat-x !important;
  }
  .xl\:bg-repeat-y {
    background-repeat: repeat-y !important;
  }
  .xl\:bg-repeat-round {
    background-repeat: round !important;
  }
  .xl\:bg-repeat-space {
    background-repeat: space !important;
  }
}
.bg-auto {
  background-size: auto !important;
}

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

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

@media screen and (min-width: 576px) {
  .sm\:bg-auto {
    background-size: auto !important;
  }
  .sm\:bg-cover {
    background-size: cover !important;
  }
  .sm\:bg-contain {
    background-size: contain !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:bg-auto {
    background-size: auto !important;
  }
  .md\:bg-cover {
    background-size: cover !important;
  }
  .md\:bg-contain {
    background-size: contain !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:bg-auto {
    background-size: auto !important;
  }
  .lg\:bg-cover {
    background-size: cover !important;
  }
  .lg\:bg-contain {
    background-size: contain !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:bg-auto {
    background-size: auto !important;
  }
  .xl\:bg-cover {
    background-size: cover !important;
  }
  .xl\:bg-contain {
    background-size: contain !important;
  }
}
.bg-bottom {
  background-position: bottom !important;
}

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

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

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

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

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

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

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

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

@media screen and (min-width: 576px) {
  .sm\:bg-bottom {
    background-position: bottom !important;
  }
  .sm\:bg-center {
    background-position: center !important;
  }
  .sm\:bg-left {
    background-position: left !important;
  }
  .sm\:bg-left-bottom {
    background-position: left bottom !important;
  }
  .sm\:bg-left-top {
    background-position: left top !important;
  }
  .sm\:bg-right {
    background-position: right !important;
  }
  .sm\:bg-right-bottom {
    background-position: right bottom !important;
  }
  .sm\:bg-right-top {
    background-position: right top !important;
  }
  .sm\:bg-top {
    background-position: top !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:bg-bottom {
    background-position: bottom !important;
  }
  .md\:bg-center {
    background-position: center !important;
  }
  .md\:bg-left {
    background-position: left !important;
  }
  .md\:bg-left-bottom {
    background-position: left bottom !important;
  }
  .md\:bg-left-top {
    background-position: left top !important;
  }
  .md\:bg-right {
    background-position: right !important;
  }
  .md\:bg-right-bottom {
    background-position: right bottom !important;
  }
  .md\:bg-right-top {
    background-position: right top !important;
  }
  .md\:bg-top {
    background-position: top !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:bg-bottom {
    background-position: bottom !important;
  }
  .lg\:bg-center {
    background-position: center !important;
  }
  .lg\:bg-left {
    background-position: left !important;
  }
  .lg\:bg-left-bottom {
    background-position: left bottom !important;
  }
  .lg\:bg-left-top {
    background-position: left top !important;
  }
  .lg\:bg-right {
    background-position: right !important;
  }
  .lg\:bg-right-bottom {
    background-position: right bottom !important;
  }
  .lg\:bg-right-top {
    background-position: right top !important;
  }
  .lg\:bg-top {
    background-position: top !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:bg-bottom {
    background-position: bottom !important;
  }
  .xl\:bg-center {
    background-position: center !important;
  }
  .xl\:bg-left {
    background-position: left !important;
  }
  .xl\:bg-left-bottom {
    background-position: left bottom !important;
  }
  .xl\:bg-left-top {
    background-position: left top !important;
  }
  .xl\:bg-right {
    background-position: right !important;
  }
  .xl\:bg-right-bottom {
    background-position: right bottom !important;
  }
  .xl\:bg-right-top {
    background-position: right top !important;
  }
  .xl\:bg-top {
    background-position: top !important;
  }
}
.select-none {
  user-select: none !important;
}

.select-text {
  user-select: text !important;
}

.select-all {
  user-select: all !important;
}

.select-auto {
  user-select: auto !important;
}

.list-none {
  list-style: none !important;
}

.list-disc {
  list-style: disc !important;
}

.list-decimal {
  list-style: decimal !important;
}

.appearance-none {
  appearance: none !important;
}

.outline-none {
  outline: none !important;
}

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

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

.cursor-auto {
  cursor: auto !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-wait {
  cursor: wait !important;
}

.cursor-move {
  cursor: move !important;
}

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

.select-text {
  user-select: text !important;
}

.select-all {
  user-select: all !important;
}

.select-auto {
  user-select: auto !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-10 {
  opacity: .1 !important;
}

.opacity-20 {
  opacity: .2 !important;
}

.opacity-30 {
  opacity: .3 !important;
}

.opacity-40 {
  opacity: .4 !important;
}

.opacity-50 {
  opacity: .5 !important;
}

.opacity-60 {
  opacity: .6 !important;
}

.opacity-70 {
  opacity: .7 !important;
}

.opacity-80 {
  opacity: .8 !important;
}

.opacity-90 {
  opacity: .9 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.reset {
  all: unset;
}

.transition-none {
  transition-property: none !important;
}

.transition-all {
  transition-property: all !important;
}

.transition-colors {
  transition-property: background-color,border-color,color !important;
}

.transition-transform {
  transition-property: transform !important;
}

.transition-duration-100 {
  transition-duration: 100ms !important;
}

.transition-duration-150 {
  transition-duration: 150ms !important;
}

.transition-duration-200 {
  transition-duration: 200ms !important;
}

.transition-duration-300 {
  transition-duration: 300ms !important;
}

.transition-duration-400 {
  transition-duration: 400ms !important;
}

.transition-duration-500 {
  transition-duration: 500ms !important;
}

.transition-duration-1000 {
  transition-duration: 1000ms !important;
}

.transition-duration-2000 {
  transition-duration: 2000ms !important;
}

.transition-duration-3000 {
  transition-duration: 3000ms !important;
}

.transition-linear {
  transition-timing-function: linear !important;
}

.transition-ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
}

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

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

.transition-delay-100 {
  transition-delay: 100ms !important;
}

.transition-delay-150 {
  transition-delay: 150ms !important;
}

.transition-delay-200 {
  transition-delay: 200ms !important;
}

.transition-delay-300 {
  transition-delay: 300ms !important;
}

.transition-delay-400 {
  transition-delay: 400ms !important;
}

.transition-delay-500 {
  transition-delay: 500ms !important;
}

.transition-delay-1000 {
  transition-delay: 1000ms !important;
}

.translate-x-0 {
  transform: translateX(0%) !important;
}

.translate-x-100 {
  transform: translateX(100%) !important;
}

.-translate-x-100 {
  transform: translateX(-100%) !important;
}

.translate-y-0 {
  transform: translateY(0%) !important;
}

.translate-y-100 {
  transform: translateY(100%) !important;
}

.-translate-y-100 {
  transform: translateY(-100%) !important;
}

@media screen and (min-width: 576px) {
  .sm\:translate-x-0 {
    transform: translateX(0%) !important;
  }
  .sm\:translate-x-100 {
    transform: translateX(100%) !important;
  }
  .sm\:-translate-x-100 {
    transform: translateX(-100%) !important;
  }
  .sm\:translate-y-0 {
    transform: translateY(0%) !important;
  }
  .sm\:translate-y-100 {
    transform: translateY(100%) !important;
  }
  .sm\:-translate-y-100 {
    transform: translateY(-100%) !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:translate-x-0 {
    transform: translateX(0%) !important;
  }
  .md\:translate-x-100 {
    transform: translateX(100%) !important;
  }
  .md\:-translate-x-100 {
    transform: translateX(-100%) !important;
  }
  .md\:translate-y-0 {
    transform: translateY(0%) !important;
  }
  .md\:translate-y-100 {
    transform: translateY(100%) !important;
  }
  .md\:-translate-y-100 {
    transform: translateY(-100%) !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:translate-x-0 {
    transform: translateX(0%) !important;
  }
  .lg\:translate-x-100 {
    transform: translateX(100%) !important;
  }
  .lg\:-translate-x-100 {
    transform: translateX(-100%) !important;
  }
  .lg\:translate-y-0 {
    transform: translateY(0%) !important;
  }
  .lg\:translate-y-100 {
    transform: translateY(100%) !important;
  }
  .lg\:-translate-y-100 {
    transform: translateY(-100%) !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:translate-x-0 {
    transform: translateX(0%) !important;
  }
  .xl\:translate-x-100 {
    transform: translateX(100%) !important;
  }
  .xl\:-translate-x-100 {
    transform: translateX(-100%) !important;
  }
  .xl\:translate-y-0 {
    transform: translateY(0%) !important;
  }
  .xl\:translate-y-100 {
    transform: translateY(100%) !important;
  }
  .xl\:-translate-y-100 {
    transform: translateY(-100%) !important;
  }
}
.rotate-45 {
  transform: rotate(45deg) !important;
}

.-rotate-45 {
  transform: rotate(-45deg) !important;
}

.rotate-90 {
  transform: rotate(90deg) !important;
}

.-rotate-90 {
  transform: rotate(-90deg) !important;
}

.rotate-180 {
  transform: rotate(180deg) !important;
}

.-rotate-180 {
  transform: rotate(-180deg) !important;
}

@media screen and (min-width: 576px) {
  .sm\:rotate-45 {
    transform: rotate(45deg) !important;
  }
  .sm\:-rotate-45 {
    transform: rotate(-45deg) !important;
  }
  .sm\:rotate-90 {
    transform: rotate(90deg) !important;
  }
  .sm\:-rotate-90 {
    transform: rotate(-90deg) !important;
  }
  .sm\:rotate-180 {
    transform: rotate(180deg) !important;
  }
  .sm\:-rotate-180 {
    transform: rotate(-180deg) !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:rotate-45 {
    transform: rotate(45deg) !important;
  }
  .md\:-rotate-45 {
    transform: rotate(-45deg) !important;
  }
  .md\:rotate-90 {
    transform: rotate(90deg) !important;
  }
  .md\:-rotate-90 {
    transform: rotate(-90deg) !important;
  }
  .md\:rotate-180 {
    transform: rotate(180deg) !important;
  }
  .md\:-rotate-180 {
    transform: rotate(-180deg) !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:rotate-45 {
    transform: rotate(45deg) !important;
  }
  .lg\:-rotate-45 {
    transform: rotate(-45deg) !important;
  }
  .lg\:rotate-90 {
    transform: rotate(90deg) !important;
  }
  .lg\:-rotate-90 {
    transform: rotate(-90deg) !important;
  }
  .lg\:rotate-180 {
    transform: rotate(180deg) !important;
  }
  .lg\:-rotate-180 {
    transform: rotate(-180deg) !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:rotate-45 {
    transform: rotate(45deg) !important;
  }
  .xl\:-rotate-45 {
    transform: rotate(-45deg) !important;
  }
  .xl\:rotate-90 {
    transform: rotate(90deg) !important;
  }
  .xl\:-rotate-90 {
    transform: rotate(-90deg) !important;
  }
  .xl\:rotate-180 {
    transform: rotate(180deg) !important;
  }
  .xl\:-rotate-180 {
    transform: rotate(-180deg) !important;
  }
}
.origin-center {
  transform-origin: center !important;
}

.origin-top {
  transform-origin: top !important;
}

.origin-top-right {
  transform-origin: top right !important;
}

.origin-right {
  transform-origin: right !important;
}

.origin-bottom-right {
  transform-origin: bottom right !important;
}

.origin-bottom {
  transform-origin: bottom !important;
}

.origin-bottom-left {
  transform-origin: bottom left !important;
}

.origin-left {
  transform-origin: left !important;
}

.origin-top-left {
  transform-origin: top-left !important;
}

@media screen and (min-width: 576px) {
  .sm\:origin-center {
    transform-origin: center !important;
  }
  .sm\:origin-top {
    transform-origin: top !important;
  }
  .sm\:origin-top-right {
    transform-origin: top right !important;
  }
  .sm\:origin-right {
    transform-origin: right !important;
  }
  .sm\:origin-bottom-right {
    transform-origin: bottom right !important;
  }
  .sm\:origin-bottom {
    transform-origin: bottom !important;
  }
  .sm\:origin-bottom-left {
    transform-origin: bottom left !important;
  }
  .sm\:origin-left {
    transform-origin: left !important;
  }
  .sm\:origin-top-left {
    transform-origin: top-left !important;
  }
}
@media screen and (min-width: 768px) {
  .md\:origin-center {
    transform-origin: center !important;
  }
  .md\:origin-top {
    transform-origin: top !important;
  }
  .md\:origin-top-right {
    transform-origin: top right !important;
  }
  .md\:origin-right {
    transform-origin: right !important;
  }
  .md\:origin-bottom-right {
    transform-origin: bottom right !important;
  }
  .md\:origin-bottom {
    transform-origin: bottom !important;
  }
  .md\:origin-bottom-left {
    transform-origin: bottom left !important;
  }
  .md\:origin-left {
    transform-origin: left !important;
  }
  .md\:origin-top-left {
    transform-origin: top-left !important;
  }
}
@media screen and (min-width: 992px) {
  .lg\:origin-center {
    transform-origin: center !important;
  }
  .lg\:origin-top {
    transform-origin: top !important;
  }
  .lg\:origin-top-right {
    transform-origin: top right !important;
  }
  .lg\:origin-right {
    transform-origin: right !important;
  }
  .lg\:origin-bottom-right {
    transform-origin: bottom right !important;
  }
  .lg\:origin-bottom {
    transform-origin: bottom !important;
  }
  .lg\:origin-bottom-left {
    transform-origin: bottom left !important;
  }
  .lg\:origin-left {
    transform-origin: left !important;
  }
  .lg\:origin-top-left {
    transform-origin: top-left !important;
  }
}
@media screen and (min-width: 1200px) {
  .xl\:origin-center {
    transform-origin: center !important;
  }
  .xl\:origin-top {
    transform-origin: top !important;
  }
  .xl\:origin-top-right {
    transform-origin: top right !important;
  }
  .xl\:origin-right {
    transform-origin: right !important;
  }
  .xl\:origin-bottom-right {
    transform-origin: bottom right !important;
  }
  .xl\:origin-bottom {
    transform-origin: bottom !important;
  }
  .xl\:origin-bottom-left {
    transform-origin: bottom left !important;
  }
  .xl\:origin-left {
    transform-origin: left !important;
  }
  .xl\:origin-top-left {
    transform-origin: top-left !important;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scalein {
  0% {
    opacity: 0;
    transform: scaleY(0.8);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes slidedown {
  0% {
    max-height: 0;
  }
  100% {
    max-height: auto;
  }
}
@keyframes slideup {
  0% {
    max-height: 1000px;
  }
  100% {
    max-height: 0;
  }
}
@keyframes fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fadeoutleft {
  0% {
    opacity: 1;
    transform: translateX(0%);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes fadeinright {
  0% {
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0%);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes fadeinup {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes fadeoutup {
  0% {
    opacity: 1;
    transform: translateY(0%);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes fadeindown {
  0% {
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0%);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes animate-width {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes flip {
  from {
    transform: perspective(2000px) rotateX(-100deg);
  }
  to {
    transform: perspective(2000px) rotateX(0);
  }
}
@keyframes flipleft {
  from {
    transform: perspective(2000px) rotateY(-100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2000px) rotateY(0);
    opacity: 1;
  }
}
@keyframes flipright {
  from {
    transform: perspective(2000px) rotateY(100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2000px) rotateY(0);
    opacity: 1;
  }
}
@keyframes flipup {
  from {
    transform: perspective(2000px) rotateX(-100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2000px) rotateX(0);
    opacity: 1;
  }
}
@keyframes zoomin {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomindown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
}
@keyframes zoominleft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  }
}
@keyframes zoominright {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  }
}
@keyframes zoominup {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
}
.fadein {
  animation: fadein 0.15s linear;
}

.fadeout {
  animation: fadeout 0.15s linear;
}

.slidedown {
  animation: slidedown 0.45s ease-in-out;
}

.slideup {
  animation: slideup 0.45s cubic-bezier(0, 1, 0, 1);
}

.scalein {
  animation: scalein 0.15s linear;
}

.fadeinleft {
  animation: fadeinleft 0.15s linear;
}

.fadeoutleft {
  animation: fadeoutleft 0.15s linear;
}

.fadeinright {
  animation: fadeinright 0.15s linear;
}

.fadeoutright {
  animation: fadeoutright 0.15s linear;
}

.fadeinup {
  animation: fadeinup 0.15s linear;
}

.fadeoutup {
  animation: fadeoutup 0.15s linear;
}

.fadeindown {
  animation: fadeindown 0.15s linear;
}

.fadeoutdown {
  animation: fadeoutdown 0.15s linear;
}

.animate-width {
  animation: animate-width 1000ms linear;
}

.flip {
  backface-visibility: visible;
  animation: flip 0.15s linear;
}

.flipup {
  backface-visibility: visible;
  animation: flipup 0.15s linear;
}

.flipleft {
  backface-visibility: visible;
  animation: flipleft 0.15s linear;
}

.flipright {
  backface-visibility: visible;
  animation: flipright 0.15s linear;
}

.zoomin {
  animation: zoomin 0.15s linear;
}

.zoomindown {
  animation: zoomindown 0.15s linear;
}

.zoominleft {
  animation: zoominleft 0.15s linear;
}

.zoominright {
  animation: zoominright 0.15s linear;
}

.zoominup {
  animation: zoominup 0.15s linear;
}

.animation-duration-100 {
  animation-duration: 100ms !important;
}

.animation-duration-150 {
  animation-duration: 150ms !important;
}

.animation-duration-200 {
  animation-duration: 200ms !important;
}

.animation-duration-300 {
  animation-duration: 300ms !important;
}

.animation-duration-400 {
  animation-duration: 400ms !important;
}

.animation-duration-500 {
  animation-duration: 500ms !important;
}

.animation-duration-1000 {
  animation-duration: 1000ms !important;
}

.animation-duration-2000 {
  animation-duration: 2000ms !important;
}

.animation-duration-3000 {
  animation-duration: 3000ms !important;
}

.animation-delay-100 {
  animation-delay: 100ms !important;
}

.animation-delay-150 {
  animation-delay: 150ms !important;
}

.animation-delay-200 {
  animation-delay: 200ms !important;
}

.animation-delay-300 {
  animation-delay: 300ms !important;
}

.animation-delay-400 {
  animation-delay: 400ms !important;
}

.animation-delay-500 {
  animation-delay: 500ms !important;
}

.animation-delay-1000 {
  animation-delay: 1000ms !important;
}

.animation-iteration-1 {
  animation-iteration-count: 1 !important;
}

.animation-iteration-2 {
  animation-iteration-count: 2 !important;
}

.animation-iteration-infinite {
  animation-iteration-count: infinite !important;
}

.animation-linear {
  animation-timing-function: linear !important;
}

.animation-ease-in {
  animation-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
}

.animation-ease-out {
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
}

.animation-ease-in-out {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.animation-fill-none {
  animation-fill-mode: none !important;
}

.animation-fill-forwards {
  animation-fill-mode: forwards !important;
}

.animation-fill-backwards {
  animation-fill-mode: backwards !important;
}

.animation-fill-both {
  animation-fill-mode: both !important;
}
@font-face {
    font-family: 'primeicons';
    font-display: block;
    src: url('/assets/primeicons-DMOk5skT.eot');
    src: url('/assets/primeicons-DMOk5skT.eot?#iefix') format('embedded-opentype'), url('/assets/primeicons-C6QP2o4f.woff2') format('woff2'), url('/assets/primeicons-WjwUDZjB.woff') format('woff'), url('/assets/primeicons-MpK4pl85.ttf') format('truetype'), url('/assets/primeicons-Dr5RGzOO.svg?#primeicons') format('svg');
    font-weight: normal;
    font-style: normal;
}

.pi {
    font-family: 'primeicons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pi:before {
    --webkit-backface-visibility:hidden;
    backface-visibility: hidden;
}

.pi-fw {
    width: 1.28571429em;
    text-align: center;
}

.pi-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

@media (prefers-reduced-motion: reduce) {
  .pi-spin {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.pi-folder-plus:before {
    content: "\ea05";
}

.pi-receipt:before {
    content: "\ea06";
}

.pi-asterisk:before {
    content: "\ea07";
}

.pi-face-smile:before {
    content: "\ea08";
}

.pi-pinterest:before {
    content: "\ea09";
}

.pi-expand:before {
    content: "\ea0a";
}

.pi-pen-to-square:before {
    content: "\ea0b";
}

.pi-wave-pulse:before {
    content: "\ea0c";
}

.pi-turkish-lira:before {
    content: "\ea0d";
}

.pi-spinner-dotted:before {
    content: "\ea0e";
}

.pi-crown:before {
    content: "\ea0f";
}

.pi-pause-circle:before {
    content: "\ea10";
}

.pi-warehouse:before {
    content: "\ea11";
}

.pi-objects-column:before {
    content: "\ea12";
}

.pi-clipboard:before {
    content: "\ea13";
}

.pi-play-circle:before {
    content: "\ea14";
}

.pi-venus:before {
    content: "\ea15";
}

.pi-cart-minus:before {
    content: "\ea16";
}

.pi-file-plus:before {
    content: "\ea17";
}

.pi-microchip:before {
    content: "\ea18";
}

.pi-twitch:before {
    content: "\ea19";
}

.pi-building-columns:before {
    content: "\ea1a";
}

.pi-file-check:before {
    content: "\ea1b";
}

.pi-microchip-ai:before {
    content: "\ea1c";
}

.pi-trophy:before {
    content: "\ea1d";
}

.pi-barcode:before {
    content: "\ea1e";
}

.pi-file-arrow-up:before {
    content: "\ea1f";
}

.pi-mars:before {
    content: "\ea20";
}

.pi-tiktok:before {
    content: "\ea21";
}

.pi-arrow-up-right-and-arrow-down-left-from-center:before {
    content: "\ea22";
}

.pi-ethereum:before {
    content: "\ea23";
}

.pi-list-check:before {
    content: "\ea24";
}

.pi-thumbtack:before {
    content: "\ea25";
}

.pi-arrow-down-left-and-arrow-up-right-to-center:before {
    content: "\ea26";
}

.pi-equals:before {
    content: "\ea27";
}

.pi-lightbulb:before {
    content: "\ea28";
}

.pi-star-half:before {
    content: "\ea29";
}

.pi-address-book:before {
    content: "\ea2a";
}

.pi-chart-scatter:before {
    content: "\ea2b";
}

.pi-indian-rupee:before {
    content: "\ea2c";
}

.pi-star-half-fill:before {
    content: "\ea2d";
}

.pi-cart-arrow-down:before {
    content: "\ea2e";
}

.pi-calendar-clock:before {
    content: "\ea2f";
}

.pi-sort-up-fill:before {
    content: "\ea30";
}

.pi-sparkles:before {
    content: "\ea31";
}

.pi-bullseye:before {
    content: "\ea32";
}

.pi-sort-down-fill:before {
    content: "\ea33";
}

.pi-graduation-cap:before {
    content: "\ea34";
}

.pi-hammer:before {
    content: "\ea35";
}

.pi-bell-slash:before {
    content: "\ea36";
}

.pi-gauge:before {
    content: "\ea37";
}

.pi-shop:before {
    content: "\ea38";
}

.pi-headphones:before {
    content: "\ea39";
}

.pi-eraser:before {
    content: "\ea04";
}

.pi-stopwatch:before {
    content: "\ea01";
}

.pi-verified:before {
    content: "\ea02";
}

.pi-delete-left:before {
    content: "\ea03";
}

.pi-hourglass:before {
    content: "\e9fe";
}

.pi-truck:before {
    content: "\ea00";
}

.pi-wrench:before {
    content: "\e9ff";
}

.pi-microphone:before {
    content: "\e9fa";
}

.pi-megaphone:before {
    content: "\e9fb";
}

.pi-arrow-right-arrow-left:before {
    content: "\e9fc";
}

.pi-bitcoin:before {
    content: "\e9fd";
}

.pi-file-edit:before {
    content: "\e9f6";
}

.pi-language:before {
    content: "\e9f7";
}

.pi-file-export:before {
    content: "\e9f8";
}

.pi-file-import:before {
    content: "\e9f9";
}

.pi-file-word:before {
    content: "\e9f1";
}

.pi-gift:before {
    content: "\e9f2";
}

.pi-cart-plus:before {
    content: "\e9f3";
}

.pi-thumbs-down-fill:before {
    content: "\e9f4";
}

.pi-thumbs-up-fill:before {
    content: "\e9f5";
}

.pi-arrows-alt:before {
    content: "\e9f0";
}

.pi-calculator:before {
    content: "\e9ef";
}

.pi-sort-alt-slash:before {
    content: "\e9ee";
}

.pi-arrows-h:before {
    content: "\e9ec";
}

.pi-arrows-v:before {
    content: "\e9ed";
}

.pi-pound:before {
    content: "\e9eb";
}

.pi-prime:before {
    content: "\e9ea";
}

.pi-chart-pie:before {
    content: "\e9e9";
}

.pi-reddit:before {
    content: "\e9e8";
}

.pi-code:before {
    content: "\e9e7";
}

.pi-sync:before {
    content: "\e9e6";
}

.pi-shopping-bag:before {
    content: "\e9e5";
}

.pi-server:before {
    content: "\e9e4";
}

.pi-database:before {
    content: "\e9e3";
}

.pi-hashtag:before {
    content: "\e9e2";
}

.pi-bookmark-fill:before {
    content: "\e9df";
}

.pi-filter-fill:before {
    content: "\e9e0";
}

.pi-heart-fill:before {
    content: "\e9e1";
}

.pi-flag-fill:before {
    content: "\e9de";
}

.pi-circle:before {
    content: "\e9dc";
}

.pi-circle-fill:before {
    content: "\e9dd";
}

.pi-bolt:before {
    content: "\e9db";
}

.pi-history:before {
    content: "\e9da";
}

.pi-box:before {
    content: "\e9d9";
}

.pi-at:before {
    content: "\e9d8";
}

.pi-arrow-up-right:before {
    content: "\e9d4";
}

.pi-arrow-up-left:before {
    content: "\e9d5";
}

.pi-arrow-down-left:before {
    content: "\e9d6";
}

.pi-arrow-down-right:before {
    content: "\e9d7";
}

.pi-telegram:before {
    content: "\e9d3";
}

.pi-stop-circle:before {
    content: "\e9d2";
}

.pi-stop:before {
    content: "\e9d1";
}

.pi-whatsapp:before {
    content: "\e9d0";
}

.pi-building:before {
    content: "\e9cf";
}

.pi-qrcode:before {
    content: "\e9ce";
}

.pi-car:before {
    content: "\e9cd";
}

.pi-instagram:before {
    content: "\e9cc";
}

.pi-linkedin:before {
    content: "\e9cb";
}

.pi-send:before {
    content: "\e9ca";
}

.pi-slack:before {
    content: "\e9c9";
}

.pi-sun:before {
    content: "\e9c8";
}

.pi-moon:before {
    content: "\e9c7";
}

.pi-vimeo:before {
    content: "\e9c6";
}

.pi-youtube:before {
    content: "\e9c5";
}

.pi-flag:before {
    content: "\e9c4";
}

.pi-wallet:before {
    content: "\e9c3";
}

.pi-map:before {
    content: "\e9c2";
}

.pi-link:before {
    content: "\e9c1";
}

.pi-credit-card:before {
    content: "\e9bf";
}

.pi-discord:before {
    content: "\e9c0";
}

.pi-percentage:before {
    content: "\e9be";
}

.pi-euro:before {
    content: "\e9bd";
}

.pi-book:before {
    content: "\e9ba";
}

.pi-shield:before {
    content: "\e9b9";
}

.pi-paypal:before {
    content: "\e9bb";
}

.pi-amazon:before {
    content: "\e9bc";
}

.pi-phone:before {
    content: "\e9b8";
}

.pi-filter-slash:before {
    content: "\e9b7";
}

.pi-facebook:before {
    content: "\e9b4";
}

.pi-github:before {
    content: "\e9b5";
}

.pi-twitter:before {
    content: "\e9b6";
}

.pi-step-backward-alt:before {
    content: "\e9ac";
}

.pi-step-forward-alt:before {
    content: "\e9ad";
}

.pi-forward:before {
    content: "\e9ae";
}

.pi-backward:before {
    content: "\e9af";
}

.pi-fast-backward:before {
    content: "\e9b0";
}

.pi-fast-forward:before {
    content: "\e9b1";
}

.pi-pause:before {
    content: "\e9b2";
}

.pi-play:before {
    content: "\e9b3";
}

.pi-compass:before {
    content: "\e9ab";
}

.pi-id-card:before {
    content: "\e9aa";
}

.pi-ticket:before {
    content: "\e9a9";
}

.pi-file-o:before {
    content: "\e9a8";
}

.pi-reply:before {
    content: "\e9a7";
}

.pi-directions-alt:before {
    content: "\e9a5";
}

.pi-directions:before {
    content: "\e9a6";
}

.pi-thumbs-up:before {
    content: "\e9a3";
}

.pi-thumbs-down:before {
    content: "\e9a4";
}

.pi-sort-numeric-down-alt:before {
    content: "\e996";
}

.pi-sort-numeric-up-alt:before {
    content: "\e997";
}

.pi-sort-alpha-down-alt:before {
    content: "\e998";
}

.pi-sort-alpha-up-alt:before {
    content: "\e999";
}

.pi-sort-numeric-down:before {
    content: "\e99a";
}

.pi-sort-numeric-up:before {
    content: "\e99b";
}

.pi-sort-alpha-down:before {
    content: "\e99c";
}

.pi-sort-alpha-up:before {
    content: "\e99d";
}

.pi-sort-alt:before {
    content: "\e99e";
}

.pi-sort-amount-up:before {
    content: "\e99f";
}

.pi-sort-amount-down:before {
    content: "\e9a0";
}

.pi-sort-amount-down-alt:before {
    content: "\e9a1";
}

.pi-sort-amount-up-alt:before {
    content: "\e9a2";
}

.pi-palette:before {
    content: "\e995";
}

.pi-undo:before {
    content: "\e994";
}

.pi-desktop:before {
    content: "\e993";
}

.pi-sliders-v:before {
    content: "\e991";
}

.pi-sliders-h:before {
    content: "\e992";
}

.pi-search-plus:before {
    content: "\e98f";
}

.pi-search-minus:before {
    content: "\e990";
}

.pi-file-excel:before {
    content: "\e98e";
}

.pi-file-pdf:before {
    content: "\e98d";
}

.pi-check-square:before {
    content: "\e98c";
}

.pi-chart-line:before {
    content: "\e98b";
}

.pi-user-edit:before {
    content: "\e98a";
}

.pi-exclamation-circle:before {
    content: "\e989";
}

.pi-android:before {
    content: "\e985";
}

.pi-google:before {
    content: "\e986";
}

.pi-apple:before {
    content: "\e987";
}

.pi-microsoft:before {
    content: "\e988";
}

.pi-heart:before {
    content: "\e984";
}

.pi-mobile:before {
    content: "\e982";
}

.pi-tablet:before {
    content: "\e983";
}

.pi-key:before {
    content: "\e981";
}

.pi-shopping-cart:before {
    content: "\e980";
}

.pi-comments:before {
    content: "\e97e";
}

.pi-comment:before {
    content: "\e97f";
}

.pi-briefcase:before {
    content: "\e97d";
}

.pi-bell:before {
    content: "\e97c";
}

.pi-paperclip:before {
    content: "\e97b";
}

.pi-share-alt:before {
    content: "\e97a";
}

.pi-envelope:before {
    content: "\e979";
}

.pi-volume-down:before {
    content: "\e976";
}

.pi-volume-up:before {
    content: "\e977";
}

.pi-volume-off:before {
    content: "\e978";
}

.pi-eject:before {
    content: "\e975";
}

.pi-money-bill:before {
    content: "\e974";
}

.pi-images:before {
    content: "\e973";
}

.pi-image:before {
    content: "\e972";
}

.pi-sign-in:before {
    content: "\e970";
}

.pi-sign-out:before {
    content: "\e971";
}

.pi-wifi:before {
    content: "\e96f";
}

.pi-sitemap:before {
    content: "\e96e";
}

.pi-chart-bar:before {
    content: "\e96d";
}

.pi-camera:before {
    content: "\e96c";
}

.pi-dollar:before {
    content: "\e96b";
}

.pi-lock-open:before {
    content: "\e96a";
}

.pi-table:before {
    content: "\e969";
}

.pi-map-marker:before {
    content: "\e968";
}

.pi-list:before {
    content: "\e967";
}

.pi-eye-slash:before {
    content: "\e965";
}

.pi-eye:before {
    content: "\e966";
}

.pi-folder-open:before {
    content: "\e964";
}

.pi-folder:before {
    content: "\e963";
}

.pi-video:before {
    content: "\e962";
}

.pi-inbox:before {
    content: "\e961";
}

.pi-lock:before {
    content: "\e95f";
}

.pi-unlock:before {
    content: "\e960";
}

.pi-tags:before {
    content: "\e95d";
}

.pi-tag:before {
    content: "\e95e";
}

.pi-power-off:before {
    content: "\e95c";
}

.pi-save:before {
    content: "\e95b";
}

.pi-question-circle:before {
    content: "\e959";
}

.pi-question:before {
    content: "\e95a";
}

.pi-copy:before {
    content: "\e957";
}

.pi-file:before {
    content: "\e958";
}

.pi-clone:before {
    content: "\e955";
}

.pi-calendar-times:before {
    content: "\e952";
}

.pi-calendar-minus:before {
    content: "\e953";
}

.pi-calendar-plus:before {
    content: "\e954";
}

.pi-ellipsis-v:before {
    content: "\e950";
}

.pi-ellipsis-h:before {
    content: "\e951";
}

.pi-bookmark:before {
    content: "\e94e";
}

.pi-globe:before {
    content: "\e94f";
}

.pi-replay:before {
    content: "\e94d";
}

.pi-filter:before {
    content: "\e94c";
}

.pi-print:before {
    content: "\e94b";
}

.pi-align-right:before {
    content: "\e946";
}

.pi-align-left:before {
    content: "\e947";
}

.pi-align-center:before {
    content: "\e948";
}

.pi-align-justify:before {
    content: "\e949";
}

.pi-cog:before {
    content: "\e94a";
}

.pi-cloud-download:before {
    content: "\e943";
}

.pi-cloud-upload:before {
    content: "\e944";
}

.pi-cloud:before {
    content: "\e945";
}

.pi-pencil:before {
    content: "\e942";
}

.pi-users:before {
    content: "\e941";
}

.pi-clock:before {
    content: "\e940";
}

.pi-user-minus:before {
    content: "\e93e";
}

.pi-user-plus:before {
    content: "\e93f";
}

.pi-trash:before {
    content: "\e93d";
}

.pi-external-link:before {
    content: "\e93c";
}

.pi-window-maximize:before {
    content: "\e93b";
}

.pi-window-minimize:before {
    content: "\e93a";
}

.pi-refresh:before {
    content: "\e938";
}
  
.pi-user:before {
    content: "\e939";
}

.pi-exclamation-triangle:before {
    content: "\e922";
}

.pi-calendar:before {
    content: "\e927";
}

.pi-chevron-circle-left:before {
    content: "\e928";
}

.pi-chevron-circle-down:before {
    content: "\e929";
}

.pi-chevron-circle-right:before {
    content: "\e92a";
}

.pi-chevron-circle-up:before {
    content: "\e92b";
}

.pi-angle-double-down:before {
    content: "\e92c";
}

.pi-angle-double-left:before {
    content: "\e92d";
}

.pi-angle-double-right:before {
    content: "\e92e";
}

.pi-angle-double-up:before {
    content: "\e92f";
}

.pi-angle-down:before {
    content: "\e930";
}

.pi-angle-left:before {
    content: "\e931";
}

.pi-angle-right:before {
    content: "\e932";
}

.pi-angle-up:before {
    content: "\e933";
}

.pi-upload:before {
    content: "\e934";
}

.pi-download:before {
    content: "\e956";
}

.pi-ban:before {
    content: "\e935";
}

.pi-star-fill:before {
    content: "\e936";
}

.pi-star:before {
    content: "\e937";
}

.pi-chevron-left:before {
    content: "\e900";
}

.pi-chevron-right:before {
    content: "\e901";
}

.pi-chevron-down:before {
    content: "\e902";
}

.pi-chevron-up:before {
    content: "\e903";
}

.pi-caret-left:before {
    content: "\e904";
}

.pi-caret-right:before {
    content: "\e905";
}

.pi-caret-down:before {
    content: "\e906";
}

.pi-caret-up:before {
    content: "\e907";
}

.pi-search:before {
    content: "\e908";
}

.pi-check:before {
    content: "\e909";
}

.pi-check-circle:before {
    content: "\e90a";
}

.pi-times:before {
    content: "\e90b";
}

.pi-times-circle:before {
    content: "\e90c";
}

.pi-plus:before {
    content: "\e90d";
}

.pi-plus-circle:before {
    content: "\e90e";
}

.pi-minus:before {
    content: "\e90f";
}

.pi-minus-circle:before {
    content: "\e910";
}

.pi-circle-on:before {
    content: "\e911";
}

.pi-circle-off:before {
    content: "\e912";
}

.pi-sort-down:before {
    content: "\e913";
}

.pi-sort-up:before {
    content: "\e914";
}

.pi-sort:before {
    content: "\e915";
}

.pi-step-backward:before {
    content: "\e916";
}

.pi-step-forward:before {
    content: "\e917";
}

.pi-th-large:before {
    content: "\e918";
}

.pi-arrow-down:before {
    content: "\e919";
}

.pi-arrow-left:before {
    content: "\e91a";
}

.pi-arrow-right:before {
    content: "\e91b";
}

.pi-arrow-up:before {
    content: "\e91c";
}

.pi-bars:before {
    content: "\e91d";
}

.pi-arrow-circle-down:before {
    content: "\e91e";
}

.pi-arrow-circle-left:before {
    content: "\e91f";
}

.pi-arrow-circle-right:before {
    content: "\e920";
}

.pi-arrow-circle-up:before {
    content: "\e921";
}

.pi-info:before {
    content: "\e923";
}

.pi-info-circle:before {
    content: "\e924";
}

.pi-home:before {
    content: "\e925";
}

.pi-spinner:before {
    content: "\e926";
}
/* roboto-regular - latin-ext_latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("/assets/roboto-v20-latin-ext_latin-regular-DZFhco7C.woff2") format("woff2"), url("/assets/roboto-v20-latin-ext_latin-regular-BjaCq4O7.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin-ext_latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("/assets/roboto-v20-latin-ext_latin-500-pIVETkgU.woff2") format("woff2"), url("/assets/roboto-v20-latin-ext_latin-500-C20Jx1Ry.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin-ext_latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("/assets/roboto-v20-latin-ext_latin-700-CBvPcIgG.woff2") format("woff2"), url("/assets/roboto-v20-latin-ext_latin-700-BAqzE60z.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.card {
  background-color: var(--surface-card);
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  border-radius: var(--border-radius);
}
.card:last-child {
  margin-bottom: 0;
}

.ng-hidden {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem 0;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  color: var(--surface-900);
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

mark {
  background: #FFF8E1;
  padding: 0.25rem 0.4rem;
  border-radius: var(--border-radius);
  font-family: monospace;
}

blockquote {
  margin: 1rem 0;
  padding: 0 2rem;
  border-left: 4px solid #90A4AE;
}

hr {
  border-top: solid var(--surface-border);
  border-width: 1px 0 0 0;
  margin: 1rem 0;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

@keyframes px-mask-in {
  from {
    background-color: transparent;
  }
  to {
    background-color: var(--maskbg);
  }
}
@keyframes px-scalein {
  0% {
    opacity: 0;
    transform: scaleY(0.8);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes px-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes px-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.px-scalein {
  animation: px-scalein 0.12s cubic-bezier(0, 0, 0.2, 1);
}

.px-fadein {
  animation: px-fadein 0.15s linear;
}

.px-fadeout {
  animation: px-fadeout 0.15s linear;
}

.layout-topbar-blue {
  --topbar-bg: #1565C0;
  --topbar-start-bg: #0D47A1;
  --topbar-menu-button-bg: #FBC02D;
  --topbar-menu-button-hover-bg: #dda928;
  --topbar-menu-button-text-color: #212121;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-lightblue {
  --topbar-bg: #0288D1;
  --topbar-start-bg: #0277BD;
  --topbar-menu-button-bg: #FDD835;
  --topbar-menu-button-hover-bg: #dfbe2f;
  --topbar-menu-button-text-color: #212121;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-white {
  --topbar-bg: #ffffff;
  --topbar-start-bg: #ffffff;
  --topbar-menu-button-bg: var(--primary-color);
  --topbar-menu-button-hover-bg: var(--primary-600);
  --topbar-menu-button-text-color: var(--primary-color-text);
  --topbar-item-text-color: #616161;
  --topbar-item-hover-bg: rgba(0,0,0,.12);
}

.layout-topbar-dark {
  --topbar-bg: #1e1e1e;
  --topbar-start-bg: #1e1e1e;
  --topbar-menu-button-bg: #E91E63;
  --topbar-menu-button-hover-bg: #c41953;
  --topbar-menu-button-text-color: #ffffff;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-deeppurple {
  --topbar-bg: #4527A0;
  --topbar-start-bg: #311B92;
  --topbar-menu-button-bg: #F9A825;
  --topbar-menu-button-hover-bg: #d18d1f;
  --topbar-menu-button-text-color: #212121;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-purple {
  --topbar-bg: #6A1B9A;
  --topbar-start-bg: #4A148C;
  --topbar-menu-button-bg: #F9A825;
  --topbar-menu-button-hover-bg: #d18d1f;
  --topbar-menu-button-text-color: #212121;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-pink {
  --topbar-bg: #AD1457;
  --topbar-start-bg: #880E4F;
  --topbar-menu-button-bg: #F9A825;
  --topbar-menu-button-hover-bg: #d18d1f;
  --topbar-menu-button-text-color: #212121;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-cyan {
  --topbar-bg: #0097A7;
  --topbar-start-bg: #006064;
  --topbar-menu-button-bg: #E64A19;
  --topbar-menu-button-hover-bg: #ca4116;
  --topbar-menu-button-text-color: #ffffff;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(103, 66, 66, 0.12);
}

.layout-topbar-teal {
  --topbar-bg: #00796B;
  --topbar-start-bg: #004D40;
  --topbar-menu-button-bg: #D32F2F;
  --topbar-menu-button-hover-bg: #d84848;
  --topbar-menu-button-text-color: #ffffff;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-green {
  --topbar-bg: #43A047;
  --topbar-start-bg: #2E7D32;
  --topbar-menu-button-bg: #F4511E;
  --topbar-menu-button-hover-bg: #f56639;
  --topbar-menu-button-text-color: #ffffff;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-lightgreen {
  --topbar-bg: #689F38;
  --topbar-start-bg: #558B2F;
  --topbar-menu-button-bg: #F57C00;
  --topbar-menu-button-hover-bg: #d86d00;
  --topbar-menu-button-text-color: #ffffff;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-lime {
  --topbar-bg: #AFB42B;
  --topbar-start-bg: #9E9D24;
  --topbar-menu-button-bg: #F57C00;
  --topbar-menu-button-hover-bg: #f68c1f;
  --topbar-menu-button-text-color: #212121;
  --topbar-item-text-color: #212121;
  --topbar-item-hover-bg: rgba(0,0,0,.12);
}

.layout-topbar-yellow {
  --topbar-bg: #FBC02D;
  --topbar-start-bg: #F9A825;
  --topbar-menu-button-bg:#212121;
  --topbar-menu-button-hover-bg:#454545;
  --topbar-menu-button-text-color:#ffffff;
  --topbar-item-text-color: #212121;
  --topbar-item-hover-bg: rgba(0,0,0,.12);
}

.layout-topbar-amber {
  --topbar-bg: #FFA000;
  --topbar-start-bg: #FF8F00;
  --topbar-menu-button-bg: #212121;
  --topbar-menu-button-hover-bg: #454545;
  --topbar-menu-button-text-color: #ffffff;
  --topbar-item-text-color: #212121;
  --topbar-item-hover-bg: rgba(0,0,0,.12);
}

.layout-topbar-orange {
  --topbar-bg: #FB8C00;
  --topbar-start-bg: #EF6C00;
  --topbar-menu-button-bg: #212121;
  --topbar-menu-button-hover-bg: #454545;
  --topbar-menu-button-text-color: #ffffff;
  --topbar-item-text-color: #212121;
  --topbar-item-hover-bg: rgba(0,0,0,.12);
}

.layout-topbar-deeporange {
  --topbar-bg: #D84315;
  --topbar-start-bg: #BF360C;
  --topbar-menu-button-bg: #00BCD4;
  --topbar-menu-button-hover-bg: #009eb2;
  --topbar-menu-button-text-color: #212121;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-brown {
  --topbar-bg: #5D4037;
  --topbar-start-bg: #4E342E;
  --topbar-menu-button-bg: #F9A825;
  --topbar-menu-button-hover-bg: #d18d1f;
  --topbar-menu-button-text-color: #212121;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-grey {
  --topbar-bg: #616161;
  --topbar-start-bg: #424242;
  --topbar-menu-button-bg: #0097A7;
  --topbar-menu-button-hover-bg: #008593;
  --topbar-menu-button-text-color: #ffffff;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-bluegrey {
  --topbar-bg: #546E7A;
  --topbar-start-bg: #37474F;
  --topbar-menu-button-bg: #0097A7;
  --topbar-menu-button-hover-bg: #008593;
  --topbar-menu-button-text-color: #ffffff;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar-indigo {
  --topbar-bg: #3F51B5;
  --topbar-start-bg: #283593;
  --topbar-menu-button-bg: #FBC02D;
  --topbar-menu-button-hover-bg: #d3a126;
  --topbar-menu-button-text-color: #212121;
  --topbar-item-text-color: #ffffff;
  --topbar-item-hover-bg: rgba(255,255,255,.12);
}

.layout-topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 4rem;
  transition: width var(--transition-duration);
  display: flex;
  color: var(--topbar-item-text-color);
  background-color: var(--topbar-bg);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12), 0px 4px 5px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.layout-topbar ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.layout-topbar .layout-topbar-start {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 17rem;
  background-color: var(--topbar-start-bg);
}
.layout-topbar .layout-topbar-start .layout-topbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout-topbar .layout-topbar-start .layout-topbar-logo .layout-topbar-logo-slim {
  display: none;
}
.layout-topbar .layout-topbar-start .layout-menu-button {
  position: absolute;
  top: 50%;
  margin-top: -1.25rem;
  right: -1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--topbar-menu-button-text-color);
  background-color: var(--topbar-menu-button-bg);
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.06), 0px 7px 9px rgba(0, 0, 0, 0.12), 0px 20px 25px -8px rgba(0, 0, 0, 0.18);
  transition: background-color var(--transition-duration);
  cursor: pointer;
}
.layout-topbar .layout-topbar-start .layout-menu-button:hover {
  background-color: var(--topbar-menu-button-hover-bg);
}
.layout-topbar .layout-topbar-start .layout-menu-button i {
  transition: transform var(--transition-duration);
}
.layout-topbar .layout-topbar-start .layout-topbar-mobile-button {
  display: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}
.layout-topbar .layout-topbar-end {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.layout-topbar .layout-topbar-end .layout-megamenu {
  background: none;
}
.layout-topbar .layout-topbar-end .layout-megamenu.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text,
.layout-topbar .layout-topbar-end .layout-megamenu.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon,
.layout-topbar .layout-topbar-end .layout-megamenu.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link .p-submenu-icon {
  color: var(--topbar-item-text-color);
}
.layout-topbar .layout-topbar-end .layout-megamenu.p-megamenu .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-disabled):hover {
  background: var(--topbar-item-hover-bg);
  transition: background-color var(--transition-duration);
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items > li {
  position: relative;
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items > li > a {
  width: 2.5rem;
  height: 2.5rem;
  user-select: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--topbar-item-text-color);
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items > li > a i {
  font-size: 1.25rem;
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items > li > a:hover {
  background-color: var(--topbar-item-hover-bg);
  transition: background-color var(--transition-duration);
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items > li > div {
  position: absolute;
  top: 3.25rem;
  right: 0;
  min-width: 20rem;
  padding: 1rem 0;
  transform-origin: top;
  background: var(--surface-overlay);
  color: var(--text-color);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items > li.layout-topbar-search {
  position: static;
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items > li.layout-topbar-search .layout-search-panel {
  background: var(--surface-overlay);
  height: 4rem;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  transform-origin: top;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-radius: 0;
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items > li.layout-topbar-search .layout-search-panel > i {
  color: var(--text-color);
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items > li.layout-topbar-search .layout-search-panel input {
  border-radius: 0;
  border: 0 none;
  flex-grow: 1;
  background-color: transparent;
  margin: 0 1rem;
}
.layout-topbar .layout-topbar-end .layout-topbar-actions-end .layout-topbar-items > li.layout-topbar-search .layout-search-panel input:focus {
  outline: 0 none;
}

.layout-menu-light {
  --menu-bg: #FDFEFF;
  --root-menuitem-text-color: #657380;
  --menuitem-text-color: #515C66;
  --menuitem-hover-bg: rgba(0,0,0,.04);
  --active-menuitem-text-color: var(--primary-500);
  --active-menuitem-bg: var(--primary-50);
  --inline-menu-border-color: #e4e4e4;
}

.layout-menu-dark {
  --menu-bg: #1e1e1e;
  --root-menuitem-text-color: rgba(255,255,255,.60);
  --menuitem-text-color: rgba(255,255,255,.87);
  --menuitem-hover-bg: hsla(0,0%,100%,.04);
  --active-menuitem-text-color: rgba(255,255,255,.87);
  --active-menuitem-bg: hsla(0,0%,100%,.04);
  --inline-menu-border-color: hsla(0,0%,100%,.12);
}

.layout-menu-indigo {
  --menu-bg: #1A237E;
  --root-menuitem-text-color: #ffffff;
  --menuitem-text-color: rgba(255,255,255,.6);
  --menuitem-hover-bg: rgba(255,255,255,.12);
  ---text-color: #ffffff;
  ---bg: rgba(255,255,255,.24);
  --inline-menu-border-color: rgba(255,255,255,.24);
}

.layout-menu-bluegrey {
  --menu-bg: #37474F;
  --root-menuitem-text-color: #ffffff;
  --menuitem-text-color: rgba(255,255,255,.6);
  --menuitem-hover-bg: rgba(255,255,255,.12);
  --active-menuitem-text-color: #ffffff;
  --active-menuitem-bg: rgba(255,255,255,.24);
  --inline-menu-border-color: rgba(255,255,255,.24);
}

.layout-menu-brown {
  --menu-bg: #4E342E;
  --root-menuitem-text-color: #ffffff;
  --menuitem-text-color: rgba(255,255,255,.6);
  --menuitem-hover-bg: rgba(255,255,255,.12);
  --active-menuitem-text-color: #ffffff;
  --active-menuitem-bg: rgba(255,255,255,.24);
  --inline-menu-border-color: rgba(255,255,255,.24);
}

.layout-menu-cyan {
  --menu-bg: #006064;
  --root-menuitem-text-color: #ffffff;
  --menuitem-text-color: rgba(255,255,255,.6);
  --menuitem-hover-bg: rgba(255,255,255,.12);
  --active-menuitem-text-color: #ffffff;
  --active-menuitem-bg: rgba(255,255,255,.24);
  --inline-menu-border-color: rgba(255,255,255,.24);
}

.layout-menu-green {
  --menu-bg: #2E7D32;
  --root-menuitem-text-color: #ffffff;
  --menuitem-text-color: rgba(255,255,255,.6);
  --menuitem-hover-bg: rgba(255,255,255,.12);
  --active-menuitem-text-color: #ffffff;
  --active-menuitem-bg: rgba(255,255,255,.24);
  --inline-menu-border-color: rgba(255,255,255,.24);
}

.layout-menu-deeppurple {
  --menu-bg: #4527A0;
  --root-menuitem-text-color: #ffffff;
  --menuitem-text-color: rgba(255,255,255,.6);
  --menuitem-hover-bg: rgba(255,255,255,.12);
  --active-menuitem-text-color: #ffffff;
  --active-menuitem-bg: rgba(255,255,255,.24);
  --inline-menu-border-color: rgba(255,255,255,.24);
}

.layout-menu-deeporange {
  --menu-bg: #BF360C;
  --root-menuitem-text-color: #ffffff;
  --menuitem-text-color: rgba(255,255,255,.6);
  --menuitem-hover-bg: rgba(255,255,255,.12);
  --active-menuitem-text-color: #ffffff;
  --active-menuitem-bg: rgba(255,255,255,.24);
  --inline-menu-border-color: rgba(255,255,255,.24);
}

.layout-menu-pink {
  --menu-bg: #880E4F;
  --root-menuitem-text-color: #ffffff;
  --menuitem-text-color: rgba(255,255,255,.6);
  --menuitem-hover-bg: rgba(255,255,255,.12);
  --active-menuitem-text-color: #ffffff;
  --active-menuitem-bg: rgba(255,255,255,.24);
  --inline-menu-border-color: rgba(255,255,255,.24);
}

.layout-menu-purple {
  --menu-bg: #6A1B9A;
  --root-menuitem-text-color: #ffffff;
  --menuitem-text-color: rgba(255,255,255,.6);
  --menuitem-hover-bg: rgba(255,255,255,.12);
  --active-menuitem-text-color: #ffffff;
  --active-menuitem-bg: rgba(255,255,255,.24);
  --inline-menu-border-color: rgba(255,255,255,.24);
}

.layout-menu-teal {
  --menu-bg: #00695C;
  --root-menuitem-text-color: #ffffff;
  --menuitem-text-color: rgba(255,255,255,.6);
  --menuitem-hover-bg: rgba(255,255,255,.12);
  --active-menuitem-text-color: #ffffff;
  --active-menuitem-bg: rgba(255,255,255,.24);
  --inline-menu-border-color: rgba(255,255,255,.24);
}

.layout-sidebar {
  position: fixed;
  height: calc(100% - 4rem);
  top: 4rem;
  left: 0;
  width: 17rem;
  background: var(--menu-bg);
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}
.layout-sidebar .layout-sidebar-top {
  display: none;
}
.layout-sidebar .layout-menu-container {
  flex: 1;
  padding-bottom: 2rem;
  overflow: auto;
}
.layout-sidebar .layout-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.layout-sidebar .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
  display: flex;
  align-items: center;
  font-size: 0.857rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--root-menuitem-text-color);
  padding: 1rem 1.5rem 1rem 1rem;
}
.layout-sidebar .layout-menu .layout-root-menuitem > .layout-menuitem-root-text > .layout-menuitem-root-icon {
  display: none;
}
.layout-sidebar .layout-menu .layout-root-menuitem > a {
  display: none;
}
.layout-sidebar .layout-menu a {
  user-select: none;
}
.layout-sidebar .layout-menu li.active-menuitem > a {
  color: var(--active-menuitem-text-color);
  background-color: var(--active-menuitem-bg);
}
.layout-sidebar .layout-menu li.active-menuitem > a .layout-menuitem-icon {
  color: var(--active-menuitem-text-color);
}
.layout-sidebar .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  transform: rotate(-180deg);
}
.layout-sidebar .layout-menu li.active-menuitem > ul {
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
}
.layout-sidebar .layout-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.layout-sidebar .layout-menu ul a {
  display: flex;
  align-items: center;
  position: relative;
  outline: 0 none;
  color: var(--menuitem-text-color);
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  transition: background-color var(--transition-duration), box-shadow var(--transition-duration);
}
.layout-sidebar .layout-menu ul a .layout-menuitem-icon {
  margin-right: 0.5rem;
  color: var(--menuitem-text-color);
}
.layout-sidebar .layout-menu ul a .layout-submenu-toggler {
  font-size: 75%;
  margin-left: auto;
  transition: transform var(--transition-duration);
}
.layout-sidebar .layout-menu ul a.active-route {
  font-weight: 700;
}
.layout-sidebar .layout-menu ul a:hover {
  background-color: var(--menuitem-hover-bg);
}
.layout-sidebar .layout-menu ul ul {
  overflow: hidden;
  border-radius: var(--border-radius);
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}
.layout-sidebar .layout-menu ul ul li a {
  padding-left: 2.5rem;
}
.layout-sidebar .layout-menu ul ul li li a {
  padding-left: 3rem;
}
.layout-sidebar .layout-menu ul ul li li li a {
  padding-left: 3.5rem;
}
.layout-sidebar .layout-menu ul ul li li li li a {
  padding-left: 4rem;
}
.layout-sidebar .layout-menu ul ul li li li li li a {
  padding-left: 5.5rem;
}
.layout-sidebar .layout-menu ul ul li li li li li li a {
  padding-left: 5rem;
}

@media screen and (min-width: 992px) {
  .layout-drawer .layout-sidebar {
    height: 100%;
    top: 0;
    transition: width 0.3s cubic-bezier(0, 0, 0.2, 1);
    width: 4.25rem;
    z-index: 999;
  }
  .layout-drawer .layout-sidebar .layout-sidebar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.75rem;
    height: 4rem;
    background-color: var(--topbar-start-bg);
    color: var(--topbar-item-text-color);
  }
  .layout-drawer .layout-sidebar .layout-sidebar-top .layout-sidebar-logo {
    display: none;
    width: 0;
    transition: width 0.2s cubic-bezier(0, 0, 0.2, 1);
    transition-delay: 300ms;
  }
  .layout-drawer .layout-sidebar .layout-sidebar-top .layout-sidebar-logo-slim {
    display: inline;
    order: 1;
  }
  .layout-drawer .layout-sidebar .layout-sidebar-top .layout-sidebar-anchor {
    display: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--topbar-menu-button-bg);
    background-color: transparent;
    transition: background-color var(--transition-duration), transform 0.3s;
  }
  .layout-drawer .layout-sidebar .layout-menu-container {
    overflow: hidden;
  }
  .layout-drawer .layout-sidebar .layout-menu-container .layout-menu {
    transition: all 0.4s;
  }
  .layout-drawer .layout-sidebar .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
    opacity: 1;
    white-space: nowrap;
    display: flex;
    justify-content: flex-end;
    height: 2.92rem;
  }
  .layout-drawer .layout-sidebar .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text > span {
    margin-right: auto;
    opacity: 0;
    transition: all 0.1s;
  }
  .layout-drawer .layout-sidebar .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text .layout-menuitem-icon {
    font-size: 1.25rem;
    width: 1.25rem;
  }
  .layout-drawer .layout-sidebar .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text > .layout-menuitem-root-icon {
    display: block;
    margin-left: 0.125rem;
    font-size: 1.25rem;
  }
  .layout-drawer .layout-sidebar .layout-menu-container .layout-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .layout-drawer .layout-sidebar .layout-menu-container .layout-menu ul a span {
    opacity: 0;
    white-space: nowrap;
    transition: all 0.1s;
  }
  .layout-drawer .layout-sidebar .layout-menu-container .layout-menu ul a .layout-menuitem-icon {
    font-size: 1.25rem;
    width: auto;
  }
  .layout-drawer .layout-sidebar .layout-menu-container .layout-menu ul a .layout-submenu-toggler {
    display: none;
  }
  .layout-drawer .layout-sidebar .layout-menu-container .layout-menu ul ul li a {
    padding: 0.75rem 1.5rem;
  }
  .layout-drawer .layout-sidebar .layout-menu-profile > button {
    padding: 0.75rem 1rem;
  }
  .layout-drawer .layout-sidebar .layout-menu-profile > button span {
    opacity: 0;
    white-space: nowrap;
    transition: all 0.1s;
  }
  .layout-drawer .layout-sidebar .layout-menu-profile > ul > li > button > i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
    width: auto;
  }
  .layout-drawer .layout-topbar {
    padding-left: 4.25rem;
  }
  .layout-drawer .layout-topbar .layout-topbar-start {
    display: none;
  }
  .layout-drawer.layout-drawer .layout-content-wrapper {
    margin-left: 4.25rem;
    transition: margin-left 0.3s cubic-bezier(0, 0, 0.2, 1);
    overflow-x: hidden;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar {
    width: 17rem;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-sidebar-top {
    padding: 0 1.5rem;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-sidebar-top .layout-sidebar-logo {
    display: inline;
    width: 100%;
    transition: width 0.2s cubic-bezier(0, 0, 0.2, 1);
    transition-delay: 300ms;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-sidebar-top .layout-sidebar-logo-slim {
    display: none;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-sidebar-top .layout-sidebar-anchor {
    display: block;
    animation: px-fadein 0.15s linear;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container {
    overflow: auto;
    overflow-x: hidden;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
    white-space: nowrap;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text > .layout-menuitem-root-icon {
    display: none;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text > span {
    margin-right: auto;
    opacity: 1;
    transition: all 0.1s;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul a {
    width: auto;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul a .layout-submenu-toggler {
    display: block;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul a span {
    opacity: 1;
    white-space: nowrap;
    transition: all 0.3s;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul ul {
    overflow: hidden;
    border-radius: var(--border-radius);
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul ul li a {
    padding-left: 2.5rem;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul ul li li a {
    padding-left: 3rem;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul ul li li li a {
    padding-left: 3.5rem;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul ul li li li li a {
    padding-left: 4rem;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul ul li li li li li a {
    padding-left: 5.5rem;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul ul li li li li li li a {
    padding-left: 5rem;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-profile > button span {
    opacity: 1;
    white-space: nowrap;
    transition: all 0.1s;
  }
  .layout-drawer.layout-sidebar-active .layout-sidebar .layout-menu-profile > ul > li > button > i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
    width: auto;
  }
  .layout-drawer.layout-sidebar-anchored .layout-topbar {
    padding-left: 17rem;
  }
  .layout-drawer.layout-sidebar-anchored .layout-sidebar-top .layout-sidebar-anchor {
    background-color: var(--topbar-menu-button-bg);
  }
  .layout-drawer.layout-sidebar-anchored .layout-content-wrapper {
    margin-left: 17rem;
  }
}
@media screen and (min-width: 992px) {
  .layout-container.layout-slim .layout-sidebar {
    width: 5rem;
    overflow: visible;
    z-index: 998;
  }
  .layout-container.layout-slim .layout-sidebar .layout-menu-container {
    overflow: auto;
  }
  .layout-container.layout-slim .layout-sidebar .layout-menu-container::-webkit-scrollbar {
    display: none;
  }
  .layout-container.layout-slim .layout-topbar .layout-topbar-start {
    width: 5rem;
  }
  .layout-container.layout-slim .layout-topbar .layout-topbar-start .layout-topbar-logo .layout-topbar-logo-full {
    display: none;
  }
  .layout-container.layout-slim .layout-topbar .layout-topbar-start .layout-topbar-logo .layout-topbar-logo-slim {
    display: block;
  }
  .layout-container.layout-slim .layout-topbar .layout-topbar-start .layout-menu-button {
    display: none;
  }
  .layout-container.layout-slim .layout-content-wrapper {
    margin-left: 5rem;
  }
  .layout-container.layout-slim .layout-menu {
    padding: 1rem 0;
  }
  .layout-container.layout-slim .layout-menu ul {
    display: none;
  }
  .layout-container.layout-slim .layout-menu li.active-menuitem > ul {
    display: block;
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) {
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-topbar .topbar-menubutton {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .sidebar-header .app-logo .app-logo-normal {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .sidebar-header .app-logo .app-logo-small {
    display: inline;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-sidebar {
    width: 5rem;
    overflow: visible;
    z-index: 999;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-sidebar .layout-menu-container {
    overflow: auto;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-sidebar .layout-menu-container::-webkit-scrollbar {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-content-wrapper {
    margin-left: 5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu ul {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu li.active-menuitem > ul {
    display: block;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    transition: background-color var(--transition-duration);
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem auto;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > a .layout-submenu-toggler {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > a .layout-menuitem-icon {
    font-size: 1.5rem;
    color: var(--menuitem-icon-color);
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > a .layout-menuitem-text {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > a:hover {
    background-color: var(--menuitem-hover-bg-color);
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul {
    display: none;
    position: absolute;
    left: 5rem;
    top: 0;
    min-width: 15rem;
    background-color: var(--surface-overlay);
    border-radius: var(--border-radius);
    box-shadow: var(--sidebar-shadow);
    border: var(--sidebar-border);
    padding: 1rem;
    max-height: 20rem;
    overflow: auto;
    z-index: 999;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul a {
    padding-right: 0.5rem;
    color: var(--popup-submenu-item-text-color);
    border-radius: var(--border-radius);
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul a .layout-menuitem-icon {
    color: var(--popup-submenu-item-icon-color);
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul a:hover {
    background-color: var(--popup-submenu-item-hover-bg-color);
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li a {
    padding-left: 0.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li a {
    padding-left: 1rem;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li a {
    padding-left: 1.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li li a {
    padding-left: 2rem;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li li li a {
    padding-left: 2.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li li li li a {
    padding-left: 3rem;
  }
  .layout-container.layout-slim .layout-menu .layout-container.layout-slim .layout-menu .layout-root-menuitem.active-menuitem > ul {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .layout-container.layout-slim .layout-menu .layout-root-menuitem {
    margin: 0.75rem 0;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem:first-child {
    margin-top: 0;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem:last-child {
    margin-top: 0;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    transition: background-color var(--transition-duration);
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > a .layout-submenu-toggler {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > a .layout-menuitem-icon {
    font-size: 1.5rem;
    color: var(--menuitem-text-color);
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > a .layout-menuitem-text {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > a:hover {
    background-color: var(--menuitem-hover-bg);
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul {
    position: absolute;
    left: 5rem;
    top: 0;
    min-width: 15rem;
    background-color: var(--menu-bg);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    max-height: 20rem;
    overflow: auto;
    z-index: 999;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul::-webkit-scrollbar {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul a {
    padding-right: 0.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li a {
    padding-left: 0.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li a {
    padding-left: 1rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li a {
    padding-left: 1.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li li a {
    padding-left: 2rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li li li a {
    padding-left: 2.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li li li li a {
    padding-left: 3rem;
  }
  .layout-container.layout-slim .layout-menu-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .layout-container.layout-slim .layout-menu-profile > button {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    margin: 0.75rem 0;
  }
  .layout-container.layout-slim .layout-menu-profile > button span,
  .layout-container.layout-slim .layout-menu-profile > button i {
    display: none;
  }
  .layout-container.layout-slim .layout-menu-profile > ul > li {
    margin: 0.75rem 0;
  }
  .layout-container.layout-slim .layout-menu-profile > ul > li:first-child {
    margin-top: 0;
  }
  .layout-container.layout-slim .layout-menu-profile > ul > li > button {
    width: 3rem;
    height: 3rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .layout-container.layout-slim .layout-menu-profile > ul > li > button > i {
    font-size: 1.5rem;
    margin-right: 0;
  }
  .layout-container.layout-slim .layout-menu-profile > ul > li > button > span {
    display: none;
  }
  .layout-container.layout-slim .layout-menu-profile > ul > li:last-child {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .layout-container.layout-slim-plus .layout-sidebar {
    width: 7rem;
    overflow: visible;
    z-index: 998;
  }
  .layout-container.layout-slim-plus .layout-sidebar .layout-menu-container {
    overflow: auto;
  }
  .layout-container.layout-slim-plus .layout-sidebar .layout-menu-container::-webkit-scrollbar {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-topbar .layout-topbar-start {
    width: 7rem;
  }
  .layout-container.layout-slim-plus .layout-topbar .layout-topbar-start .layout-topbar-logo .layout-topbar-logo-full {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-topbar .layout-topbar-start .layout-topbar-logo .layout-topbar-logo-slim {
    display: block;
  }
  .layout-container.layout-slim-plus .layout-topbar .layout-topbar-start .layout-menu-button {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-content-wrapper {
    margin-left: 7rem;
  }
  .layout-container.layout-slim-plus .layout-menu {
    padding: 1rem 0;
  }
  .layout-container.layout-slim-plus .layout-menu ul {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-menu li.active-menuitem > ul {
    display: block;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem {
    margin: 0.75rem 0;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem:first-child {
    margin-top: 0;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem:last-child {
    margin-top: 0;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    outline: none;
    transition: background-color var(--transition-duration);
    width: auto;
    height: auto;
    margin: 0 auto 1rem auto;
    padding: 0.75rem 0;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > a .layout-submenu-toggler {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > a .layout-menuitem-icon {
    font-size: 1.5rem;
    color: var(--menuitem-text-color);
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > a .layout-menuitem-text {
    font-size: 0.875rem;
    display: block;
    margin-top: 0.25rem;
    color: var(--menuitem-text-color);
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > a:hover {
    background-color: var(--menuitem-hover-bg);
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul {
    position: absolute;
    left: 7rem;
    top: 0;
    min-width: 15rem;
    background-color: var(--menu-bg);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    max-height: 20rem;
    overflow: auto;
    z-index: 999;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul::-webkit-scrollbar {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul a {
    padding-right: 0.5rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li a {
    padding-left: 0.5rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li li a {
    padding-left: 1rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li li li a {
    padding-left: 1.5rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li li li li a {
    padding-left: 2rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li li li li li a {
    padding-left: 2.5rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li li li li li li a {
    padding-left: 3rem;
  }
  .layout-container.layout-slim-plus .layout-menu-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .layout-container.layout-slim-plus .layout-menu-profile > button {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    margin: 0.75rem 0;
  }
  .layout-container.layout-slim-plus .layout-menu-profile > button span, .layout-container.layout-slim-plus .layout-menu-profile > button i {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-menu-profile > ul > li {
    margin: 0.75rem 0;
  }
  .layout-container.layout-slim-plus .layout-menu-profile > ul > li:first-child {
    margin-top: 0;
  }
  .layout-container.layout-slim-plus .layout-menu-profile > ul > li > button {
    width: 3rem;
    height: 3rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .layout-container.layout-slim-plus .layout-menu-profile > ul > li > button > i {
    font-size: 1.5rem;
    margin-right: 0;
  }
  .layout-container.layout-slim-plus .layout-menu-profile > ul > li > button > span {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-menu-profile > ul > li:last-child {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .layout-container.layout-horizontal .layout-sidebar {
    width: 100%;
    height: 3rem;
    top: 4rem;
    position: fixed;
    z-index: 998;
    overflow: visible;
    flex-direction: row;
    padding: 0 2rem;
  }
  .layout-container.layout-horizontal .layout-sidebar .layout-menu-container {
    overflow: auto;
    padding-bottom: 0;
    width: calc(100% - 300px);
  }
  .layout-container.layout-horizontal .layout-sidebar .layout-menu-container::-webkit-scrollbar {
    display: none;
  }
  .layout-container.layout-horizontal .layout-topbar .layout-topbar-start .layout-menu-button {
    display: none;
  }
  .layout-container.layout-horizontal .layout-topbar .layout-topbar-end {
    width: 300px;
  }
  .layout-container.layout-horizontal .layout-content-wrapper {
    padding-top: 7rem;
  }
  .layout-container.layout-horizontal .layout-menu {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    height: 100%;
  }
  .layout-container.layout-horizontal .layout-menu ul {
    display: none;
  }
  .layout-container.layout-horizontal .layout-menu li.active-menuitem > ul {
    display: block;
  }
  .layout-container.layout-horizontal .layout-menu li.active-menuitem > a .layout-submenu-toggler {
    transform: rotate(-180deg);
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem {
    border-radius: var(--border-radius);
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
    display: none;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > a {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0;
    cursor: pointer;
    outline: none;
    color: var(--menuitem-text-color);
    transition: background-color var(--transition-duration);
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > a .layout-submenu-toggler {
    display: block;
    margin-left: auto;
    transition: transform 0.2s;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > a .layout-menuitem-icon {
    font-size: 1.25rem;
    color: var(--menuitem-text-color);
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > a .layout-menuitem-text {
    font-size: 0.875rem;
    display: block;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    white-space: nowrap;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > a:hover {
    background-color: var(--menuitem-hover-bg);
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > ul {
    position: absolute;
    left: auto;
    top: 3rem;
    min-width: 15rem;
    background-color: var(--menu-bg);
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
    border-radius: var(--border-radius);
    max-height: 20rem;
    overflow: auto;
    z-index: 999;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > ul::-webkit-scrollbar {
    display: none;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > ul a {
    padding-right: 0.5rem;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > ul li a {
    padding-left: 0.5rem;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > ul li li a {
    padding-left: 1rem;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > ul li li li a {
    padding-left: 1.5rem;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > ul li li li li a {
    padding-left: 2rem;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > ul li li li li li a {
    padding-left: 2.5rem;
  }
  .layout-container.layout-horizontal .layout-menu .layout-root-menuitem > ul li li li li li li a {
    padding-left: 3rem;
  }
  .layout-container.layout-horizontal.layout-menu-profile-start .layout-menu-profile {
    border-bottom: 0 none;
  }
  .layout-container.layout-horizontal.layout-menu-profile-start .layout-menu-profile > ul {
    left: 0;
  }
  .layout-container.layout-horizontal.layout-menu-profile-end .layout-menu-profile {
    border-top: 0 none;
  }
  .layout-container.layout-horizontal.layout-menu-profile-end .layout-menu-profile > ul {
    right: 0;
  }
  .layout-container.layout-horizontal .layout-menu-profile {
    position: relative;
    overflow: visible;
    width: auto;
    height: 100%;
  }
  .layout-container.layout-horizontal .layout-menu-profile > button {
    padding: 0 0.75rem;
    width: auto;
    height: 100%;
  }
  .layout-container.layout-horizontal .layout-menu-profile > button .layout-menu-profile-toggler {
    margin-left: 0.5rem;
  }
  .layout-container.layout-horizontal .layout-menu-profile > ul {
    position: absolute;
    top: 3rem;
    min-width: 15rem;
    background-color: var(--menu-bg);
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
    padding: 1rem;
    border-radius: var(--border-radius);
    max-height: 20rem;
    overflow: auto;
    z-index: 999;
    transform-origin: center top;
  }
  .layout-container.layout-horizontal .layout-menu-profile > ul > li > button {
    padding: 0.75rem 0.5rem;
  }
}
@media screen and (min-width: 992px) {
  .layout-reveal .layout-sidebar {
    height: 100%;
    top: 0;
    transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
    transform: translateX(-12.75rem);
    z-index: 999;
  }
  .layout-reveal .layout-sidebar .layout-sidebar-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0.75rem;
    height: 4rem;
    background-color: var(--topbar-start-bg);
    color: var(--topbar-item-text-color);
  }
  .layout-reveal .layout-sidebar .layout-sidebar-top .layout-sidebar-logo {
    display: none;
  }
  .layout-reveal .layout-sidebar .layout-sidebar-top .layout-sidebar-logo-slim {
    display: inline;
  }
  .layout-reveal .layout-sidebar .layout-sidebar-top .layout-sidebar-anchor {
    display: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--topbar-menu-button-bg);
    background-color: transparent;
    transition: background-color var(--transition-duration), transform 0.3s;
  }
  .layout-reveal .layout-sidebar .layout-menu-container {
    overflow: hidden;
  }
  .layout-reveal .layout-sidebar .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text > span {
    margin-right: auto;
  }
  .layout-reveal .layout-sidebar .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text > .layout-menuitem-root-icon {
    display: block;
    margin-right: 0.125rem;
  }
  .layout-reveal .layout-sidebar .layout-menu-container .layout-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .layout-reveal .layout-sidebar .layout-menu-container .layout-menu ul a .layout-menuitem-text {
    order: 1;
    margin-right: auto;
  }
  .layout-reveal .layout-sidebar .layout-menu-container .layout-menu ul a .layout-submenu-toggler {
    order: 2;
    display: none;
    margin-right: 0.5rem;
  }
  .layout-reveal .layout-sidebar .layout-menu-container .layout-menu ul a .layout-menuitem-icon {
    order: 3;
    margin-right: 0;
    font-size: 1.25rem;
    width: auto;
  }
  .layout-reveal .layout-sidebar .layout-menu-profile > ul > li > button {
    flex-direction: row-reverse;
  }
  .layout-reveal .layout-sidebar .layout-menu-profile > ul > li > button > i {
    margin-right: 0;
    margin-left: auto;
    font-size: 1.25rem;
    width: auto;
  }
  .layout-reveal .layout-topbar {
    padding-left: 4.25rem;
  }
  .layout-reveal .layout-topbar .layout-topbar-start {
    display: none;
  }
  .layout-reveal.layout-reveal .layout-content-wrapper {
    margin-left: 4.25rem;
    transition: margin-left 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .layout-reveal.layout-sidebar-active .layout-sidebar {
    transform: translateX(0);
  }
  .layout-reveal.layout-sidebar-active .layout-sidebar .layout-sidebar-top {
    padding: 0 1.5rem;
    justify-content: space-between;
  }
  .layout-reveal.layout-sidebar-active .layout-sidebar .layout-sidebar-top .layout-sidebar-logo {
    display: inline;
  }
  .layout-reveal.layout-sidebar-active .layout-sidebar .layout-sidebar-top .layout-sidebar-logo-slim {
    display: none;
  }
  .layout-reveal.layout-sidebar-active .layout-sidebar .layout-sidebar-top .layout-sidebar-anchor {
    display: block;
    animation: px-fadein 0.15s linear;
  }
  .layout-reveal.layout-sidebar-active .layout-sidebar .layout-menu-container {
    overflow: auto;
  }
  .layout-reveal.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text > .layout-menuitem-root-icon {
    display: none;
  }
  .layout-reveal.layout-sidebar-active .layout-sidebar .layout-menu-container .layout-menu ul a .layout-submenu-toggler {
    display: block;
  }
  .layout-reveal.layout-sidebar-anchored .layout-topbar {
    padding-left: 17rem;
  }
  .layout-reveal.layout-sidebar-anchored .layout-sidebar-top .layout-sidebar-anchor {
    background-color: var(--topbar-menu-button-bg);
  }
  .layout-reveal.layout-sidebar-anchored .layout-content-wrapper {
    margin-left: 17rem;
  }
}
.layout-container.layout-menu-profile-active .layout-menu-profile-toggler {
  transform: rotate(-180deg);
}
.layout-container.layout-menu-profile-end .layout-menu-profile {
  border-top: 1px solid var(--inline-menu-border-color);
}
.layout-container.layout-menu-profile-start .layout-menu-profile {
  border-bottom: 1px solid var(--inline-menu-border-color);
}

.layout-menu-profile {
  width: 100%;
  background: var(--menu-bg);
  overflow: hidden;
}
.layout-menu-profile > button {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--menuitem-text-color);
  transition: background-color var(--transition-duration);
}
.layout-menu-profile > button > span {
  display: flex;
  flex-direction: column;
  margin-left: 0.5rem;
}
.layout-menu-profile > button > i {
  margin-left: auto;
  transition: transform var(--transition-duration);
}
.layout-menu-profile > button:hover {
  background-color: var(--menuitem-hover-bg);
}
.layout-menu-profile > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: max-height 400ms cubic-bezier(0.86, 0, 0.07, 1), opacity 400ms cubic-bezier(0.86, 0, 0.07, 1);
}
.layout-menu-profile > ul.overlay {
  transition: opacity 100ms linear, transform 120ms cubic-bezier(0, 0, 0.2, 1);
}
.layout-menu-profile > ul > li > button {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  transition: background-color var(--transition-duration), box-shadow var(--transition-duration);
  color: var(--menuitem-text-color);
}
.layout-menu-profile > ul > li > button > i {
  margin-right: 0.5rem;
  color: var(--menuitem-text-color);
}
.layout-menu-profile > ul > li > button:hover {
  background-color: var(--menuitem-hover-bg);
}

.layout-megamenu.p-megamenu {
  border: 0 none;
  padding: 0;
}

.parallax__layer__0 {
  transform: translateZ(-150px) scale(2.5);
}

.parallax__layer__1 {
  transform: translateZ(-100px) scale(2);
}

.parallax__layer__2 {
  transform: translateZ(-50px) scale(1.5);
}

.parallax__layer__3 {
  transform: translateZ(0px) scale(1);
}

html {
  height: 100%;
  font-size: 14px;
}

body {
  font-weight: 400;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background: var(--surface-ground);
  color: var(--text-color);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

.p-toast.p-toast-top-right, .p-toast.p-toast-top-left, .p-toast.p-toast-top-center {
  top: 85px;
}

.layout-content-wrapper {
  padding-top: 4rem;
}
.layout-content-wrapper .layout-content {
  min-height: calc(100vh - 13.5rem);
  padding: 2rem;
}

.layout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: var(--surface-card);
}

.layout-config-button {
  display: block;
  position: fixed;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  background: var(--primary-color);
  color: var(--primary-color-text);
  text-align: center;
  top: 50%;
  right: 0;
  margin-top: -1.5rem;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: background-color var(--transition-duration);
  overflow: hidden;
  cursor: pointer;
  z-index: 999;
  box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.15);
}
.layout-config-button.config-link {
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  border: none;
}
.layout-config-button .config-link:focus {
  outline: 0 none;
  outline-offset: 0;
  box-shadow: 0 0 0 1px var(--focus-ring);
}
.layout-config-button i {
  font-size: 2rem;
  line-height: inherit;
  transform: rotate(0deg);
  transition: transform 1s;
}
.layout-config-button:hover {
  background: var(--primary-400);
}

.layout-breadcrumb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08);
  padding: 1.2rem 2rem;
  background-color: var(--surface-card);
}
.layout-breadcrumb-container .layout-breadcrumb ol {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--text-color-secondary);
}
.layout-breadcrumb-container .layout-breadcrumb ol li {
  display: flex;
  align-items: center;
}
.layout-breadcrumb-container .layout-breadcrumb-buttons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.layout-breadcrumb-container .layout-breadcrumb-buttons button {
  flex-shrink: 0;
}

@media screen and (min-width: 992px) {
  .layout-container.layout-static .layout-sidebar {
    transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .layout-container.layout-static .layout-content-wrapper {
    margin-left: 17rem;
    transition: margin-left 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .layout-container.layout-static .layout-topbar .layout-menu-button i {
    transform: rotate(180deg);
  }
  .layout-container.layout-static-inactive .layout-sidebar {
    transform: translateX(-100%);
  }
  .layout-container.layout-static-inactive .layout-content-wrapper {
    margin-left: 0;
  }
  .layout-container.layout-static-inactive .layout-topbar .layout-menu-button i {
    transform: rotate(0deg);
  }
  .layout-container.layout-overlay .layout-content-wrapper {
    margin-left: 0;
  }
  .layout-container.layout-overlay .layout-sidebar {
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .layout-container.layout-overlay.layout-overlay-active .layout-sidebar {
    transform: translateX(0);
  }
  .layout-container.layout-overlay.layout-overlay-active .layout-topbar .layout-menu-button i {
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 991px) {
  .blocked-scroll {
    overflow: hidden;
  }
  .layout-container .layout-content-wrapper {
    margin-left: 0;
  }
  .layout-container .layout-sidebar {
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .layout-container.layout-mobile-active .layout-sidebar {
    transform: translateX(0);
  }
  .layout-container.layout-mobile-active .layout-mask {
    display: block;
    animation: px-mask-in 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
  .layout-container.layout-mobile-active .layout-topbar .layout-menu-button i {
    transform: rotate(180deg);
  }
  .layout-container .layout-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
    background-color: var(--maskbg);
  }
  .layout-container.layout-topbar-menu-active .layout-topbar .layout-topbar-end {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    position: fixed;
    top: 4rem;
    width: 100%;
    background-color: var(--topbar-bg);
    padding-left: 0;
  }
  .layout-container.layout-topbar-menu-active .layout-topbar .layout-topbar-end .layout-megamenu {
    height: 3rem;
  }
  .layout-container.layout-topbar-menu-active .layout-topbar .layout-topbar-end .layout-megamenu.p-megamenu .p-megamenu-root-list > .p-menuitem {
    position: static;
  }
  .layout-container.layout-topbar-menu-active .layout-topbar .layout-topbar-end .layout-megamenu.p-megamenu .p-megamenu-root-list > .p-menuitem .p-megamenu-panel {
    position: absolute;
    left: 1rem;
    right: 1rem;
    max-height: 20rem;
    overflow: auto;
  }
  .layout-container.layout-topbar-menu-active .layout-topbar .layout-topbar-end .layout-megamenu.p-megamenu .p-megamenu-root-list > .p-menuitem .p-megamenu-grid {
    flex-direction: column;
  }
  .layout-container.layout-topbar-menu-active .layout-topbar .layout-topbar-end .layout-topbar-items {
    justify-content: space-between;
    align-items: center;
    height: 3rem;
    padding: 0 1rem;
  }
  .layout-container.layout-topbar-menu-active .layout-topbar .layout-topbar-end .layout-topbar-items > li {
    position: static;
  }
  .layout-container.layout-topbar-menu-active .layout-topbar .layout-topbar-end .layout-topbar-items > li > div {
    left: 1rem;
    right: 1rem;
  }
  .layout-container.layout-topbar-menu-active .layout-topbar .layout-topbar-actions-start {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
  }
  .layout-topbar {
    display: flex;
    flex-direction: column;
  }
  .layout-topbar .layout-topbar-start {
    padding: 0 1rem;
    width: 100%;
    height: 4rem;
    justify-content: start;
  }
  .layout-topbar .layout-topbar-start .layout-menu-button {
    position: relative;
    margin-top: 0;
    margin-left: 1rem;
    top: auto;
  }
  .layout-topbar .layout-topbar-start .layout-topbar-mobile-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: background-color var(--transition-duration);
  }
  .layout-topbar .layout-topbar-start .layout-topbar-mobile-button:hover {
    background-color: var(--topbar-bg);
  }
  .layout-topbar .layout-topbar-end {
    display: none;
  }
}
@media screen and (min-width: 1729px) {
  .layout-content {
    width: 1504px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
 /*!
 * Copyright (c) HANDSONCODE sp. z o. o.
 *
 * HANDSONTABLE is a software distributed by HANDSONCODE sp. z o. o., a Polish corporation based in
 * Gdynia, Poland, at Aleja Zwyciestwa 96-98, registered by the District Court in Gdansk under number
 * 538651, EU tax ID number: PL5862294002, share capital: PLN 62,800.00.
 *
 * This software is protected by applicable copyright laws, including international treaties, and dual-
 * licensed - depending on whether your use for commercial purposes, meaning intended for or
 * resulting in commercial advantage or monetary compensation, or not.
 *
 * If your use is strictly personal or solely for evaluation purposes, meaning for the purposes of testing
 * the suitability, performance, and usefulness of this software outside the production environment,
 * you agree to be bound by the terms included in the "handsontable-non-commercial-license.pdf" file.
 *
 * Your use of this software for commercial purposes is subject to the terms included in an applicable
 * license agreement.
 *
 * In any case, you must not make any such use of this software as to develop software which may be
 * considered competitive with this software.
 *
 * UNLESS EXPRESSLY AGREED OTHERWISE, HANDSONCODE PROVIDES THIS SOFTWARE ON AN "AS IS"
 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, AND IN NO EVENT AND UNDER NO
 * LEGAL THEORY, SHALL HANDSONCODE BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT,
 * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
 * USE OR INABILITY TO USE THIS SOFTWARE.
 *
 * Version: 16.0.1
 * Release date: 10/07/2025 (built at 10/07/2025 10:59:32)
 */.handsontable .table td,.handsontable .table th{border-top:none}.handsontable tr{background:#fff}.handsontable td{background-color:inherit}.handsontable .table caption+thead tr:first-child td,.handsontable .table caption+thead tr:first-child th,.handsontable .table colgroup+thead tr:first-child td,.handsontable .table colgroup+thead tr:first-child th,.handsontable .table thead:first-child tr:first-child td,.handsontable .table thead:first-child tr:first-child th{border-top:1px solid #ccc}.handsontable .table-bordered{border:0;border-collapse:separate}.handsontable .table-bordered td,.handsontable .table-bordered th{border-left:none}.handsontable .table-bordered td:first-child,.handsontable .table-bordered th:first-child{border-left:1px solid #ccc}.handsontable .table>tbody>tr>td,.handsontable .table>tbody>tr>th,.handsontable .table>tfoot>tr>td,.handsontable .table>tfoot>tr>th,.handsontable .table>thead>tr>td,.handsontable .table>thead>tr>th{line-height:21px;padding:0}.col-lg-1.handsontable,.col-lg-10.handsontable,.col-lg-11.handsontable,.col-lg-12.handsontable,.col-lg-2.handsontable,.col-lg-3.handsontable,.col-lg-4.handsontable,.col-lg-5.handsontable,.col-lg-6.handsontable,.col-lg-7.handsontable,.col-lg-8.handsontable,.col-lg-9.handsontable,.col-md-1.handsontable,.col-md-10.handsontable,.col-md-11.handsontable,.col-md-12.handsontable,.col-md-2.handsontable,.col-md-3.handsontable,.col-md-4.handsontable,.col-md-5.handsontable,.col-md-6.handsontable,.col-md-7.handsontable,.col-md-8.handsontable,.col-md-9.handsontable .col-sm-1.handsontable,.col-sm-10.handsontable,.col-sm-11.handsontable,.col-sm-12.handsontable,.col-sm-2.handsontable,.col-sm-3.handsontable,.col-sm-4.handsontable,.col-sm-5.handsontable,.col-sm-6.handsontable,.col-sm-7.handsontable,.col-sm-8.handsontable,.col-sm-9.handsontable .col-xs-1.handsontable,.col-xs-10.handsontable,.col-xs-11.handsontable,.col-xs-12.handsontable,.col-xs-2.handsontable,.col-xs-3.handsontable,.col-xs-4.handsontable,.col-xs-5.handsontable,.col-xs-6.handsontable,.col-xs-7.handsontable,.col-xs-8.handsontable,.col-xs-9.handsontable{padding-left:0;padding-right:0}.handsontable .table-striped>tbody>tr:nth-of-type(2n){background-color:#fff}.handsontable .hide{display:none}.handsontable .relative{position:relative}.handsontable .wtHider{position:relative;width:0}.handsontable .wtSpreader{height:auto;position:relative;width:0}.handsontable div,.handsontable input,.handsontable table,.handsontable tbody,.handsontable td,.handsontable textarea,.handsontable th,.handsontable thead{box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box}.handsontable input,.handsontable textarea{min-height:auto}.handsontable table.htCore{border-collapse:separate;border-spacing:0;border-width:0;cursor:default;margin:0;max-height:none;max-width:none;outline-width:0;table-layout:fixed;width:0}.handsontable col,.handsontable col.rowHeader{width:50px}.handsontable td,.handsontable th{background-color:#fff;border-bottom:1px solid #ccc;border-left-width:0;border-right:1px solid #ccc;border-top-width:0;empty-cells:show;height:22px;line-height:21px;outline:none;outline-width:0;overflow:hidden;padding:0 4px;vertical-align:top;white-space:pre-wrap}[dir=rtl].handsontable td,[dir=rtl].handsontable th{border-left:1px solid #ccc;border-right-width:0}.handsontable th:last-child{border-bottom:1px solid #ccc;border-left:none;border-right:1px solid #ccc}[dir=rtl].handsontable th:last-child{border-left:1px solid #ccc;border-right:none}.handsontable td:first-of-type,.handsontable th:first-child{border-left:1px solid #ccc}[dir=rtl].handsontable td:first-of-type,[dir=rtl].handsontable th:first-child{border-right:1px solid #ccc}.handsontable .ht_clone_top th:nth-child(2){border-left-width:0;border-right:1px solid #ccc}[dir=rtl].handsontable .ht_clone_top th:nth-child(2){border-left:1px solid #ccc;border-right-width:0}.handsontable.htRowHeaders thead tr th:nth-child(2){border-left:1px solid #ccc}[dir=rtl].handsontable.htRowHeaders thead tr th:nth-child(2){border-right:1px solid #ccc}.handsontable tr:first-child td,.handsontable tr:first-child th{border-top:1px solid #ccc}.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) tbody tr th,.ht_master:not(.innerBorderInlineStart):not(.emptyColumns) thead tr th:first-child,.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.htGhostTable) tbody tr th,.ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top):not(.htGhostTable) thead tr th:first-child{border-left:1px solid #ccc;border-right-width:0}[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) tbody tr th,[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns) thead tr th:first-child,[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.htGhostTable) tbody tr th,[dir=rtl].ht_master:not(.innerBorderInlineStart):not(.emptyColumns)~.handsontable:not(.ht_clone_top):not(.htGhostTable) thead tr th:first-child{border-left-width:0;border-right:1px solid #ccc}.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr.lastChild th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr:last-child th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom)~.handsontable thead tr.lastChild th,.ht_master:not(.innerBorderTop):not(.innerBorderBottom)~.handsontable thead tr:last-child th{border-bottom-width:0}.handsontable th{background-color:#f0f0f0;color:#222;font-weight:400;text-align:center;white-space:nowrap}.handsontable thead th{padding:0}.handsontable th.active{background-color:#ccc}.handsontable thead th .relative{padding:2px 4px}.handsontable span.colHeader{display:inline-block;line-height:1.1}.handsontable .wtBorder{font-size:0;position:absolute}.handsontable .wtBorder.hidden{display:none!important}.handsontable .wtBorder:first-child,.handsontable .wtBorder:nth-child(3){z-index:2}.handsontable .wtBorder:nth-child(2),.handsontable .wtBorder:nth-child(4){z-index:1}.handsontable .wtBorder.current{z-index:10}.handsontable .wtBorder.area{z-index:8}.handsontable .wtBorder.fill{z-index:6}.handsontable .wtBorder.corner{cursor:crosshair;font-size:0}.ht_clone_master{z-index:100}.ht_clone_inline_start{z-index:120}.ht_clone_bottom{z-index:130}.ht_clone_bottom_inline_start_corner{z-index:150}.ht_clone_top{z-index:160}.ht_clone_top_inline_start_corner{z-index:180}.handsontable col.hidden{width:0!important}.handsontable tr.hidden,.handsontable tr.hidden td,.handsontable tr.hidden th{display:none}.ht_clone_bottom,.ht_clone_inline_start,.ht_clone_top,.ht_master{overflow:hidden}.ht_master .wtHolder{overflow:auto}.handsontable .ht_clone_inline_start table.htCore>thead,.handsontable .ht_master table.htCore>tbody>tr>th,.handsontable .ht_master table.htCore>thead{visibility:hidden}.ht_clone_bottom .wtHolder,.ht_clone_inline_start .wtHolder,.ht_clone_top .wtHolder{overflow:hidden}.handsontable{color:#373737;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif;font-size:13px;font-weight:400;position:relative;touch-action:manipulation}.handsontable a{color:#104acc}.handsontable.htAutoSize{left:-99000px;position:absolute;top:-99000px;visibility:hidden}.handsontable td.htInvalid{background-color:#ffbeba!important}.handsontable td.htNoWrap{white-space:nowrap}.handsontable td.invisibleSelection,.handsontable th.invisibleSelection{outline:none}.handsontable td.invisibleSelection::selection,.handsontable th.invisibleSelection::selection{background:hsla(0,0%,100%,0)}.hot-display-license-info{color:#373737;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Helvetica Neue,Arial,sans-serif;font-size:10px;font-weight:400;padding:5px 0 3px;text-align:left}.hot-display-license-info a{color:#104acc;font-size:10px}.ht-root-wrapper .htFocusCatcher{border:0;height:0;margin:0;opacity:0;padding:0;position:absolute;width:0;z-index:-1}.handsontable .htTextEllipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.handsontable .manualColumnResizer{cursor:col-resize;height:25px;position:absolute;top:0;width:5px;z-index:210}.handsontable .manualRowResizer{cursor:row-resize;height:5px;left:0;position:absolute;width:50px;z-index:210}.handsontable .manualColumnResizer.active,.handsontable .manualColumnResizer:hover,.handsontable .manualRowResizer.active,.handsontable .manualRowResizer:hover{background-color:#34a9db}.handsontable .manualColumnResizerGuide{background-color:#34a9db;border-left:none;border-right:1px dashed #777;display:none;margin-left:5px;margin-right:unset;position:absolute;right:unset;top:0;width:0}[dir=rtl].handsontable .manualColumnResizerGuide{border-left:1px dashed #777;border-right:none;left:unset;margin-left:unset;margin-right:5px}.handsontable .manualRowResizerGuide{background-color:#34a9db;border-bottom:1px dashed #777;bottom:0;display:none;height:0;left:0;margin-top:5px;position:absolute}.handsontable .manualColumnResizerGuide.active,.handsontable .manualRowResizerGuide.active{display:block;z-index:209}.handsontable td.area,.handsontable td.area-1,.handsontable td.area-2,.handsontable td.area-3,.handsontable td.area-4,.handsontable td.area-5,.handsontable td.area-6,.handsontable td.area-7{position:relative}.handsontable td.area-1:before,.handsontable td.area-2:before,.handsontable td.area-3:before,.handsontable td.area-4:before,.handsontable td.area-5:before,.handsontable td.area-6:before,.handsontable td.area-7:before,.handsontable td.area:before{background:#005eff;bottom:0;content:"";left:0;position:absolute;right:0;top:0}.handsontable td.area:before{opacity:.1}.handsontable td.area-1:before{opacity:.2}.handsontable td.area-2:before{opacity:.27}.handsontable td.area-3:before{opacity:.35}.handsontable td.area-4:before{opacity:.41}.handsontable td.area-5:before{opacity:.47}.handsontable td.area-6:before{opacity:.54}.handsontable td.area-7:before{opacity:.58}.handsontable tbody th.current,.handsontable thead th.current{box-shadow:inset 0 0 0 2px #4b89ff}.handsontable tbody th.ht__highlight,.handsontable thead th.ht__highlight{background-color:#dcdcdc}.handsontable tbody th.ht__active_highlight,.handsontable thead th.ht__active_highlight{background-color:#8eb0e7;color:#000}.handsontableInput{background-color:#fff;border:none;border-radius:0;box-shadow:inset 0 0 0 2px #5292f7;box-sizing:border-box!important;color:#000;display:block;font-family:inherit;font-size:inherit;line-height:21px;margin:0;outline-width:0;padding:1px 5px 0;resize:none}.handsontableInput:focus{outline:none}.handsontableInputHolder{left:0;position:absolute;top:0}.htSelectEditor{position:absolute;select{-webkit-appearance:menulist-button!important;border:2px solid #4b89ff;box-sizing:border-box!important;height:100%;width:100%}}.htSelectEditor select:focus{outline:none}.htSelectEditor .htAutocompleteArrow{display:none}.handsontable .htDimmed{color:#777}.handsontable .htSubmenu{position:relative}.handsontable .htSubmenu :after{color:#777;content:"▶";font-size:9px;position:absolute;right:5px}[dir=rtl].handsontable .htSubmenu :after{content:""}[dir=rtl].handsontable .htSubmenu :before{color:#777;content:"◀";font-size:9px;left:5px;position:absolute}.handsontable .htLeft{text-align:left}.handsontable .htCenter{text-align:center}.handsontable .htRight{text-align:right}.handsontable .htJustify{text-align:justify}.handsontable .htTop{vertical-align:top}.handsontable .htMiddle{vertical-align:middle}.handsontable .htBottom{vertical-align:bottom}.handsontable .htPlaceholder{color:#999}.handsontable.listbox{border:1px solid #ccc;margin:0}.handsontable.listbox.autocompleteEditor,.handsontable.listbox.dropdownEditor{border-width:0}.handsontable.listbox .ht_master table{background:#fff;border-collapse:separate}.handsontable.listbox.autocompleteEditor .ht_master table,.handsontable.listbox.dropdownEditor .ht_master table{border:1px solid #ccc}.handsontable.listbox td,.handsontable.listbox th,.handsontable.listbox tr:first-child td,.handsontable.listbox tr:first-child th,.handsontable.listbox tr:last-child th{border-color:transparent!important}.handsontable.listbox td,.handsontable.listbox th{text-overflow:ellipsis;white-space:nowrap}.handsontable.listbox td.htDimmed{color:inherit;cursor:default;font-style:inherit}.handsontable.listbox .wtBorder{visibility:hidden}.handsontable.listbox tr td.current,.handsontable.listbox tr:hover td{background:#eee}.ht_editor_hidden{z-index:-1}.ht_editor_visible{z-index:200}.handsontable td.htSearchResult{background:#fcedd9;color:#583707}.handsontable.mobile,.handsontable.mobile .wtHolder{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-overflow-scrolling:touch}.handsontable.mobile .handsontableInput:focus{-webkit-appearance:none;-webkit-box-shadow:inset 0 0 0 2px #5292f7;-moz-box-shadow:inset 0 0 0 2px #5292f7;box-shadow:inset 0 0 0 2px #5292f7}.handsontable .bottomSelectionHandle,.handsontable .bottomSelectionHandle-HitArea,.handsontable .topSelectionHandle,.handsontable .topSelectionHandle-HitArea{left:-10000px;right:unset;top:-10000px;z-index:9999}[dir=rtl].handsontable .bottomSelectionHandle,[dir=rtl].handsontable .bottomSelectionHandle-HitArea,[dir=rtl].handsontable .topSelectionHandle,[dir=rtl].handsontable .topSelectionHandle-HitArea{left:unset;right:-10000px}.handsontable.hide-tween{-webkit-animation:opacity-hide .3s;animation:opacity-hide .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable.show-tween{-webkit-animation:opacity-show .3s;animation:opacity-show .3s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.handsontable .htAutocompleteArrow{color:#bbb;cursor:default;float:right;font-size:10px;text-align:center;width:16px}[dir=rtl].handsontable .htAutocompleteArrow{float:left}.handsontable td.htInvalid .htAutocompleteArrow{color:#555}.handsontable td.htInvalid .htAutocompleteArrow:hover{color:#1a1a1a}.handsontable td .htAutocompleteArrow:hover{color:#777}.handsontable td.area .htAutocompleteArrow{color:#d3d3d3}.handsontable .htCheckboxRendererInput.noValue{opacity:.5}.handsontable .htCheckboxRendererLabel{cursor:pointer;display:inline-block;font-size:inherit;vertical-align:middle}.handsontable .htCheckboxRendererLabel.fullWidth{width:100%}.handsontable .collapsibleIndicator{background:#eee;border:1px solid #a6a6a6;border-radius:10px;-webkit-box-shadow:0 0 0 6px #eee;-moz-box-shadow:0 0 0 6px #eee;box-shadow:0 0 0 3px #eee;color:#222;cursor:pointer;font-size:10px;height:10px;left:unset;line-height:8px;position:absolute;right:5px;text-align:center;top:50%;transform:translateY(-50%);width:10px}[dir=rtl].handsontable .collapsibleIndicator{left:5px;right:unset}.handsontable[dir=ltr] thead th:has(.collapsibleIndicator) div.htRight span.colHeader{margin-right:20px}.handsontable[dir=rtl] thead th:has(.collapsibleIndicator) div.htLeft span.colHeader{margin-left:20px}.handsontable .columnSorting{position:relative}.handsontable[dir=ltr] div.htRight span[class*=ascending],.handsontable[dir=ltr] div.htRight span[class*=descending]{margin-left:-10px;margin-right:10px}.handsontable[dir=rtl] div.htLeft span[class*=ascending],.handsontable[dir=rtl] div.htLeft span[class*=descending]{margin-left:10px;margin-right:-10px}.handsontable[dir=ltr] div.htRight span[class*=ascending]:only-child,.handsontable[dir=ltr] div.htRight span[class*=descending]:only-child{margin-left:-15px;margin-right:15px}.handsontable[dir=rtl] div.htLeft span[class*=ascending]:only-child,.handsontable[dir=rtl] div.htLeft span[class*=descending]:only-child{margin-left:15px;margin-right:-15px}.handsontable .columnSorting.sortAction:hover{cursor:pointer;text-decoration:underline}.handsontable span.colHeader.columnSorting:before{background-position-x:right;background-repeat:no-repeat;background-size:contain;content:"";height:10px;left:unset;margin-top:-6px;padding-left:8px;padding-right:0;position:absolute;right:-9px;top:50%;width:5px}[dir=rtl].handsontable span.colHeader.columnSorting:before{background-position-x:left;left:-9px;padding-left:0;padding-right:8px;right:unset}.handsontable span.colHeader.columnSorting.ascending:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC)}.handsontable span.colHeader.columnSorting.descending:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=)}.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled):before{content:"*";display:inline-block;padding-right:20px;position:relative}.handsontable.htGhostTable table thead th{border-bottom-width:0}.handsontable.htGhostTable table tbody tr td,.handsontable.htGhostTable table tbody tr th{border-top-width:0}.handsontable .htCommentCell{position:relative}.handsontable .htCommentCell:after{border-left:6px solid transparent;border-right:none;border-top:6px solid #000;content:"";left:unset;position:absolute;right:0;top:0}[dir=rtl].handsontable .htCommentCell:after{border-left:none;border-right:6px solid transparent;left:0;right:unset}.htCommentsContainer .htComments{display:none;position:absolute;z-index:1059}.htCommentsContainer .htCommentTextArea{-webkit-appearance:none;background-color:#fff;border:none;border-left:3px solid #ccc;box-shadow:0 1px 3px rgba(0,0,0,.118),0 1px 2px rgba(0,0,0,.239);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font-size:12px;height:90px;outline:0!important;padding:5px;width:215px}[dir=rtl].htCommentsContainer .htCommentTextArea{border-left:none;border-right:3px solid #ccc}.htCommentsContainer .htCommentTextArea:focus{border-left:3px solid #5292f7;border-right:none;box-shadow:0 1px 3px rgba(0,0,0,.118),0 1px 2px rgba(0,0,0,.239),inset 0 0 0 1px #5292f7}[dir=rtl].htCommentsContainer .htCommentTextArea:focus{border-left:none;border-right:3px solid #5292f7}
/*!
 * Handsontable ContextMenu
 */.htContextMenu:not(.htGhostTable){display:none;position:absolute;z-index:1060}.htContextMenu .ht_clone_bottom,.htContextMenu .ht_clone_bottom_inline_start_corner,.htContextMenu .ht_clone_inline_start,.htContextMenu .ht_clone_top,.htContextMenu .ht_clone_top_inline_start_corner{display:none}.htContextMenu .ht_master table.htCore{border-color:#ccc;border-style:solid;border-width:1px 2px 2px 1px}[dir=rtl].htContextMenu .ht_master table.htCore{border-left-width:2px;border-right-width:1px}.htContextMenu.handsontable:focus{outline:none}.htContextMenu .wtBorder{visibility:hidden}.htContextMenu table tbody tr td{background:#fff;border-width:0;cursor:pointer;overflow:hidden;padding:4px 6px 0;text-overflow:ellipsis;white-space:nowrap}.htContextMenu table tbody tr td:first-child{border-width:0}[dir=rtl].htContextMenu table tbody tr td:first-child{border-left-width:0;border-right-width:0}.htContextMenu table tbody tr td.htDimmed{color:#323232;font-style:normal}.htContextMenu table tbody tr td.current{background:#f3f3f3}.htContextMenu table tbody tr td.htSeparator{border-top:1px solid #e6e6e6;cursor:default;height:0;padding:0}.htContextMenu table tbody tr td.htDisabled{color:#999;cursor:default}.htContextMenu table tbody tr td.htDisabled:hover{background:#fff;color:#999;cursor:default}.htContextMenu table tbody tr.htHidden{display:none}.htContextMenu table tbody tr td .htItemWrapper{margin-left:10px;margin-right:6px}[dir=rtl].htContextMenu table tbody tr td .htItemWrapper{margin-left:6px;margin-right:10px}.htContextMenu table tbody tr td div span.selected{left:4px;margin-top:-2px;position:absolute;right:0}[dir=rtl].htContextMenu table tbody tr td div span.selected{left:0;right:4px}.htContextMenu .ht_master .wtHolder{overflow:hidden}textarea.HandsontableCopyPaste{opacity:0;outline:0 none!important;overflow:hidden;position:fixed!important;right:100%!important;top:0!important}

/*!
 * Handsontable DropdownMenu
 */.handsontable .changeType{background:#eee;border:1px solid #bbb;border-radius:2px;color:#bbb;float:right;font-size:9px;line-height:9px;margin:3px 1px 0 5px;padding:2px}[dir=rtl].handsontable .changeType{float:left}.handsontable[dir=rtl] .changeType{margin:3px 5px 0 1px}.handsontable .changeType:before{content:"▼ "}.handsontable .changeType:hover{border:1px solid #777;color:#777;cursor:pointer}.htDropdownMenu:not(.htGhostTable){display:none;position:absolute;z-index:1060}.htDropdownMenu .ht_clone_bottom,.htDropdownMenu .ht_clone_bottom_inline_start_corner,.htDropdownMenu .ht_clone_inline_start,.htDropdownMenu .ht_clone_top,.htDropdownMenu .ht_clone_top_inline_start_corner{display:none}.htDropdownMenu table.htCore{border-color:#ccc;border-style:solid;border-width:1px 2px 2px 1px}[dir=rtl].htDropdownMenu table.htCore{border-left-width:2px;border-right-width:1px}.htDropdownMenu.handsontable:focus{outline:none}.htDropdownMenu .wtBorder{visibility:hidden}.htDropdownMenu table tbody tr td{background:#fff;border-width:0;cursor:pointer;overflow:hidden;padding:4px 6px 0;text-overflow:ellipsis;white-space:nowrap}.htDropdownMenu table tbody tr td:first-child{border-width:0}[dir=rtl].htDropdownMenu table tbody tr td:first-child{border-left-width:0;border-right-width:0}.htDropdownMenu table tbody tr td.htDimmed{color:#323232;font-style:normal}.htDropdownMenu table tbody tr td.current{background:#e9e9e9}.htDropdownMenu table tbody tr td.htSeparator{border-top:1px solid #e6e6e6;cursor:default;height:0;padding:0}.htDropdownMenu table tbody tr td.htDisabled{color:#999}.htDropdownMenu table tbody tr td.htDisabled:hover{background:#fff;color:#999;cursor:default}.htDropdownMenu:not(.htGhostTable) table tbody tr.htHidden{display:none}.htDropdownMenu table tbody tr td .htItemWrapper,[dir=rtl].htDropdownMenu table tbody tr td .htItemWrapper{margin-left:10px;margin-right:10px}.htDropdownMenu table tbody tr td div span.selected{left:4px;margin-top:-2px;position:absolute;right:0}[dir=rtl].htDropdownMenu table tbody tr td div span.selected{left:0;right:4px}.htDropdownMenu .ht_master .wtHolder{overflow:hidden}

/*!
 * Handsontable Filters
 */.htFiltersConditionsMenu:not(.htGhostTable){display:none;position:absolute;z-index:1070}.htFiltersConditionsMenu .ht_clone_bottom,.htFiltersConditionsMenu .ht_clone_bottom_inline_start_corner,.htFiltersConditionsMenu .ht_clone_inline_start,.htFiltersConditionsMenu .ht_clone_top,.htFiltersConditionsMenu .ht_clone_top_inline_start_corner{display:none}.htFiltersConditionsMenu table.htCore{border-color:#bbb;border-style:solid;border-width:1px 2px 2px 1px}.htFiltersConditionsMenu .wtBorder{visibility:hidden}.htFiltersConditionsMenu table tbody tr td{background:#fff;border-width:0;cursor:pointer;overflow:hidden;padding:4px 6px 0;text-overflow:ellipsis;white-space:nowrap}.htFiltersConditionsMenu table tbody tr td:first-child{border-width:0}[dir=rtl].htFiltersConditionsMenu table tbody tr td:first-child{border-left-width:0;border-right-width:0}.htFiltersConditionsMenu table tbody tr td.htDimmed{color:#323232;font-style:normal}.htFiltersConditionsMenu table tbody tr td.current{background:#e9e9e9}.htFiltersConditionsMenu table tbody tr td.htSeparator{border-top:1px solid #e6e6e6;height:0;padding:0}.htFiltersConditionsMenu table tbody tr td.htDisabled{color:#999}.htFiltersConditionsMenu table tbody tr td.htDisabled:hover{background:#fff;color:#999;cursor:default}.htFiltersConditionsMenu table tbody tr td .htItemWrapper{margin-left:10px;margin-right:10px}.htFiltersConditionsMenu table tbody tr td div span.selected{left:4px;margin-top:-2px;position:absolute}.htFiltersConditionsMenu .ht_master .wtHolder{overflow:hidden}.handsontable .htMenuFiltering{border-bottom:1px dotted #ccc;height:135px;overflow:hidden}.handsontable .ht_master table td.htCustomMenuRenderer{background-color:#fff;cursor:auto}.handsontable .htFiltersMenuLabel{font-size:.75em}.handsontable .htFiltersMenuActionBar{padding-bottom:3px;padding-top:10px;text-align:center}.handsontable .htFiltersMenuCondition.border{border-bottom:1px dotted #ccc!important}.handsontable .htFiltersMenuCondition .htUIInput{padding:0 0 5px}.handsontable .htFiltersMenuValue{border-bottom:1px dotted #ccc!important}.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch{padding:0}.handsontable .htFiltersMenuCondition .htUIInput input,.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input{box-sizing:border-box;font-family:inherit;font-size:.75em;padding:4px;width:100%}.htUIMultipleSelect .ht_master .wtHolder{overflow:auto}.handsontable .htFiltersActive .changeType{background-color:#d2e0d9;border:1px solid #509272;color:#18804e}.handsontable .htUISelectAll{margin-left:0;margin-right:10px}[dir=rtl].handsontable .htUISelectAll{margin-left:10px;margin-right:0}.handsontable .htUIClearAll,.handsontable .htUISelectAll{display:inline-block}.handsontable .htUIClearAll a,.handsontable .htUISelectAll a{font-size:.75em}.handsontable .htUISelectionControls{text-align:right}[dir=rtl].handsontable .htUISelectionControls{text-align:left}.handsontable .htCheckboxRendererInput{display:inline-block;height:1em;margin:0 5px 0 0;vertical-align:middle}[dir=rtl].handsontable .htCheckboxRendererInput{margin-left:5px;margin-right:0}.handsontable .htUIInput{padding:3px 0 7px;position:relative;text-align:center}.handsontable .htUIInput input{border:1px solid #d2d1d1;border-radius:2px}.handsontable .htUIInputIcon{position:absolute}.handsontable .htUIInput.htUIButton{cursor:pointer;display:inline-block}.handsontable .htUIInput.htUIButton input{background-color:#eee;color:#000;cursor:pointer;font-family:inherit;font-size:.75em;font-weight:700;height:19px;min-width:64px}.handsontable .htUIInput.htUIButton input:hover{border-color:#b9b9b9}.handsontable .htUIInput.htUIButtonOK{margin-left:0;margin-right:10px}[dir=rtl].handsontable .htUIInput.htUIButtonOK{margin-left:10px;margin-right:0}.handsontable .htUIInput.htUIButtonOK input{background-color:#0f9d58;border-color:#18804e;color:#fff}.handsontable .htUIInput.htUIButtonOK input:focus-visible{background-color:#92dd8d;border-color:#7cb878;color:#000}.handsontable .htUIInput.htUIButtonOK input:hover{border-color:#1a6f46}.handsontable .htUISelect{cursor:pointer;margin-bottom:7px;position:relative}.handsontable .htUISelectCaption{background-color:#e8e8e8;border:1px solid #d2d1d1;border-radius:2px;font-family:inherit;font-size:.75em;font-weight:700;overflow:hidden;padding:3px 20px 3px 10px;text-overflow:ellipsis;white-space:nowrap}.handsontable .htUISelectCaption:hover{background-color:#e8e8e8;border:1px solid #b9b9b9}.handsontable .htUISelectDropdown:after{content:"▲";font-size:7px;position:absolute;right:10px;top:0}.handsontable .htUISelectDropdown:before{content:"▼";font-size:7px;position:absolute;right:10px;top:8px}.handsontable .htUIMultipleSelect .handsontable .htCore{border:none}.handsontable .htUIMultipleSelect .handsontable .htCore td:hover{background-color:#f5f5f5}.handsontable .htUIMultipleSelectSearch input{border:1px solid #d2d1d1;border-radius:2px;padding:3px}.handsontable .htUIRadio{display:inline-block;height:100%;margin-left:0;margin-right:5px}[dir=rtl].handsontable .htUIRadio{margin-left:5px;margin-right:0}.handsontable .htUIRadio:last-child{margin-right:0}.handsontable .htUIRadio>input[type=radio]{margin-left:0;margin-right:.5ex}[dir=rtl].handsontable .htUIRadio>input[type=radio]{margin-left:.5ex;margin-right:0}.handsontable .htUIRadio label{vertical-align:middle}.handsontable .htFiltersMenuOperators{padding-bottom:5px}.handsontable th.beforeHiddenColumn{position:relative}.handsontable th.afterHiddenColumn:before,.handsontable th.beforeHiddenColumn:after{color:#bbb;font-size:5pt;position:absolute;top:50%;transform:translateY(-50%)}.handsontable th.afterHiddenColumn{position:relative}.handsontable[dir=ltr] th.afterHiddenColumn div.htLeft{margin-left:10px}.handsontable[dir=ltr] th.beforeHiddenColumn div.htRight,.handsontable[dir=rtl] th.afterHiddenColumn div.htRight{margin-right:10px}.handsontable[dir=rtl] th.beforeHiddenColumn div.htLeft{margin-left:10px}.handsontable th.beforeHiddenColumn:after{content:"◀";right:1px}[dir=rtl].handsontable th.beforeHiddenColumn:after{content:"▶";left:1px;right:auto}.handsontable th.afterHiddenColumn:before{content:"▶";left:1px}[dir=rtl].handsontable th.afterHiddenColumn:before{content:"◀";left:auto;right:1px}

/*!
 * Handsontable HiddenRows
 */.handsontable th.afterHiddenRow:after,.handsontable th.beforeHiddenRow:before{color:#bbb;font-size:6pt;left:2px;line-height:6pt;position:absolute}.handsontable th.afterHiddenRow,.handsontable th.beforeHiddenRow{position:relative}.handsontable th.beforeHiddenRow:before{bottom:2px;content:"▲"}.handsontable th.afterHiddenRow:after{content:"▼";top:2px}.handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight:after,.handsontable.ht__selection--rows tbody th.beforeHiddenRow.ht__highlight:before{color:#eee}.handsontable td.afterHiddenRow.firstVisibleRow,.handsontable th.afterHiddenRow.firstVisibleRow{border-top:1px solid #ccc}.htRowHeaders .ht_master.innerBorderInlineStart~.ht_clone_inline_start td:first-of-type,.htRowHeaders .ht_master.innerBorderInlineStart~.ht_clone_top_inline_start_corner th:nth-child(2){border-left:0}.handsontable.ht__manualColumnMove.after-selection--columns thead th.ht__highlight{cursor:move;cursor:-moz-grab;cursor:-webkit-grab;cursor:grab}.handsontable.ht__manualColumnMove.on-moving--columns *,.handsontable.ht__manualColumnMove.on-moving--columns thead th.ht__highlight{cursor:move;cursor:-moz-grabbing;cursor:-webkit-grabbing;cursor:grabbing}.handsontable.ht__manualColumnMove.on-moving--columns .manualColumnResizer{display:none}.handsontable .ht__manualColumnMove--backlight,.handsontable .ht__manualColumnMove--guideline{display:none;height:100%;position:absolute}.handsontable .ht__manualColumnMove--guideline{background:#757575;margin-inline-end:0;margin-inline-start:-1px;top:0;width:2px;z-index:205}.handsontable .ht__manualColumnMove--backlight{background:#343434;background:rgba(52,52,52,.25);display:none;pointer-events:none;z-index:205}.handsontable.on-moving--columns .ht__manualColumnMove--backlight,.handsontable.on-moving--columns.show-ui .ht__manualColumnMove--guideline{display:block}.handsontable.ht__manualRowMove.after-selection--rows tbody th.ht__highlight{cursor:move;cursor:-moz-grab;cursor:-webkit-grab;cursor:grab}.handsontable.ht__manualRowMove.on-moving--rows *,.handsontable.ht__manualRowMove.on-moving--rows tbody th.ht__highlight{cursor:move;cursor:-moz-grabbing;cursor:-webkit-grabbing;cursor:grabbing}.handsontable.ht__manualRowMove.on-moving--rows .manualRowResizer{display:none}.handsontable .ht__manualRowMove--backlight,.handsontable .ht__manualRowMove--guideline{display:none;position:absolute;width:100%}.handsontable .ht__manualRowMove--guideline{background:#757575;height:2px;left:0;margin-top:-1px;z-index:205}.handsontable .ht__manualRowMove--backlight{background:#343434;background:rgba(52,52,52,.25);display:none;pointer-events:none;z-index:205}.handsontable.on-moving--rows .ht__manualRowMove--backlight,.handsontable.on-moving--rows.show-ui .ht__manualRowMove--guideline{display:block}.handsontable tbody td[rowspan][class*=area][class*=highlight]:not([class*=fullySelectedMergedCell]):before{opacity:0}.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-0]:before,.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-multiple]:before{opacity:.1}.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-1]:before{opacity:.2}.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-2]:before{opacity:.27}.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-3]:before{opacity:.35}.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-4]:before{opacity:.41}.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-5]:before{opacity:.47}.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-6]:before{opacity:.54}.handsontable tbody td[rowspan][class*=area][class*=highlight][class*=fullySelectedMergedCell-7]:before{opacity:.58}.handsontable[dir=ltr] div.htRight span[class*=sort-]{margin-left:-15px;margin-right:15px}.handsontable[dir=rtl] div.htLeft span[class*=sort-]{margin-left:15px;margin-right:-15px}.handsontable[dir=ltr] div.htRight span[class*=sort-]:only-child{margin-left:-20px;margin-right:20px}.handsontable[dir=rtl] div.htLeft span[class*=sort-]:only-child{margin-left:20px;margin-right:-20px}.handsontable span.colHeader.columnSorting:after{font-size:8px;height:8px;left:unset;line-height:1.1;margin-top:-2px;padding-left:5px;padding-right:unset;position:absolute;right:-15px;top:50%}[dir=rtl].handsontable span.colHeader.columnSorting:after{left:-15px;padding-left:unset;padding-right:5px;right:unset}.handsontable span.colHeader.columnSorting[class*=" sort-"]:after,.handsontable span.colHeader.columnSorting[class^=sort-]:after{content:"+"}.handsontable span.colHeader.columnSorting.sort-1:after{content:"1"}.handsontable span.colHeader.columnSorting.sort-2:after{content:"2"}.handsontable span.colHeader.columnSorting.sort-3:after{content:"3"}.handsontable span.colHeader.columnSorting.sort-4:after{content:"4"}.handsontable span.colHeader.columnSorting.sort-5:after{content:"5"}.handsontable span.colHeader.columnSorting.sort-6:after{content:"6"}.handsontable span.colHeader.columnSorting.sort-7:after{content:"7"}.htGhostTable th div button.changeType+span.colHeader.columnSorting:not(.indicatorDisabled){padding-right:5px}.handsontable thead th.hiddenHeader:not(:first-of-type){display:none}thead th.hiddenHeaderText .colHeader{opacity:0}.handsontable th.ht_nestingLevels{padding-left:7px;text-align:left}[dir=rtl].handsontable th.ht_nestingLevels{padding-right:7px;text-align:right}.handsontable th div.ht_nestingLevels{display:inline-block;left:11px;position:absolute;right:unset}[dir=rtl].handsontable th div.ht_nestingLevels{left:unset;right:11px}.handsontable.innerBorderInlineStart th div.ht_nestingLevels,.handsontable.innerBorderInlineStart~.handsontable th div.ht_nestingLevels{left:unset;right:10px}[dir=rtl].handsontable.innerBorderInlineStart th div.ht_nestingLevels,[dir=rtl].handsontable.innerBorderInlineStart~.handsontable th div.ht_nestingLevels{left:10px;right:unset}.handsontable th span.ht_nestingLevel{display:inline-block}.handsontable th span.ht_nestingLevel_empty{display:inline-block;float:left;height:1px;width:10px}[dir=rtl].handsontable th span.ht_nestingLevel_empty{float:right}.handsontable th span.ht_nestingLevel:after{bottom:3px;content:"┐";display:inline-block;font-size:9px;position:relative}.handsontable th div.ht_nestingButton{cursor:pointer;display:inline-block;left:unset;position:absolute;right:-2px}[dir=rtl].handsontable th div.ht_nestingButton{left:-2px;right:unset}.handsontable th div.ht_nestingButton.ht_nestingExpand:after{content:"+"}.handsontable th div.ht_nestingButton.ht_nestingCollapse:after{content:"-"}.handsontable.innerBorderInlineStart th div.ht_nestingButton,.handsontable.innerBorderInlineStart~.handsontable th div.ht_nestingButton{left:unset;right:0}[dir=rtl].handsontable.innerBorderInlineStart th div.ht_nestingButton,[dir=rtl].handsontable.innerBorderInlineStart~.handsontable th div.ht_nestingButton{left:0;right:unset}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */.pika-single{background:#fff;border:1px solid;border-color:#ccc #ccc #bbb;color:#333;display:block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;position:relative;z-index:9999}.pika-single:after,.pika-single:before{content:" ";display:table}.pika-single:after{clear:both}.pika-single.is-hidden{display:none}.pika-single.is-bound{box-shadow:0 5px 15px -5px rgba(0,0,0,.5);position:absolute}.pika-lendar{float:left;margin:8px;width:240px}.pika-title{position:relative;text-align:center}.pika-label{background-color:#fff;display:inline-block;font-size:14px;font-weight:700;line-height:20px;margin:0;overflow:hidden;padding:5px 3px;position:relative;z-index:9999}.pika-title select{cursor:pointer;left:0;margin:0;opacity:0;position:absolute;top:5px;z-index:9998}.pika-next,.pika-prev{background-color:transparent;background-position:50%;background-repeat:no-repeat;background-size:75% 75%;border:0;cursor:pointer;display:block;height:30px;opacity:.5;outline:none;overflow:hidden;padding:0;position:relative;text-indent:20px;white-space:nowrap;width:20px}.pika-next:hover,.pika-prev:hover{opacity:1}.is-rtl .pika-next,.pika-prev{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==);float:left}.is-rtl .pika-prev,.pika-next{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=);float:right}.pika-next.is-disabled,.pika-prev.is-disabled{cursor:default;opacity:.2}.pika-select{display:inline-block}.pika-table{border:0;border-collapse:collapse;border-spacing:0;width:100%}.pika-table td,.pika-table th{padding:0;width:14.285714285714286%}.pika-table th{color:#999;font-weight:700;line-height:25px}.pika-button,.pika-table th{font-size:12px;text-align:center}.pika-button{background:#f5f5f5;border:0;box-sizing:border-box;-moz-box-sizing:border-box;color:#666;cursor:pointer;display:block;height:auto;line-height:15px;margin:0;outline:none;padding:5px;width:100%}.pika-week{color:#999;font-size:11px}.is-today .pika-button{color:#3af;font-weight:700}.has-event .pika-button,.is-selected .pika-button{background:#3af;border-radius:3px;box-shadow:inset 0 1px 3px #178fe5;color:#fff;font-weight:700}.has-event .pika-button{background:#005da9;box-shadow:inset 0 1px 3px #0076c9}.is-disabled .pika-button,.is-inrange .pika-button{background:#d5e9f7}.is-startrange .pika-button{background:#6cb31d;border-radius:3px;box-shadow:none;color:#fff}.is-endrange .pika-button{background:#3af;border-radius:3px;box-shadow:none;color:#fff}.is-disabled .pika-button{color:#999;cursor:default;opacity:.3;pointer-events:none}.is-outside-current-month .pika-button{color:#999;opacity:.3}.is-selection-disabled{cursor:default;pointer-events:none}.pika-button:hover,.pika-row.pick-whole-week:hover .pika-button{background:#ff8000;border-radius:3px;box-shadow:none;color:#fff}.pika-table abbr{border-bottom:none;cursor:help}.fp{position:relative;display:inline-block;background-size:auto 100%;background-position:center;background-repeat:no-repeat}.fp:before{content:"\00a0"}.fp{line-height:1em;width:1.33333em}.fp.fp-square{line-height:1em;width:1em}.fp.fp-rounded{border-radius:.16667em}.fp.fp-md{line-height:1.5em;width:2em}.fp.fp-md.fp-square{line-height:1.5em;width:1.5em}.fp.fp-md.fp-rounded{border-radius:.25em}.fp.fp-lg{line-height:2em;width:2.66667em}.fp.fp-lg.fp-square{line-height:2em;width:2em}.fp.fp-lg.fp-rounded{border-radius:.25em}.ac{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23A7D2FF'%20offset='0%25'/%3e%3cstop%20stop-color='%2391C6FD'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%203.5V.51C0%20.228.215%200%20.498%200h4.004C4.777%200%205%20.227%205%20.51V3.5C5%205.5%202.5%206%202.5%206S0%205.5%200%203.5z'%20id='c'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EE7B2D'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC621A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FFFC4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFFC38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cg%20transform='translate(13%206)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3c/g%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23h)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23h)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3cg%3e%3cpath%20fill='%23FFFFFF'%20d='M18,7.8c0,1.7-0.3,3.6-2.5,4.5c-2.2-0.9-2.5-2.7-2.5-4.5L18,7.8L18,7.8z'/%3e%3cpath%20fill='%2329DBFF'%20d='M18,8.5c-0.1,1.5-0.5,3-2.5,3.7c-2-0.8-2.4-2.3-2.5-3.7'/%3e%3cpath%20fill='%23FFFFFF'%20d='M17.9,9.2c-0.1,1.1-0.7,2.4-2.4,3c-1.7-0.7-2.2-1.9-2.4-3'/%3e%3cpath%20fill='%2329DBFF'%20d='M17.7,9.9c-0.2,0.8-0.8,1.7-2.3,2.3c-1.4-0.6-2-1.5-2.3-2.3'/%3e%3cpath%20fill='%23FFFFFF'%20d='M17.4,10.7c-0.3,0.5-0.8,1.1-1.9,1.6c-1.2-0.5-1.6-1.1-1.9-1.6'/%3e%3cpath%20fill='%2329DBFF'%20d='M16.8,11.5c-0.4,0.3-0.5,0.5-1.3,0.8c-0.9-0.3-1-0.5-1.3-0.8'/%3e%3cpath%20fill='%2333aa33'%20d='M15.5,10c0,0-1.2,1.6-1.2,1.6c-0.1-0.1-0.4-0.4-0.6-0.7l1.8-2.2l1.8,2.2c-0.2,0.3-0.5,0.6-0.6,0.7'/%3e%3c/g%3e%3cpolygon%20fill='%2333aa33'%20points='15.5,3.6%2014.3,5.5%2015.5,7.2%2016.6,5.5%20'/%3e%3cellipse%20transform='matrix(0.9881%20-0.1541%200.1541%200.9881%20-1.2349%203.0397)'%20fill='%23dc9f47'%20cx='19'%20cy='9.5'%20rx='0.6'%20ry='2'/%3e%3cellipse%20transform='matrix(0.1353%20-0.9908%200.9908%200.1353%200.9755%2020.0862)'%20fill='%23dc9f47'%20cx='12'%20cy='9.5'%20rx='2'%20ry='0.6'/%3e%3c/svg%3e")}.ac.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23A7D2FF'%20offset='0%25'/%3e%3cstop%20stop-color='%2391C6FD'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='e'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23EE7B2D'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC621A'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='h'/%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='j'/%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='l'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='m'%3e%3cstop%20stop-color='%23FFFC4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFFC38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='o'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='p'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M5%204.23L.648.5H2.66L6.16%203h.697L11.5.098V1.25c0%20.303-.167.627-.418.806L8%204.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L6.84%206h-.697L1.5%208.902v-1.66l3.5-2.5V4.23z'%20fill='url(%23o)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M5.5%204L2%201h.5L6%203.5h1L11%201v.25a.537.537%200%200%201-.208.399L7.5%204v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L7%205.5H6L2%208v-.5L5.5%205V4z'%20fill='url(%23p)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M2%203.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V5.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H7.5V1h-2v2.5H2z'%20fill='url(%23o)'%20transform='translate(-2%20-1)'/%3e%3cpath%20fill='url(%23p)'%20d='M2%204h4V1h1v3h4v1H7v3H6V5H2z'%20transform='translate(-2%20-1)'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cpath%20fill='%23FFFFFF'%20d='M13,10.8c0,1.4-0.2,2.9-2,3.6c-1.8-0.7-2-2.2-2-3.6L13,10.8L13,10.8z'/%3e%3cpath%20fill='%2329DBFF'%20d='M13,11.4c-0.1,1.2-0.4,2.4-2,3c-1.6-0.6-1.9-1.8-2-3'/%3e%3cpath%20fill='%23FFFFFF'%20d='M12.9,12c-0.1,0.9-0.6,1.9-2,2.4c-1.4-0.5-1.8-1.5-2-2.4'/%3e%3cpath%20fill='%2329DBFF'%20d='M12.8,12.6c-0.2,0.6-0.7,1.4-1.8,1.9c-1.1-0.4-1.6-1.2-1.8-1.9'/%3e%3cpath%20fill='%23FFFFFF'%20d='M12.5,13.1c-0.2,0.4-0.6,0.9-1.6,1.3c-1-0.4-1.3-0.9-1.6-1.3'/%3e%3cpath%20fill='%2329DBFF'%20d='M12,13.8c-0.3,0.3-0.4,0.4-1.1,0.6c-0.7-0.3-0.8-0.4-1-0.6'/%3e%3cpath%20fill='%2333aa33'%20d='M11,12.6c0,0-1,1.3-1,1.3c-0.1,0-0.4-0.3-0.5-0.5l1.5-1.8l1.4,1.8c-0.1,0.2-0.4,0.5-0.5,0.5'/%3e%3c/g%3e%3cpolygon%20fill='%2333aa33'%20points='11,7.4%2010,9%2011,10.4%2011.9,8.9%20'/%3e%3cellipse%20transform='matrix(0.9881%20-0.1541%200.1541%200.9881%20-1.7146%202.276)'%20fill='%23dc9f47'%20cx='13.8'%20cy='12.2'%20rx='0.5'%20ry='1.6'/%3e%3cellipse%20transform='matrix(0.1353%20-0.9908%200.9908%200.1353%20-5.0257%2018.6361)'%20fill='%23dc9f47'%20cx='8.2'%20cy='12.2'%20rx='1.6'%20ry='0.5'/%3e%3c/svg%3e")}.ad{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231537D1'%20offset='0%25'/%3e%3cstop%20stop-color='%230522A5'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EA3058'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE173E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFCF3C'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%200h7v15H7z'/%3e%3cpath%20fill='%23FFEDB1'%20d='M9.5%206.5h1V7h-1z'/%3e%3cpath%20d='M9.665%207.96c.025.295.292.54.587.54h.496a.607.607%200%200%200%20.587-.54l.122-1.46H9.543l.122%201.46zm-.624-1.465A.446.446%200%200%201%209.495%206h2.01c.273%200%20.477.216.454.495l-.126%201.506c-.046.552-.53.999-1.085.999h-.496a1.105%201.105%200%200%201-1.085-.999L9.04%206.495z'%20fill='%23D32E28'%20fill-rule='nonzero'/%3e%3cpath%20fill='%23D32E28'%20d='M9.5%207h2v.5h-2z'/%3e%3c/g%3e%3c/svg%3e")}.ad.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231537D1'%20offset='0%25'/%3e%3cstop%20stop-color='%230522A5'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EA3058'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE173E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFCF3C'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23d)'%20d='M5%200h5v15H5z'/%3e%3cpath%20fill='%23FFEDB1'%20d='M6.5%206.5h1V7h-1z'/%3e%3cpath%20d='M6.665%207.96c.025.295.292.54.587.54h.496a.607.607%200%200%200%20.587-.54l.122-1.46H6.543l.122%201.46zm-.624-1.465A.446.446%200%200%201%206.495%206h2.01c.273%200%20.477.216.454.495l-.126%201.506c-.046.552-.53.999-1.085.999h-.496a1.105%201.105%200%200%201-1.085-.999L6.04%206.495h.001z'%20fill='%23D32E28'%20fill-rule='nonzero'/%3e%3cpath%20fill='%23D32E28'%20d='M6.5%207h2v.5h-2z'/%3e%3c/g%3e%3c/svg%3e")}.ae{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2312833B'%20offset='0%25'/%3e%3cstop%20stop-color='%230D7332'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FF323E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M6%200h15v5H6z'/%3e%3cpath%20fill='url(%23c)'%20d='M6%2010h15v5H6z'/%3e%3cpath%20fill='url(%23a)'%20d='M6%205h15v5H6z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h6v15H0z'/%3e%3c/g%3e%3c/svg%3e")}.ae.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2312833B'%20offset='0%25'/%3e%3cstop%20stop-color='%230D7332'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FF323E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M4%200h11v5H4z'/%3e%3cpath%20fill='url(%23c)'%20d='M4%2010h11v5H4z'/%3e%3cpath%20fill='url(%23a)'%20d='M4%205h11v5H4z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h4v15H0z'/%3e%3c/g%3e%3c/svg%3e")}.af{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231AB11F'%20offset='0%25'/%3e%3cstop%20stop-color='%23149818'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DC0D18'%20offset='0%25'/%3e%3cstop%20stop-color='%23BE0711'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%200h7v15H7z'/%3e%3cpath%20d='M8%207a2.5%202.5%200%200%200%201.247%202.164.5.5%200%200%200%20.502-.865A1.499%201.499%200%200%201%209%207a.5.5%200%200%200-1%200zm3.846%202.107A2.498%202.498%200%200%200%2013%207a.5.5%200%201%200-1%200%201.5%201.5%200%200%201-.693%201.265.5.5%200%201%200%20.539.842z'%20fill='%23FFF'%20fill-rule='nonzero'%20opacity='.75'/%3e%3cellipse%20fill-opacity='.5'%20fill='%23FFF'%20cx='10.5'%20cy='6.5'%20rx='1'%20ry='1.5'/%3e%3c/g%3e%3c/svg%3e")}.af.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231AB11F'%20offset='0%25'/%3e%3cstop%20stop-color='%23149818'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DC0D18'%20offset='0%25'/%3e%3cstop%20stop-color='%23BE0711'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M5%200h5v15H5z'/%3e%3cpath%20d='M6%207.2a1.5%201.5%200%200%200%20.748%201.298.3.3%200%200%200%20.301-.519A.9.9%200%200%201%206.6%207.2a.3.3%200%200%200-.6%200zm2.308%201.264C8.739%208.19%209%207.712%209%207.2a.3.3%200%200%200-.6%200%20.9.9%200%200%201-.416.759.3.3%200%201%200%20.324.505z'%20fill='%23FFF'%20fill-rule='nonzero'%20opacity='.75'/%3e%3cellipse%20fill-opacity='.5'%20fill='%23FFF'%20cx='7.5'%20cy='6.9'%20rx='1'%20ry='1'/%3e%3c/g%3e%3c/svg%3e")}.ag{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E2243B'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='c'%20d='M0%200h21L10.5%2015z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFCF3C'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%231984D8'%20offset='0%25'/%3e%3cstop%20stop-color='%231175C4'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M8.5%207a2%202%200%200%200%20.998%201.731m2.078-.045c.556-.355.924-.978.924-1.686'%20opacity='.75'/%3e%3cellipse%20fill-opacity='.5'%20fill='%23FFF'%20cx='10.5'%20cy='6.5'%20rx='1'%20ry='1.5'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3cuse%20fill='url(%23d)'%20xlink:href='%23c'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23f)'%20d='M10.5%208.25l-1.722%201.907.131-2.566-2.566.131L8.25%206%206%204l2.909.5-.409-3%202%202.5%202-2.5-.409%203L15%204l-2.25%202%201.907%201.722-2.566-.131.131%202.566z'/%3e%3cpath%20fill='url(%23g)'%20mask='url(%23f)'%20d='M0%206h21v4H0z'/%3e%3cpath%20fill='url(%23a)'%20mask='url(%23f)'%20d='M0%2010h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.ag.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E2243B'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='f'%20d='M0%200h21L10.5%2015z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FFCF3C'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='i'%20d='M0%200h21L10.5%2015z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='j'%3e%3cstop%20stop-color='%231984D8'%20offset='0%25'/%3e%3cstop%20stop-color='%231175C4'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='l'%20d='M0%200h21L10.5%2015z'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='%23D8D8D8'%20fill-rule='nonzero'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23b)'%20mask='url(%23c)'%20d='M-3%200h21v15H-3z'/%3e%3cpath%20d='M5.5%207a2%202%200%200%200%20.998%201.731m2.078-.045C9.132%208.331%209.5%207.708%209.5%207'%20opacity='.75'%20mask='url(%23c)'/%3e%3cellipse%20fill-opacity='.5'%20fill='%23FFF'%20mask='url(%23c)'%20cx='7.5'%20cy='6.5'%20rx='1'%20ry='1.5'/%3e%3cpath%20fill='url(%23d)'%20mask='url(%23c)'%20d='M-3%200h21v15H-3z'/%3e%3cg%20mask='url(%23c)'%20fill='url(%23e)'%3e%3cpath%20d='M-3%200h21L7.5%2015z'/%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cg%20transform='translate(-3)'%3e%3cmask%20id='h'%20fill='%23fff'%3e%3cuse%20xlink:href='%23f'/%3e%3c/mask%3e%3cpath%20fill='url(%23g)'%20mask='url(%23h)'%20d='M10.5%208.25l-1.722%201.907.131-2.566-2.566.131L8.25%206%206%204l2.909.5-.409-3%202%202.5%202-2.5-.409%203L15%204l-2.25%202%201.907%201.722-2.566-.131.131%202.566z'/%3e%3c/g%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cg%20transform='translate(-3)'%3e%3cmask%20id='k'%20fill='%23fff'%3e%3cuse%20xlink:href='%23i'/%3e%3c/mask%3e%3cpath%20fill='url(%23j)'%20mask='url(%23k)'%20d='M0%206h21v4H0z'/%3e%3c/g%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cg%20transform='translate(-3)'%3e%3cmask%20id='m'%20fill='%23fff'%3e%3cuse%20xlink:href='%23l'/%3e%3c/mask%3e%3cpath%20fill='url(%23b)'%20mask='url(%23m)'%20d='M0%2010h21v5H0z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ai{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.5V0l1%20.5L2%200l1%20.5L4%200v2.5C4%204%202%205%202%205S0%204%200%202.5z'%20id='d'/%3e%3cfilter%20x='-6.2%25'%20y='-5%25'%20width='112.5%25'%20height='120%25'%20filterUnits='objectBoundingBox'%20id='e'%3e%3cfeOffset%20dy='.5'%20in='SourceAlpha'%20result='shadowOffsetOuter1'/%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.06%200'%20in='shadowOffsetOuter1'/%3e%3c/filter%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FFA51B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FF9A00'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23c)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cg%20transform='translate(13%205)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cuse%20fill='%23000'%20filter='url(%23e)'%20xlink:href='%23d'/%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23d'/%3e%3cpath%20fill='%239ACCFF'%20mask='url(%23f)'%20d='M0%204h4v1H0z'/%3e%3cpath%20d='M2%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM1%203a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23g)'%20mask='url(%23f)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ai.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.5V0l1%20.5L2%200l1%20.5L4%200v2.5C4%204%202%205%202%205S0%204%200%202.5z'%20id='f'/%3e%3cpath%20d='M0%202.5V0l1%20.5L2%200l1%20.5L4%200v2.5C4%204%202%205%202%205S0%204%200%202.5z'%20id='h'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='i'%3e%3cstop%20stop-color='%23FFA51B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FF9A00'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23c)'%20mask='url(%23d)'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23e)'%20mask='url(%23d)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23c)'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cg%20mask='url(%23d)'%3e%3cpath%20d='M9%2011.5V9l1%20.5%201-.5%201%20.5%201-.5v2.5c0%201.5-2%202.5-2%202.5s-2-1-2-2.5z'%20fill='%23000'/%3e%3cpath%20d='M0%202.5V0l1%20.5L2%200l1%20.5L4%200v2.5C4%204%202%205%202%205S0%204%200%202.5z'%20fill='url(%23c)'%20transform='translate(9%209)'/%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23f'/%3e%3c/mask%3e%3cpath%20fill='%239ACCFF'%20mask='url(%23g)'%20d='M0%204h4v1H0z'/%3e%3c/g%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='j'%20fill='%23fff'%3e%3cuse%20xlink:href='%23h'/%3e%3c/mask%3e%3cpath%20d='M2%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM1%203a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23i)'%20fill-rule='nonzero'%20mask='url(%23j)'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.al{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EE343C'%20offset='0%25'/%3e%3cstop%20stop-color='%23E2222A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M9.348%203.348l.804.804a.496.496%200%200%200%20.696%200l.804-.804a.631.631%200%200%201%20.758-.075L13.5%204l-1.548.774a.892.892%200%200%200-.452.726c0%20.268.224.5.5.5.268%200%20.699-.1.944-.222l1.112-.556a.734.734%200%200%201%20.794.128l.3.3c.194.194.151.45-.094.572l-1.112.556c-.245.122-.26.344-.034.495l.68.454c.226.15.194.316-.072.37l-1.536.307c-.269.053-.3.232-.077.4l1.19.892c.22.166.181.304-.095.304a4.93%204.93%200%200%201-.984-.121l-1.032-.258c-.27-.067-.362.063-.21.289l.453.68c.15.226.046.41-.235.41h-.484a.74.74%200%200%200-.666.475l-.184.55c-.088.266-.229.263-.316%200l-.184-.55A.741.741%200%200%200%209.492%2011h-.484c-.287%200-.386-.184-.235-.41l.454-.68c.15-.226.056-.356-.211-.289l-1.032.258A4.85%204.85%200%200%201%207%2010c-.268%200-.319-.136-.095-.304l1.19-.892c.22-.166.19-.347-.077-.4l-1.536-.308c-.269-.053-.298-.218-.072-.37l.68-.453c.226-.15.211-.372-.034-.495l-1.112-.556c-.245-.122-.287-.379-.094-.572l.3-.3a.733.733%200%200%201%20.794-.128l1.112.556C8.301%205.9%208.724%206%209%206c.268%200%20.5-.224.5-.5%200-.268-.199-.6-.444-.722l-1.112-.556c-.245-.122-.26-.344-.034-.495l.68-.454a.626.626%200%200%201%20.758.075z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.al.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23EE343C'%20offset='0%25'/%3e%3cstop%20stop-color='%23E2222A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M6.86%204.132l.636.626a.396.396%200%200%200%20.55%200l.636-.626a.504.504%200%200%201%20.599-.059l.861.567-1.223.602a.694.694%200%200%200-.357.566c0%20.209.177.39.395.39.212%200%20.552-.079.746-.174l.879-.433a.587.587%200%200%201%20.628.1l.237.234c.153.15.119.35-.075.445l-.879.433c-.193.095-.205.268-.026.386l.537.353c.179.117.153.247-.057.289l-1.214.239c-.213.041-.237.18-.06.311l.94.695c.174.13.143.237-.075.237a3.952%203.952%200%200%201-.778-.094l-.816-.201c-.213-.053-.286.049-.166.225l.358.53c.119.175.037.319-.185.319h-.383a.584.584%200%200%200-.526.37l-.146.428c-.07.207-.18.205-.25%200l-.145-.428a.585.585%200%200%200-.527-.37h-.382c-.227%200-.305-.144-.186-.32l.359-.53c.119-.175.044-.277-.167-.224l-.815.2a3.85%203.85%200%200%201-.778.095c-.212%200-.252-.106-.075-.237l.94-.695c.174-.13.15-.27-.06-.311l-1.215-.24c-.212-.041-.235-.17-.057-.288l.538-.353c.179-.117.167-.29-.027-.386L4.17%206.37c-.194-.095-.227-.295-.074-.445l.237-.234a.586.586%200%200%201%20.628-.1l.878.433c.194.095.528.173.747.173a.397.397%200%200%200%20.395-.39.694.694%200%200%200-.351-.562l-.88-.433c-.193-.095-.205-.267-.026-.385l.538-.354a.5.5%200%200%201%20.599.059z'%20fill='url(%23b)'/%3e%3c/g%3e%3c/svg%3e")}.am{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231047B9'%20offset='0%25'/%3e%3cstop%20stop-color='%2306379D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F01C31'%20offset='0%25'/%3e%3cstop%20stop-color='%23D70A1F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F5B23E'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0A728'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2010h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.am.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231047B9'%20offset='0%25'/%3e%3cstop%20stop-color='%2306379D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F01C31'%20offset='0%25'/%3e%3cstop%20stop-color='%23D70A1F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F5B23E'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0A728'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2010h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.ao{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF323E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DD2137'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F8D84B'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9D536'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h21v7H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h21v8H0z'/%3e%3cpath%20d='M10.63%208.855l-1.407-.939a.5.5%200%200%201%20.554-.832l1.536%201.024a2%202%200%200%200-1.253-2.863.5.5%200%201%201%20.259-.966%203%203%200%200%201%201.83%204.386l.628.419a.5.5%200%200%201-.554.832l-.713-.475a2.995%202.995%200%200%201-2.744.633.5.5%200%200%201%20.259-.966c.57.153%201.147.044%201.606-.253zM9.5%206.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23e)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ao.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF323E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DD2137'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F8D84B'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9D536'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h15v7H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h15v8H0z'/%3e%3cpath%20d='M7.235%208.853l-1.407-.939a.5.5%200%200%201%20.554-.832l1.536%201.024a2%202%200%200%200-1.253-2.863.5.5%200%201%201%20.259-.966%203%203%200%200%201%201.83%204.386l.628.42a.5.5%200%200%201-.554.831l-.713-.475a2.995%202.995%200%200%201-2.744.633.5.5%200%201%201%20.259-.966c.57.153%201.147.044%201.606-.253h-.001zm-1.13-2.355a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23e)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ar{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2388BBE8'%20offset='0%25'/%3e%3cstop%20stop-color='%2376ADDD'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0zm0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M10.5%209.5a2%202%200%201%201%200-4%202%202%200%200%201%200%204z'%20fill='%23DB7A2C'%20fill-rule='nonzero'/%3e%3ccircle%20fill='%23F4B32E'%20cx='10.5'%20cy='7.5'%20r='1.5'/%3e%3c/g%3e%3c/svg%3e")}.ar.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2388BBE8'%20offset='0%25'/%3e%3cstop%20stop-color='%2376ADDD'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h15v5H0V0zm0%2010h15v5H0v-5z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cg%20transform='translate(5%205)'%3e%3cpath%20d='M2.5%204.5a2%202%200%201%201%200-4%202%202%200%200%201%200%204z'%20fill='%23DB7A2C'/%3e%3ccircle%20fill='%23F4B32E'%20cx='2.5'%20cy='2.5'%20r='1.5'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.as{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23071585'%20offset='0%25'/%3e%3cstop%20stop-color='%23000B64'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23D32636'%20offset='0%25'/%3e%3cstop%20stop-color='%23BA1827'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='35.4%25'%20y2='89.131%25'%20id='d'%3e%3cstop%20stop-color='%23AB5423'%20offset='0%25'/%3e%3cstop%20stop-color='%235A3719'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20fill-rule='nonzero'%20d='M22%2015.5l-22-8%2022-8z'/%3e%3cpath%20fill='url(%23a)'%20fill-rule='nonzero'%20d='M21%20.928L2.926%207.5%2021%2014.072z'/%3e%3cpath%20d='M16%207.038c-.118-.118-.806.156-.806.156L14%206s-.062-.663.5-1c.425-.255%201.22-.16%201.999-.5C17.746%203.956%2019%203%2019%203l-.802%202.206s.919.473.802.794c-.034.093-.93.385-1%20.5-.132.22.524.286.32.538C17.733%207.765%2017%208.5%2017%208.5L16%208s.15-.811%200-.962z'%20fill='url(%23d)'/%3e%3ccircle%20fill='%23FFC322'%20cx='13.5'%20cy='7.5'%20r='1'/%3e%3cpath%20d='M12.5%209h5a.5.5%200%201%200%200-1h-5a.5.5%200%201%200%200%201z'%20fill='%23FFC322'%20fill-rule='nonzero'/%3e%3cpath%20d='M14.197%2010.46l3.5-1.5a.5.5%200%200%200-.394-.92l-3.5%201.5a.5.5%200%200%200%20.394.92z'%20fill='%23FFC322'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.as.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23071585'%20offset='0%25'/%3e%3cstop%20stop-color='%23000B64'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23D32636'%20offset='0%25'/%3e%3cstop%20stop-color='%23BA1827'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='35.4%25'%20y2='89.131%25'%20id='d'%3e%3cstop%20stop-color='%23AB5423'%20offset='0%25'/%3e%3cstop%20stop-color='%235A3719'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M15%2015L0%207.5%2015%200z'/%3e%3cpath%20fill='url(%23c)'%20d='M15%201L2%207.5%2015%2014z'/%3e%3cg%20transform='translate(7%204)'%3e%3cpath%20d='M3%203.029c-.088-.089-.604.117-.604.117L1.5%202.25s-.046-.497.375-.75c.319-.191.915-.12%201.5-.375C4.308.717%205.25%200%205.25%200l-.601%201.655s.689.354.601.595c-.026.07-.697.289-.75.375-.099.165.393.215.24.404-.44.545-.99%201.096-.99%201.096L3%203.75s.112-.608%200-.721z'%20fill='url(%23d)'/%3e%3ccircle%20fill='%23FFC322'%20cx='1.125'%20cy='3.375'%20r='1'/%3e%3cpath%20d='M.375%204.5h3.75a.375.375%200%200%200%200-.75H.375a.375.375%200%200%200%200%20.75z'%20fill='%23FFC322'/%3e%3cpath%20d='M1.648%205.595L4.273%204.47a.375.375%200%201%200-.296-.69L1.352%204.905a.375.375%200%201%200%20.296.69z'%20fill='%23FFC322'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.at{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F64253'%20offset='0%25'/%3e%3cstop%20stop-color='%23EA2D3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0zm0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.at.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F64253'%20offset='0%25'/%3e%3cstop%20stop-color='%23EA2D3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h15v5H0V0zm0%2010h15v5H0v-5z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.au{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23c)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cpath%20fill='%23FFF'%20d='M4.5%2012.25l-.882.464.169-.982-.714-.696.986-.143L4.5%2010l.44.893.987.143-.714.696.169.982zM15%2013l-.707.207.207-.707-.207-.707L15%2012l.707-.207-.207.707.207.707zm0-9.5l-.707.207L14.5%203l-.207-.707L15%202.5l.707-.207L15.5%203l.207.707zm3%203l-.707.207L17.5%206l-.207-.707L18%205.5l.707-.207L18.5%206l.207.707zm-6%201l-.707.207L11.5%207l-.207-.707L12%206.5l.707-.207L12.5%207l.207.707zm4.5%201.25l-.354.104.104-.354-.104-.354.354.104.354-.104-.104.354.104.354z'/%3e%3c/g%3e%3c/svg%3e")}.au.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='b'%20d='M0%200h10v8H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23b'/%3e%3c/mask%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23c)'%20mask='url(%23d)'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23e)'%20mask='url(%23d)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23c)'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cpath%20d='M4.379%2012.386l-.543.298.104-.63-.44-.446.607-.092.272-.573.27.573.608.092-.44.446.105.63-.543-.298zm6.464.481l-.435.133.127-.453-.127-.454.435.133.435-.133-.127.454.127.453-.435-.133zm0-6.093l-.435.133.127-.454L10.408%206l.435.133.435-.133-.127.453.127.454-.435-.133zm1.847%201.924l-.436.133.128-.453-.128-.454.436.133.435-.133-.127.454.127.453-.435-.133zm-3.694.642l-.435.132.127-.453-.127-.453.435.132.435-.132-.127.453.127.453-.435-.132zm2.77.801l-.218.067.064-.227-.064-.227.218.067.218-.067-.064.227.064.227-.218-.067z'%20fill='%23FFF'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.aw{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%235098EA'%20offset='0%25'/%3e%3cstop%20stop-color='%23458BDB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E82045'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M1.803%204.96a.5.5%200%200%201%200-.92l1.566-.67.671-1.567a.5.5%200%200%201%20.92%200l.67%201.566%201.567.671a.5.5%200%200%201%200%20.92l-1.566.67-.671%201.567a.5.5%200%200%201-.92%200l-.67-1.566-1.567-.671z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23c)'%20d='M3.75%205.25L2%204.5l1.75-.75L4.5%202l.75%201.75L7%204.5l-1.75.75L4.5%207z'/%3e%3cpath%20fill='%23F9D536'%20d='M0%2011h21v1H0zm0-2h21v1H0z'/%3e%3c/g%3e%3c/svg%3e")}.aw.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%235098EA'%20offset='0%25'/%3e%3cstop%20stop-color='%23458BDB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E82045'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%2011h15v1H0v-1zm0-2h15v1H0V9z'%20fill='%23F9D536'%20fill-rule='nonzero'/%3e%3cpath%20d='M1.803%204.96a.5.5%200%200%201%200-.92l1.566-.67.671-1.567a.5.5%200%200%201%20.92%200l.67%201.566%201.567.671a.5.5%200%200%201%200%20.92l-1.566.67-.671%201.567a.5.5%200%200%201-.92%200l-.67-1.566-1.567-.671z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M3.75%205.25L2%204.5l1.75-.75L4.5%202l.75%201.75L7%204.5l-1.75.75L4.5%207z'/%3e%3c/g%3e%3c/svg%3e")}.ax{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23157CBB'%20offset='0%25'/%3e%3cstop%20stop-color='%230E6CA5'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD34D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23EB363A'%20offset='0%25'/%3e%3cstop%20stop-color='%23D52B2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.ax.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23157CBB'%20offset='0%25'/%3e%3cstop%20stop-color='%230E6CA5'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD34D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EB363A'%20offset='0%25'/%3e%3cstop%20stop-color='%23D52B2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.az{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2324AAD5'%20offset='0%25'/%3e%3cstop%20stop-color='%231899C2'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23ED1845'%20offset='0%25'/%3e%3cstop%20stop-color='%23DE0C39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%2321BF75'%20offset='0%25'/%3e%3cstop%20stop-color='%2319AD68'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20d='M11.334%206.253a1.25%201.25%200%201%200%200%202.495%201.5%201.5%200%201%201%200-2.495zM11.5%208a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.az.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2324AAD5'%20offset='0%25'/%3e%3cstop%20stop-color='%231899C2'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23ED1845'%20offset='0%25'/%3e%3cstop%20stop-color='%23DE0C39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%2321BF75'%20offset='0%25'/%3e%3cstop%20stop-color='%2319AD68'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20d='M8.333%206.253a1.25%201.25%200%201%200%200%202.495%201.5%201.5%200%201%201%200-2.495zM8.499%208a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ba{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230B36B2'%20offset='0%25'/%3e%3cstop%20stop-color='%23042993'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD045'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECA2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M17%2015V0H6.5z'/%3e%3cpath%20fill='url(%23a)'%20d='M13%2014l-.707.207.207-.707-.207-.707L13%2013l.707-.207-.207.707.207.707zm-2-3l-.707.207.207-.707-.207-.707L11%2010l.707-.207-.207.707.207.707zM9%208l-.707.207L8.5%207.5l-.207-.707L9%207l.707-.207L9.5%207.5l.207.707zM7%205l-.707.207L6.5%204.5l-.207-.707L7%204l.707-.207L7.5%204.5l.207.707zM5%202l-.707.207L4.5%201.5%204.293.793%205%201l.707-.207L5.5%201.5l.207.707z'/%3e%3c/g%3e%3c/svg%3e")}.ba.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230B36B2'%20offset='0%25'/%3e%3cstop%20stop-color='%23042993'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFD045'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECA2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M15%2015V0H5z'/%3e%3cpath%20d='M10.4%2012.83l-.602.17.176-.58-.176-.58.601.17.601-.17-.176.58L11%2013l-.6-.17zm-1.7-2.46l-.601.17.176-.58-.176-.58.6.17.601-.17-.176.58.176.58-.6-.17zM7%207.91l-.6.17.175-.58-.176-.58.601.17.6-.17-.175.58.176.58L7%207.91zM5.3%205.45l-.6.17.176-.58-.176-.58.6.17.601-.17-.176.58.176.58-.6-.17zM3.6%202.99l-.6.17.176-.58L3%202l.6.17.602-.17-.176.58.176.58-.601-.17z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.bb{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231132C7'%20offset='0%25'/%3e%3cstop%20stop-color='%230522A5'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2308379D'%20offset='0%25'/%3e%3cstop%20stop-color='%23042A7D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFCC50'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFC63C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M10%200h11v15H10zM0%200h7v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%200h7v15H7z'/%3e%3cpath%20d='M10.378%204.709c.079-.116.206-.11.278%200l.708%201.082c.075.116.019.209-.118.209h-.242a.221.221%200%200%200-.23.249l.201%202.002a.285.285%200%200%200%20.275.249.695.695%200%200%200%20.43-.179l.14-.137c.1-.099.18-.286.18-.432v-.498a.696.696%200%200%200-.18-.435l-.14-.138c-.1-.1-.082-.214.054-.26l1.032-.343c.13-.043.214.03.188.17l-.368%202.003a.918.918%200%200%201-.227.423l-.678.652a.726.726%200%200%201-.431.174.247.247%200%200%200-.25.252v.496a.248.248%200%200%201-.252.252h-.496a.249.249%200%200%201-.252-.252v-.496a.254.254%200%200%200-.25-.252.69.69%200%200%201-.424-.174l-.652-.652a.956.956%200%200%201-.224-.423l-.4-2.002c-.028-.138.048-.216.184-.17l1.032.343c.13.043.156.156.053.259l-.138.138c-.1.1-.181.289-.181.435v.498c0%20.14.078.33.18.432l.14.137c.1.1.296.179.43.179a.28.28%200%200%200%20.275-.249l.2-2.002A.225.225%200%200%200%209.996%206h-.242c-.14%200-.187-.098-.112-.209l.736-1.082z'%20fill='url(%23e)'/%3e%3c/g%3e%3c/svg%3e")}.bb.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231132C7'%20offset='0%25'/%3e%3cstop%20stop-color='%230522A5'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2308379D'%20offset='0%25'/%3e%3cstop%20stop-color='%23042A7D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFCC50'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFC63C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M7.143%200H15v15H7.143V0zM0%200h5v15H0V0z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23d)'%20d='M5%200h5v15H5z'/%3e%3cpath%20d='M7.425%206.058c.048-.08.125-.075.17%200l.432.736c.045.08.011.143-.073.143h-.147a.128.128%200%200%200-.106.048.162.162%200%200%200-.035.121L7.79%208.47c.01.095.082.167.168.17a.403.403%200%200%200%20.262-.122l.086-.094a.493.493%200%200%200%20.11-.294v-.34a.504.504%200%200%200-.11-.296L8.219%207.4c-.06-.068-.05-.146.033-.177l.63-.233c.08-.03.131.02.115.115L8.772%208.47a.65.65%200%200%201-.138.288L8.22%209.2a.42.42%200%200%201-.263.118c-.04%200-.08.018-.109.05a.179.179%200%200%200-.044.122v.337a.18.18%200%200%201-.044.123.144.144%200%200%201-.11.049h-.302a.144.144%200%200%201-.11-.05.18.18%200%200%201-.044-.122V9.49c0-.094-.069-.17-.153-.172a.4.4%200%200%201-.259-.118l-.398-.444a.678.678%200%200%201-.136-.288l-.244-1.363c-.018-.094.029-.147.112-.116l.63.234c.08.03.095.106.032.176l-.084.094a.501.501%200%200%200-.11.296v.34a.5.5%200%200%200%20.11.293l.085.094c.06.068.18.121.262.121.087%200%20.159-.073.168-.169l.122-1.363a.165.165%200%200%200-.035-.12.131.131%200%200%200-.105-.05h-.147c-.086%200-.114-.066-.069-.142l.45-.736z'%20fill='url(%23e)'/%3e%3c/g%3e%3c/svg%3e")}.bd{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23128363'%20offset='0%25'/%3e%3cstop%20stop-color='%230C6A4F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F23C53'%20offset='0%25'/%3e%3cstop%20stop-color='%23F22E46'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3ccircle%20fill='url(%23c)'%20cx='9.5'%20cy='7.5'%20r='4.5'/%3e%3c/g%3e%3c/svg%3e")}.bd.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23128363'%20offset='0%25'/%3e%3cstop%20stop-color='%230C6A4F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F23C53'%20offset='0%25'/%3e%3cstop%20stop-color='%23F22E46'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3ccircle%20fill='url(%23b)'%20cx='7.5'%20cy='7.5'%20r='4.5'/%3e%3c/g%3e%3c/svg%3e")}.be{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF4453'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFCF3C'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.be.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF4453'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFCF3C'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.bf{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2300B051'%20offset='0%25'/%3e%3cstop%20stop-color='%23009F49'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FA494B'%20offset='0%25'/%3e%3cstop%20stop-color='%23F02B2D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%208h21v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v8H0z'/%3e%3cpath%20fill='%23FDD216'%20d='M10.5%209.17l-1.763%201.257.65-2.065-1.74-1.29%202.165-.019L10.5%205l.688%202.053%202.165.02-1.74%201.289.65%202.065z'/%3e%3c/g%3e%3c/svg%3e")}.bf.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2300B051'%20offset='0%25'/%3e%3cstop%20stop-color='%23009F49'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FA494B'%20offset='0%25'/%3e%3cstop%20stop-color='%23F02B2D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%208h15v7H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v8H0z'/%3e%3cpath%20fill='%23FDD216'%20d='M7.49%209.101L5.333%2010.64l.795-2.526L4%206.535l2.648-.024L7.49%204l.842%202.511%202.648.025-2.128%201.577.795%202.526z'/%3e%3c/g%3e%3c/svg%3e")}.bg{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2306A77C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300966E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E32E19'%20offset='0%25'/%3e%3cstop%20stop-color='%23D62612'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.bg.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2306A77C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300966E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E32E19'%20offset='0%25'/%3e%3cstop%20stop-color='%23D62612'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.bh{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E7243B'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%2015h7.5L6%2014l1.5-1L6%2012l1.5-1L6%2010l1.5-1L6%208l1.5-1L6%206l1.5-1L6%204l1.5-1L6%202l1.5-1L6%200H0z'/%3e%3c/g%3e%3c/svg%3e")}.bh.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E7243B'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2015h7.5L6%2014l1.5-1L6%2012l1.5-1L6%2010l1.5-1L6%208l1.5-1L6%206l1.5-1L6%204l1.5-1L6%202l1.5-1L6%200H0z'/%3e%3c/g%3e%3c/svg%3e")}.bi{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E4233B'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2334CD4E'%20offset='0%25'/%3e%3cstop%20stop-color='%232AB441'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DF2239'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M2.08%201.437h21v15h-21z'%20transform='translate(-2.08%20-1.44)'/%3e%3cpath%20fill='url(%23c)'%20d='M2%201.437l9%207.5-9%207.5z'%20transform='translate(-2.08%20-1.44)'/%3e%3cpath%20fill='url(%23c)'%20transform='matrix(-1%200%200%201%2035.08%20-1.44)'%20d='M14.08%201.437l9%207.5-9%207.5z'/%3e%3cpath%20d='M10.359%206.233L1.119%200%200%201.658%209.24%207.89a3.499%203.499%200%200%200%200%202.094L0%2016.217l1.118%201.658%209.24-6.233a3.486%203.486%200%200%200%202.222.795c.844%200%201.617-.298%202.222-.795l9.24%206.233%201.118-1.658-9.24-6.233a3.499%203.499%200%200%200%200-2.094l9.24-6.232L24.042%200l-9.24%206.233a3.486%203.486%200%200%200-2.222-.796c-.843%200-1.617.299-2.221.796z'%20fill='url(%23a)'%20transform='translate(-2.08%20-1.44)'/%3e%3cpath%20d='M12.58%207.937l-.707.207.207-.707-.207-.707.707.207.707-.207-.207.707.207.707-.707-.207zm-1.5%202.5l-.707.207.207-.707-.207-.707.707.207.707-.207-.207.707.207.707-.707-.207zm3%200l-.707.207.207-.707-.207-.707.707.207.707-.207-.207.707.207.707-.707-.207z'%20fill='url(%23d)'%20transform='translate(-2.08%20-1.44)'/%3e%3c/g%3e%3c/svg%3e")}.bi.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E4233B'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%2334CD4E'%20offset='0%25'/%3e%3cstop%20stop-color='%232AB441'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23DF2239'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20fill='url(%23d)'%20d='M3%201.997h21v15H3z'%20transform='translate(-6%20-2)'/%3e%3cpath%20fill='url(%23e)'%20d='M2.92%201.997l9%207.5-9%207.5z'%20transform='translate(-6%20-2)'/%3e%3cpath%20fill='url(%23e)'%20transform='matrix(-1%200%200%201%2033%20-2)'%20d='M15%201.997l9%207.5-9%207.5z'/%3e%3cpath%20d='M11.279%206.793L2.039.56.92%202.218l9.24%206.232a3.499%203.499%200%200%200%200%202.094L.92%2016.777l1.118%201.658%209.24-6.233a3.486%203.486%200%200%200%202.222.795c.844%200%201.617-.298%202.222-.795l9.24%206.233%201.118-1.658-9.24-6.233a3.499%203.499%200%200%200%200-2.094l9.24-6.232L24.962.56l-9.24%206.233a3.486%203.486%200%200%200-2.222-.796c-.843%200-1.617.299-2.221.796z'%20fill='url(%23b)'%20transform='translate(-6%20-2)'/%3e%3cpath%20d='M13.5%208.497l-.707.207.207-.707-.207-.707.707.207.707-.207-.207.707.207.707-.707-.207zm-1.5%202.5l-.707.207.207-.707-.207-.707.707.207.707-.207-.207.707.207.707-.707-.207zm3%200l-.707.207.207-.707-.207-.707.707.207.707-.207-.207.707.207.707-.707-.207z'%20fill='url(%23f)'%20fill-rule='nonzero'%20transform='translate(-6%20-2)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.bj{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F12641'%20offset='0%25'/%3e%3cstop%20stop-color='%23E71834'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD648'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%2317A668'%20offset='0%25'/%3e%3cstop%20stop-color='%23118653'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h8v15H0z'/%3e%3c/g%3e%3c/svg%3e")}.bj.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F12641'%20offset='0%25'/%3e%3cstop%20stop-color='%23E71834'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD648'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%2317A668'%20offset='0%25'/%3e%3cstop%20stop-color='%23118653'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h6v15H0z'/%3e%3c/g%3e%3c/svg%3e")}.bl{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23216CD3'%20offset='0%25'/%3e%3cstop%20stop-color='%231557B2'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M.5%200h7v4.491c0%20.557-.336%201.297-.76%201.66L5.147%207.518c-.633.542-1.662.54-2.292%200L1.259%206.15C.84%205.791.5%205.05.5%204.491V0z'%20id='b'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F7E14B'%20offset='0%25'/%3e%3cstop%20stop-color='%23F7DF3E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23E12539'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA192C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cg%20transform='translate(6.5%205)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23b'/%3e%3c/mask%3e%3cuse%20fill='url(%23c)'%20xlink:href='%23b'/%3e%3cpath%20d='M2%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM2.5%206.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM4%207a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1.5-.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23d)'%20mask='url(%23e)'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23e)'%20d='M.5%203h7v2h-7z'/%3e%3ccircle%20fill='%23FFF'%20mask='url(%23e)'%20cx='4'%20cy='4'%20r='1'/%3e%3c/g%3e%3cpath%20d='M6.5%203.5s2-.5%204-.5%204%20.5%204%20.5l-.5%202S12.25%205%2010.5%205%207%205.5%207%205.5l-.5-2z'%20fill='url(%23d)'/%3e%3cpath%20d='M10.5%204.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-4%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='%235E5216'/%3e%3c/g%3e%3c/svg%3e")}.bl.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23216CD3'%20offset='0%25'/%3e%3cstop%20stop-color='%231557B2'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M.5%200h7v4.491c0%20.557-.336%201.297-.76%201.66L5.147%207.518c-.633.542-1.662.54-2.292%200L1.259%206.15C.84%205.791.5%205.05.5%204.491V0z'%20id='c'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F7E14B'%20offset='0%25'/%3e%3cstop%20stop-color='%23F7DF3E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M.5%200h7v4.491c0%20.557-.336%201.297-.76%201.66L5.147%207.518c-.633.542-1.662.54-2.292%200L1.259%206.15C.84%205.791.5%205.05.5%204.491V0z'%20id='f'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23E12539'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA192C'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M.5%200h7v4.491c0%20.557-.336%201.297-.76%201.66L5.147%207.518c-.633.542-1.662.54-2.292%200L1.259%206.15C.84%205.791.5%205.05.5%204.491V0z'%20id='i'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M.5%200h7v4.491c0%20.557-.336%201.297-.76%201.66L5.147%207.518c-.633.542-1.662.54-2.292%200L1.259%206.15C.84%205.791.5%205.05.5%204.491V0z'%20fill='url(%23b)'%20transform='translate(3.5%205)'/%3e%3cg%20transform='translate(3.5%205)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3cpath%20d='M2%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM2.5%206.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM4%207a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1.5-.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23d)'%20fill-rule='nonzero'%20mask='url(%23e)'/%3e%3c/g%3e%3cg%20transform='translate(3.5%205)'%3e%3cmask%20id='h'%20fill='%23fff'%3e%3cuse%20xlink:href='%23f'/%3e%3c/mask%3e%3cpath%20fill='url(%23g)'%20mask='url(%23h)'%20d='M.5%203h7v2h-7z'/%3e%3c/g%3e%3cg%20transform='translate(3.5%205)'%3e%3cmask%20id='j'%20fill='%23fff'%3e%3cuse%20xlink:href='%23i'/%3e%3c/mask%3e%3ccircle%20fill='%23FFF'%20mask='url(%23j)'%20cx='4'%20cy='4'%20r='1'/%3e%3c/g%3e%3cpath%20d='M.5.5s2-.5%204-.5%204%20.5%204%20.5l-.5%202S6.25%202%204.5%202%201%202.5%201%202.5L.5.5z'%20fill='url(%23d)'%20transform='translate(3%203)'/%3e%3cpath%20d='M7.5%204.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-4%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='%235E5216'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.bm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DC1F37'%20offset='0%25'/%3e%3cstop%20stop-color='%23CF142C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23042C90'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.5V0h4v2.5C4%204%202%205%202%205S0%204%200%202.5z'%20id='e'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23E20B0C'%20offset='0%25'/%3e%3cstop%20stop-color='%23D40001'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h9v7H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23d)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23d)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cg%20transform='translate(13%205)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23e'/%3e%3ccircle%20fill='%2365B5D2'%20mask='url(%23f)'%20cx='2'%20cy='3'%20r='1'/%3e%3cpath%20d='M2%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM1%203a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23g)'%20mask='url(%23f)'/%3e%3cpath%20fill='%232F8F22'%20mask='url(%23f)'%20d='M0%204h4v1H0z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.bm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DC1F37'%20offset='0%25'/%3e%3cstop%20stop-color='%23CF142C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23042C90'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.5V0h4v2.5C4%204%202%205%202%205S0%204%200%202.5z'%20id='g'/%3e%3cpath%20d='M0%202.5V0h4v2.5C4%204%202%205%202%205S0%204%200%202.5z'%20id='i'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='j'%3e%3cstop%20stop-color='%23E20B0C'%20offset='0%25'/%3e%3cstop%20stop-color='%23D40001'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.5V0h4v2.5C4%204%202%205%202%205S0%204%200%202.5z'%20id='l'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20fill='url(%23d)'%20d='M2%201h15v15H2z'%20transform='translate(-2%20-1)'/%3e%3cpath%20fill='url(%23e)'%20d='M2%201h9v7H2z'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M5%204.23L.648.5H2.66L6.16%203h.697L11.5.098V1.25c0%20.303-.167.627-.418.806L8%204.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L6.84%206h-.697L1.5%208.902v-1.66l3.5-2.5V4.23z'%20fill='url(%23b)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M5.5%204L2%201h.5L6%203.5h1L11%201v.25a.537.537%200%200%201-.208.399L7.5%204v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L7%205.5H6L2%208v-.5L5.5%205V4z'%20fill='url(%23f)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M2%203.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V5.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H7.5V1h-2v2.5H2z'%20fill='url(%23b)'%20transform='translate(-2%20-1)'/%3e%3cpath%20fill='url(%23f)'%20d='M2%204h4V1h1v3h4v1H7v3H6V5H2z'%20transform='translate(-2%20-1)'/%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M0%202.5V0h4v2.5C4%204%202%205%202%205S0%204%200%202.5z'%20fill='url(%23b)'%20transform='translate(9%208)'/%3e%3cg%20transform='translate(9%208)'%3e%3cmask%20id='h'%20fill='%23fff'%3e%3cuse%20xlink:href='%23g'/%3e%3c/mask%3e%3ccircle%20fill='%2365B5D2'%20mask='url(%23h)'%20cx='2'%20cy='3'%20r='1'/%3e%3c/g%3e%3cg%20transform='translate(9%208)'%3e%3cmask%20id='k'%20fill='%23fff'%3e%3cuse%20xlink:href='%23i'/%3e%3c/mask%3e%3cpath%20d='M2%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM1%203a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23j)'%20fill-rule='nonzero'%20mask='url(%23k)'/%3e%3c/g%3e%3cg%20transform='translate(9%208)'%3e%3cmask%20id='m'%20fill='%23fff'%3e%3cuse%20xlink:href='%23l'/%3e%3c/mask%3e%3cpath%20fill='%232F8F22'%20mask='url(%23m)'%20d='M0%204h4v1H0z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.bn{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F7E250'%20offset='0%25'/%3e%3cstop%20stop-color='%23F7DF38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20transform='rotate(20%2011.013%206.09)'%20d='M-3.487%204.59h29v3h-29z'/%3e%3cpath%20fill='url(%23c)'%20transform='rotate(20%209.987%208.91)'%20d='M-4.513%207.41h29v3h-29z'/%3e%3c/g%3e%3c/svg%3e")}.bn.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F7E250'%20offset='0%25'/%3e%3cstop%20stop-color='%23F7DF38'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M-1.5-.279L17.965%209.64l-.732%202.819L-2.233%202.54z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M-2.233%202.541l19.466%209.919-.733%202.819L-2.965%205.36z'/%3e%3c/g%3e%3c/svg%3e")}.bo{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23058C3F'%20offset='0%25'/%3e%3cstop%20stop-color='%23007A34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E63426'%20offset='0%25'/%3e%3cstop%20stop-color='%23D52B1E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFEB1F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FAE400'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.bo.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23058C3F'%20offset='0%25'/%3e%3cstop%20stop-color='%23007A34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E63426'%20offset='0%25'/%3e%3cstop%20stop-color='%23D52B1E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFEB1F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FAE400'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.bq{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='100%25'%20x2='50%25'%20y2='0%25'%20id='a'%3e%3cstop%20stop-color='%23F0F0F0'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFF'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23024AA6'%20offset='0%25'/%3e%3cstop%20stop-color='%23012A87'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EFE118'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9D90F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v14.909H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M21%2014.909H0L21%200z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200v6.212L8.75%200z'/%3e%3cg%20transform='translate(3%203.5)'%3e%3ccircle%20stroke='%23000'%20stroke-width='.5'%20cx='2.757'%20cy='3.038'%20r='2.578'/%3e%3cpath%20fill='%23DC171D'%20d='M3.265%202.267h.924l-.462.802.457.794H3.27l-.473.821-.473-.821H1.4l.462-.803-.456-.793h.913l.473-.822z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.bq.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='100%25'%20x2='50%25'%20y2='0%25'%20id='b'%3e%3cstop%20stop-color='%23F0F0F0'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFF'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v14.909H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23024AA6'%20offset='0%25'/%3e%3cstop%20stop-color='%23012A87'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EFE118'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9D90F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M21%2014.909H0L21%200z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%200v6.212L8.75%200z'/%3e%3cg%20mask='url(%23d)'%3e%3cg%20transform='translate(3%203.5)'%3e%3ccircle%20stroke='%23000'%20stroke-width='.5'%20cx='2.757'%20cy='3.038'%20r='2.578'/%3e%3cpath%20fill='%23DC171D'%20d='M3.265%202.267h.924l-.462.802.457.794H3.27l-.473.821-.473-.821H1.4l.462-.803-.456-.793h.913l.473-.822z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.br{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2305AB41'%20offset='0%25'/%3e%3cstop%20stop-color='%23019C39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23053087'%20offset='0%25'/%3e%3cstop%20stop-color='%23012877'%20offset='100%25'/%3e%3c/linearGradient%3e%3ccircle%20id='c'%20cx='3.5'%20cy='3.5'%20r='3.5'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M2.422%207.773c-.233-.15-.228-.398%200-.546l7.656-4.954a.85.85%200%200%201%20.844%200l7.656%204.954c.233.15.228.398%200%20.546l-7.656%204.954a.85.85%200%200%201-.844%200L2.422%207.773z'%20fill='%23FDD216'/%3e%3cg%20transform='translate(7%204)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3cuse%20fill='url(%23d)'%20xlink:href='%23c'/%3e%3cpath%20d='M-.1%202.974c.265-.215%201.463-.04%203.534.512%201.474.394%203.173%201.262%203.562%201.742l.314.388.778-.629-.315-.388c-.55-.68-2.421-1.636-4.081-2.079-2.586-.69-3.758-.86-4.422-.323l-.388.314.629.777.389-.314z'%20fill='%23FFF'%20fill-rule='nonzero'%20mask='url(%23e)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.br.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2305AB41'%20offset='0%25'/%3e%3cstop%20stop-color='%23019C39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23053087'%20offset='0%25'/%3e%3cstop%20stop-color='%23012877'%20offset='100%25'/%3e%3c/linearGradient%3e%3cellipse%20id='c'%20cx='2.676'%20cy='2.864'%20rx='2.676'%20ry='2.864'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M1.323%207.723c-.178-.122-.175-.325%200-.446l5.854-4.054a.613.613%200%200%201%20.646%200l5.854%204.054c.178.122.175.325%200%20.446l-5.854%204.054a.613.613%200%200%201-.646%200L1.323%207.723z'%20fill='%23FDD216'/%3e%3cellipse%20cx='2.676'%20cy='2.864'%20rx='2.676'%20ry='2.864'%20fill='url(%23b)'%20transform='translate(4.824%204.636)'/%3e%3cg%20transform='translate(4.824%204.636)'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3cpath%20d='M-.076%202.433c.202-.176%201.118-.032%202.702.42%201.127.322%202.426%201.032%202.724%201.424l.24.318.595-.515-.24-.317c-.422-.557-1.852-1.339-3.122-1.701C.846%201.497-.05%201.358-.558%201.798l-.297.256.481.636.298-.257z'%20fill='%23FFF'%20mask='url(%23d)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.bs{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2322B7D5'%20offset='0%25'/%3e%3cstop%20stop-color='%231CACC8'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FCE569'%20offset='0%25'/%3e%3cstop%20stop-color='%23FADF52'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0zM0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l10%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.bs.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2322B7D5'%20offset='0%25'/%3e%3cstop%20stop-color='%231CACC8'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FCE569'%20offset='0%25'/%3e%3cstop%20stop-color='%23FADF52'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%2010h15v5H0v-5zM0%200h15v5H0V0z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l7%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.bt{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF5F38'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD5026'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD951'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFD43B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2015L21%200H0z'/%3e%3c/g%3e%3c/svg%3e")}.bt.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF5F38'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD5026'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD951'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFD43B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2015L15%200H0z'/%3e%3c/g%3e%3c/svg%3e")}.bv{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F14247'%20offset='0%25'/%3e%3cstop%20stop-color='%23ED2F35'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230A3A85'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.bv.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F14247'%20offset='0%25'/%3e%3cstop%20stop-color='%23ED2F35'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%230A3A85'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20fill='url(%23d)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.bw{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%238BBDEA'%20offset='0%25'/%3e%3cstop%20stop-color='%2378ABDA'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0zm0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%206h21v3H0z'/%3e%3c/g%3e%3c/svg%3e")}.bw.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%238BBDEA'%20offset='0%25'/%3e%3cstop%20stop-color='%2378ABDA'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h15v5H0V0zm0%2010h15v5H0v-5z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%206h15v3H0z'/%3e%3c/g%3e%3c/svg%3e")}.by{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E54252'%20offset='0%25'/%3e%3cstop%20stop-color='%23C63442'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%235CBE6B'%20offset='0%25'/%3e%3cstop%20stop-color='%234EA55B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v10H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20d='M3%2012.75V15H0V0h3v2.25L2.5%203l.5.75v1.5L2.5%206l.5.75v1.5L2.5%209l.5.75v1.5l-.5.75.5.75z'%20fill='url(%23a)'/%3e%3cpath%20d='M-1.5%203l1-1.5L.5%203l-1%201.5-1-1.5zm0%203l1-1.5L.5%206l-1%201.5-1-1.5zm0%203l1-1.5L.5%209l-1%201.5-1-1.5zm0%203l1-1.5%201%201.5-1%201.5-1-1.5zm2-10.5l1-1.5%201%201.5-1%201.5-1-1.5zm0%203l1-1.5%201%201.5-1%201.5-1-1.5zm0%203l1-1.5%201%201.5-1%201.5-1-1.5zm0%203l1-1.5%201%201.5-1%201.5-1-1.5zm0%203l1-1.5%201%201.5-1%201.5-1-1.5z'%20fill='url(%23b)'/%3e%3c/g%3e%3c/svg%3e")}.by.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='13'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E54252'%20offset='0%25'/%3e%3cstop%20stop-color='%23C63442'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%235CBE6B'%20offset='0%25'/%3e%3cstop%20stop-color='%234EA55B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h13v10H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h13v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M3%2012.75V15H0V0h3v2.25L2.5%203l.5.75v1.5L2.5%206l.5.75v1.5L2.5%209l.5.75v1.5l-.5.75z'/%3e%3cpath%20d='M.5%201.5l1-1.5%201%201.5-1%201.5-1-1.5zm0%203l1-1.5%201%201.5-1%201.5-1-1.5zm0%203l1-1.5%201%201.5-1%201.5-1-1.5zm0%203l1-1.5%201%201.5-1%201.5-1-1.5zm0%203l1-1.5%201%201.5-1%201.5-1-1.5z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.bz{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23094995'%20offset='0%25'/%3e%3cstop%20stop-color='%23074185'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23D5182F'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%202h21v11H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v2H0zm0%2013h21v2H0z'/%3e%3ccircle%20fill='url(%23a)'%20cx='10.5'%20cy='7.5'%20r='4.5'/%3e%3cpath%20d='M10.5%2011a.5.5%200%201%201%200-1c.284%200%20.56-.047.822-.138a.5.5%200%201%201%20.329.944A3.495%203.495%200%200%201%2010.5%2011zm2.651-1.215a3.5%203.5%200%200%200%20.605-.998.5.5%200%200%200-.93-.368%202.5%202.5%200%200%201-.432.713.5.5%200%200%200%20.757.653zm.817-2.759a3.48%203.48%200%200%200-.348-1.114.5.5%200%200%200-.891.454c.126.248.21.516.248.794a.5.5%200%201%200%20.991-.134zm-1.611-2.493a3.482%203.482%200%200%200-1.08-.446.5.5%200%200%200-.22.975c.273.062.532.17.769.318a.5.5%200%201%200%20.53-.847zm-2.8-.405a3.487%203.487%200%200%200-1.055.498.5.5%200%201%200%20.571.82c.23-.159.484-.28.753-.354a.5.5%200%200%200-.268-.964zM7.35%205.973a3.48%203.48%200%200%200-.327%201.121.5.5%200%201%200%20.994.115%202.48%202.48%200%200%201%20.232-.8.5.5%200%201%200-.9-.436zm-.06%202.925c.157.359.373.689.638.976a.5.5%200%201%200%20.735-.678%202.503%202.503%200%200%201-.456-.698.5.5%200%201%200-.917.4zm2.146%201.937a.5.5%200%201%201%20.304-.953c.229.073.469.113.714.118a.5.5%200%200%201-.018%201%203.495%203.495%200%200%201-1-.165z'%20fill='%23118014'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.bz.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23094995'%20offset='0%25'/%3e%3cstop%20stop-color='%23074185'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23D5182F'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%202h15v11H0z'/%3e%3cpath%20d='M0%200h15v2H0V0zm0%2013h15v2H0v-2z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3cg%20transform='translate(3%203)'%3e%3ccircle%20fill='url(%23a)'%20cx='4.5'%20cy='4.5'%20r='4.5'/%3e%3cpath%20d='M4.5%208a.5.5%200%200%201%200-1c.284%200%20.56-.047.822-.138a.5.5%200%201%201%20.329.944A3.5%203.5%200%200%201%204.5%208zm2.651-1.215a3.5%203.5%200%200%200%20.605-.998.5.5%200%200%200-.93-.368%202.5%202.5%200%200%201-.432.713.5.5%200%200%200%20.757.653zm.817-2.759a3.48%203.48%200%200%200-.348-1.114.5.5%200%200%200-.891.454c.126.248.21.516.248.794a.5.5%200%200%200%20.991-.134zM6.357%201.533a3.482%203.482%200%200%200-1.08-.446.5.5%200%200%200-.22.975c.273.062.532.17.769.318a.5.5%200%201%200%20.53-.847h.001zm-2.8-.405a3.487%203.487%200%200%200-1.055.498.5.5%200%201%200%20.571.82c.23-.159.484-.28.753-.354a.5.5%200%201%200-.268-.964h-.001zM1.35%202.973a3.48%203.48%200%200%200-.327%201.121.5.5%200%201%200%20.994.115%202.48%202.48%200%200%201%20.232-.8.5.5%200%201%200-.9-.436h.001zm-.06%202.925c.157.359.373.689.638.976a.5.5%200%201%200%20.735-.678%202.503%202.503%200%200%201-.456-.698.5.5%200%201%200-.917.4zm2.146%201.937a.5.5%200%201%201%20.304-.953c.229.073.469.113.714.118a.5.5%200%200%201-.018%201%203.495%203.495%200%200%201-1-.165z'%20fill='%23118014'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ca{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF3131'%20offset='0%25'/%3e%3cstop%20stop-color='red'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10zM0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M6%200h9v15H6z'/%3e%3cpath%20d='M11.674%207.326l.652-.652a.251.251%200%200%201%20.355.007L13%207l1-.5-.5%201%20.32.32a.247.247%200%200%201%20.008.352L12.5%209.5H11l-.25%201.5h-.5L10%209.5H8.5L7.172%208.172a.253.253%200%200%201%20.009-.353L7.5%207.5l-.5-1L8%207l.32-.32a.249.249%200%200%201%20.354-.006l.652.652c.096.096.152.063.124-.075L9%205l1%20.5.5-1.5.5%201.5%201-.5-.45%202.251c-.029.142.028.171.124.075z'%20fill='url(%23b)'/%3e%3c/g%3e%3c/svg%3e")}.ca.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF3131'%20offset='0%25'/%3e%3cstop%20stop-color='red'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M10.714%200H15v15h-4.286V0zM0%200h4.286v15H0V0z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M4.286%200h6.428v15H4.286z'/%3e%3cpath%20d='M8.339%207.376l.465-.466a.18.18%200%200%201%20.254.005l.228.228.714-.357-.357.714.228.229a.176.176%200%200%201%20.006.251l-.948.949H7.857L7.68%2010h-.36l-.178-1.071H6.07l-.948-.949a.18.18%200%200%201%20.006-.252l.228-.228L5%206.786l.714.357.229-.229a.178.178%200%200%201%20.253-.004l.465.466c.069.068.109.045.089-.054l-.321-1.608.714.357L7.5%205l.357%201.071.714-.357-.321%201.608c-.02.102.02.122.089.054z'%20fill='url(%23b)'/%3e%3c/g%3e%3c/svg%3e")}.cc{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23229716'%20offset='0%25'/%3e%3cstop%20stop-color='%231C7E12'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFE244'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFDF32'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M4%206a2%202%200%201%201%200-4%202%202%200%200%201%200%204zm0-2c.208%200-.16%201.054%200%201%20.265-.09%201-1.328%201-1.5%200-.276-.448-.5-1-.5s-1%20.224-1%20.5.448.5%201%20.5zm12%209l-.707.207.207-.707-.207-.707L16%2012l.707-.207-.207.707.207.707zm0-9.5l-.707.207L15.5%203l-.207-.707L16%202.5l.707-.207L16.5%203l.207.707zm3%203l-.707.207L18.5%206l-.207-.707L19%205.5l.707-.207L19.5%206l.207.707zm-5%201l-.707.207L13.5%207l-.207-.707L14%206.5l.707-.207L14.5%207l.207.707zm3.5%201.25l-.354.104.104-.354-.104-.354.354.104.354-.104-.104.354.104.354zm-5.439-3.203a2.5%202.5%200%201%200%200%203.905%202.083%202.083%200%201%201%200-3.905z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.cc.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23229716'%20offset='0%25'/%3e%3cstop%20stop-color='%231C7E12'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFE244'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFDF32'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M3.355%206.855C2.607%206.855%202%206.216%202%205.428%202%204.639%202.607%204%203.355%204c.749%200%201.356.64%201.356%201.428%200%20.788-.607%201.427-1.356%201.427zm0-1.427c.141%200-.108.752%200%20.714.18-.065.678-.948.678-1.071%200-.197-.304-.357-.678-.357-.374%200-.677.16-.677.357%200%20.197.303.357.677.357zm8.133%206.424l-.48.148.14-.505-.14-.504.48.147.479-.147-.14.504.14.505-.48-.148zm0-6.781l-.48.148.14-.505-.14-.505.48.148.479-.148-.14.505.14.505-.48-.148zm2.033%202.141l-.48.148.141-.505-.14-.504.479.147.479-.147-.14.504.14.505-.48-.148zm-3.389.714l-.479.148.14-.505-.14-.504.48.147.479-.147-.14.504.14.505-.48-.148zm2.372.892l-.24.075.07-.253-.07-.253.24.074.24-.074-.07.253.07.253-.24-.075zM8.818%206.532a1.633%201.633%200%200%200-2.3.18%201.855%201.855%200%200%200%200%202.428%201.633%201.633%200%200%200%202.3.18%201.37%201.37%200%200%201-1.622-.504%201.55%201.55%200%200%201%200-1.78%201.37%201.37%200%200%201%201.622-.504z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.cd{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23158AFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23007FFF'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23CE1120'%20offset='0%25'/%3e%3cstop%20stop-color='%23E11B2B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M4.294%201.443h21v15h-21z'%20transform='translate(-4.29%20-1.44)'/%3e%3cpath%20fill='%23FDD216'%20d='M24.273%203.906l-25.84%2013.166-2.723-5.346L21.55-1.44z'/%3e%3cpath%20fill='url(%23c)'%20transform='rotate(153%2012.585%207.839)'%20d='M.057%207.074h29v4h-29z'/%3e%3cpath%20fill='%23FDD216'%20d='M3.504%204.478l-1.47%201.047.542-1.721-1.45-1.074%201.805-.016.573-1.711.573%201.71%201.804.017-1.45%201.074.542%201.721z'/%3e%3c/g%3e%3c/svg%3e")}.cd.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23158AFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23007FFF'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23CE1120'%20offset='0%25'/%3e%3cstop%20stop-color='%23E11B2B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M.004.003h15v15h-15z'/%3e%3cg%20mask='url(%23d)'%3e%3cpath%20fill='%23FDD216'%20d='M24.273%203.906l-25.84%2013.166-2.723-5.346L21.55-1.44z'/%3e%3cpath%20fill='url(%23e)'%20transform='rotate(153%2013.007%208.034)'%20d='M.767%207.634h29v4h-29z'/%3e%3c/g%3e%3cpath%20fill='%23FDD216'%20d='M3.504%204.478l-1.47%201.047.542-1.721-1.45-1.074%201.805-.016.573-1.711.573%201.71%201.804.017-1.45%201.074.542%201.721z'/%3e%3c/g%3e%3c/svg%3e")}.cf{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23083D96'%20offset='0%25'/%3e%3cstop%20stop-color='%23053380'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2337AE39'%20offset='0%25'/%3e%3cstop%20stop-color='%232E9630'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD13F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCD2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23E42346'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFD03B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCD2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%207h21v4H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%204h21v3H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M8%200h5v15H8z'/%3e%3cpath%20fill='url(%23f)'%20d='M3.5%202.585l-.882.629.326-1.033-.87-.645%201.082-.01L3.5.5l.344%201.027%201.083.01-.87.644.325%201.033z'/%3e%3c/g%3e%3c/svg%3e")}.cf.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23083D96'%20offset='0%25'/%3e%3cstop%20stop-color='%23053380'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2337AE39'%20offset='0%25'/%3e%3cstop%20stop-color='%232E9630'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD13F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCD2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23E42346'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFD03B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCD2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%207h15v4H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2011h15v4H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%204h15v3H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M6%200h4v15H6z'/%3e%3cpath%20fill='url(%23f)'%20d='M3%202.536L2.38%203l.229-.761L2%201.763l.758-.007L3%201l.24.757.76.007-.61.475.228.761z'/%3e%3c/g%3e%3c/svg%3e")}.cg{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F33630'%20offset='0%25'/%3e%3cstop%20stop-color='%23DC241E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23009643'%20offset='0%25'/%3e%3cstop%20stop-color='%2309C15B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FCDF4A'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCE154'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M6.062%2019.017l15-14h1v15h-16z'%20transform='translate(-1.06%20-5.02)'/%3e%3cpath%20fill='url(%23c)'%20transform='rotate(180%208.532%2010.007)'%20d='M1.062%2019.017l15-14h1v15h-16z'/%3e%3cpath%20fill='url(%23d)'%20transform='rotate(134%2012.406%209.432)'%20d='M-2.63%209.667h29v5h-29z'/%3e%3c/g%3e%3c/svg%3e")}.cg.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F33630'%20offset='0%25'/%3e%3cstop%20stop-color='%23DC241E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='100%25'%20x2='50%25'%20y2='0%25'%20id='d'%3e%3cstop%20stop-color='%23009643'%20offset='0%25'/%3e%3cstop%20stop-color='%2309C15B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FCDF4A'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCE154'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cpath%20fill='url(%23b)'%20mask='url(%23c)'%20d='M3%2014L14.25%200H15v15H3z'/%3e%3cpath%20fill='url(%23d)'%20mask='url(%23c)'%20d='M12%201L.75%2015H0V0h12z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23c)'%20d='M16.201-1.547L1.812%2019.313l-2.57-3.473%2014.39-20.86z'/%3e%3c/g%3e%3c/svg%3e")}.ch{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='100%25'%20x2='50%25'%20y2='0%25'%20id='b'%3e%3cstop%20stop-color='red'%20offset='0%25'/%3e%3cstop%20stop-color='%23FF3131'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M9%209H6.256A.255.255%200%200%201%206%208.744V6.256C6%206.115%206.114%206%206.256%206H9V3.256C9%203.115%209.114%203%209.256%203h2.488c.141%200%20.256.114.256.256V6h2.744c.141%200%20.256.114.256.256v2.488a.255.255%200%200%201-.256.256H12v2.744a.255.255%200%200%201-.256.256H9.256A.255.255%200%200%201%209%2011.744V9z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.ch.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='100%25'%20x2='50%25'%20y2='0%25'%20id='a'%3e%3cstop%20stop-color='red'%20offset='0%25'/%3e%3cstop%20stop-color='%23FF3131'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M6%209H3.256A.255.255%200%200%201%203%208.744V6.256C3%206.115%203.114%206%203.256%206H6V3.256C6%203.115%206.114%203%206.256%203h2.488c.141%200%20.256.114.256.256V6h2.744c.141%200%20.256.114.256.256v2.488a.255.255%200%200%201-.256.256H9v2.744a.255.255%200%200%201-.256.256H6.256A.255.255%200%200%201%206%2011.744V9z'%20fill='url(%23b)'/%3e%3c/g%3e%3c/svg%3e")}.ci{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DC87D'%20offset='0%25'/%3e%3cstop%20stop-color='%23169E62'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F89242'%20offset='0%25'/%3e%3cstop%20stop-color='%23F67F22'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.ci.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DC87D'%20offset='0%25'/%3e%3cstop%20stop-color='%23169E62'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F89242'%20offset='0%25'/%3e%3cstop%20stop-color='%23F67F22'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.ck{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23c)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cpath%20d='M15.5%205a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%206a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM13%207.5a.5.5%200%201%201-1%200%20.5.5%200%200%201%201%200zm6%200a.5.5%200%201%201-1%200%20.5.5%200%200%201%201%200zm-5.268%201.768a.5.5%200%201%201-.707.707.5.5%200%200%201%20.707-.707zm4.243-4.243a.5.5%200%201%201-.707.707.5.5%200%200%201%20.707-.707zm-.707%204.243a.5.5%200%201%201%20.707.707.5.5%200%200%201-.707-.707zm-4.243-4.243a.5.5%200%201%201%20.707.707.5.5%200%200%201-.707-.707z'%20fill='%23FFF'/%3e%3c/g%3e%3c/svg%3e")}.ck.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23b)'%20mask='url(%23d)'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23e)'%20mask='url(%23d)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23b)'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cpath%20d='M10.5%208.714a.357.357%200%201%201%200-.714.357.357%200%200%201%200%20.714zm0%204.286a.357.357%200%201%201%200-.714.357.357%200%200%201%200%20.714zm-1.786-2.5a.357.357%200%201%201-.714%200%20.357.357%200%200%201%20.714%200zm4.286%200a.357.357%200%201%201-.714%200%20.357.357%200%200%201%20.714%200zm-3.763%201.263a.357.357%200%201%201-.496.514.357.357%200%200%201%20.496-.514zm3.03-3.03a.357.357%200%201%201-.495.513.357.357%200%200%201%20.496-.514zm-.504%203.03a.357.357%200%201%201%20.514.496.357.357%200%200%201-.514-.496zm-3.03-3.03a.357.357%200%201%201%20.513.495.357.357%200%200%201-.514-.496z'%20fill='%23FFF'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.cl{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EA3B2E'%20offset='0%25'/%3e%3cstop%20stop-color='%23D52B1E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230B48C2'%20offset='0%25'/%3e%3cstop%20stop-color='%230239A7'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v7H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M3.5%204.28l-1.176.838.434-1.377-1.16-.859%201.444-.013L3.5%201.5l.458%201.369%201.444.013-1.16.859.434%201.377z'/%3e%3c/g%3e%3c/svg%3e")}.cl.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EA3B2E'%20offset='0%25'/%3e%3cstop%20stop-color='%23D52B1E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230B48C2'%20offset='0%25'/%3e%3cstop%20stop-color='%230239A7'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v7H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M3.5%204.28l-1.176.838.434-1.377-1.16-.859%201.444-.013L3.5%201.5l.458%201.369%201.444.013-1.16.859.434%201.377z'/%3e%3c/g%3e%3c/svg%3e")}.cm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFDC44'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD216'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23059170'%20offset='0%25'/%3e%3cstop%20stop-color='%23007B5E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E21A30'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFDC42'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD217'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%200h7v15H7z'/%3e%3cpath%20fill='url(%23b)'%20d='M14%200h7v15h-7z'/%3e%3cpath%20fill='url(%23e)'%20d='M10.5%208.475L9.03%209.523%209.574%207.8l-1.45-1.074%201.804-.016L10.5%205l.573%201.711%201.805.016-1.45%201.074.541%201.722z'/%3e%3c/g%3e%3c/svg%3e")}.cm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFDC44'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD216'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23059170'%20offset='0%25'/%3e%3cstop%20stop-color='%23007B5E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E21A30'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFDC42'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD217'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M5%200h5v15H5z'/%3e%3cpath%20fill='url(%23a)'%20d='M10%200h5v15h-5z'/%3e%3cpath%20fill='url(%23d)'%20d='M7.5%208.305L6.571%209l.343-1.143L6%207.145l1.138-.01L7.5%206l.362%201.135L9%207.145l-.915.713L8.426%209z'/%3e%3c/g%3e%3c/svg%3e")}.cn{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F1361D'%20offset='0%25'/%3e%3cstop%20stop-color='%23DF2910'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='37.059%25'%20y1='1.704%25'%20x2='62.941%25'%20y2='98.296%25'%20id='c'%3e%3cstop%20stop-color='%23FFDC42'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD217'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFDC42'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD217'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M10.13%204.483l-.63.383.017-.737-.383-.629.737.017.629-.383-.017.737.383.629-.737-.017zM8.28%202.449l-.726-.123.497-.545.123-.727.545.497.727.123-.497.545-.123.727-.545-.497zm.366%206.53l-.615.404-.01-.737-.404-.615.737-.01.615-.404.01.737.404.615-.737.01zm1.267-1.987l-.732.082.327-.66-.082-.733.66.327.733-.082-.327.66.082.733-.66-.327z'%20fill='url(%23c)'/%3e%3cpath%20fill='url(%23d)'%20d='M5%206.17L3.237%207.427l.65-2.065-1.74-1.29%202.165-.019L5%202l.688%202.053%202.165.02-1.74%201.289.65%202.065z'/%3e%3c/g%3e%3c/svg%3e")}.cn.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23F1361D'%20offset='0%25'/%3e%3cstop%20stop-color='%23DF2910'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='37.059%25'%20y1='1.704%25'%20x2='62.941%25'%20y2='98.296%25'%20id='b'%3e%3cstop%20stop-color='%23FFDC42'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD217'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFDC42'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD217'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M10.13%204.483l-.63.383.017-.737-.383-.629.737.017.629-.383-.017.737.383.629-.737-.017h.001zM8.28%202.449l-.726-.123.497-.545.123-.727.545.497.727.123-.497.545-.123.727-.545-.497H8.28zm.366%206.53l-.615.404-.01-.737-.404-.615.737-.01.615-.404.01.737.404.615-.737.01zm1.267-1.987l-.732.082.327-.66-.082-.733.66.327.733-.082-.327.66.082.733-.66-.327h-.001z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23c)'%20d='M5%206.17L3.237%207.427l.65-2.065-1.74-1.29%202.165-.019L5%202l.688%202.053%202.165.02-1.74%201.289.65%202.065z'/%3e%3c/g%3e%3c/svg%3e")}.co{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230748AE'%20offset='0%25'/%3e%3cstop%20stop-color='%23003993'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DE2035'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD935'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD216'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h21v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.co.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230748AE'%20offset='0%25'/%3e%3cstop%20stop-color='%23003993'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DE2035'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD935'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD216'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2011h15v4H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h15v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.cr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2306358F'%20offset='0%25'/%3e%3cstop%20stop-color='%23042E7D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E61F37'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v3H0zm0%2012h21v3H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h21v9H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.cr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2306358F'%20offset='0%25'/%3e%3cstop%20stop-color='%23042E7D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E61F37'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h15v3H0V0zm0%2012h15v3H0v-3z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h15v9H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.cu{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230B389F'%20offset='0%25'/%3e%3cstop%20stop-color='%23052E8D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E12A43'%20offset='0%25'/%3e%3cstop%20stop-color='%23CD1931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v3H0zm0%206h21v3H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h21v3H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2012h21v3H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%209h21v3H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l10%207.5L0%2015z'/%3e%3cpath%20fill='url(%23a)'%20d='M3.5%208.267l-1.176.851.447-1.381-1.173-.855%201.451-.003L3.5%205.5l.45%201.38%201.452.002-1.173.855.447%201.381z'/%3e%3c/g%3e%3c/svg%3e")}.cu.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230B389F'%20offset='0%25'/%3e%3cstop%20stop-color='%23052E8D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E12A43'%20offset='0%25'/%3e%3cstop%20stop-color='%23CD1931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h15v3H0V0zm0%206h15v3H0V6z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h15v3H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2012h15v3H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%209h15v3H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l10%207.5L0%2015z'/%3e%3cpath%20fill='url(%23a)'%20d='M3.5%208.267l-1.176.851.447-1.381-1.173-.855%201.451-.003L3.5%205.5l.45%201.38%201.452.002-1.173.855.447%201.381z'/%3e%3c/g%3e%3c/svg%3e")}.cv{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230C49AE'%20offset='0%25'/%3e%3cstop%20stop-color='%23063B91'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23CD232E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CD232E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v8H0zm0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%208h21v3H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%209h21v1H0z'/%3e%3cpath%20d='M8%2013a.5.5%200%201%201%200-1c.284%200%20.56-.047.822-.138a.5.5%200%200%201%20.329.944A3.495%203.495%200%200%201%208%2013zm2.651-1.215a3.5%203.5%200%200%200%20.605-.998.5.5%200%200%200-.93-.368%202.5%202.5%200%200%201-.432.713.5.5%200%200%200%20.757.653zm.817-2.759a3.48%203.48%200%200%200-.348-1.114.5.5%200%200%200-.891.454c.126.248.21.516.248.794a.5.5%200%201%200%20.991-.134zM9.857%206.533a3.482%203.482%200%200%200-1.08-.446.5.5%200%201%200-.22.975c.273.062.532.17.769.318a.5.5%200%201%200%20.53-.847zm-2.8-.405a3.487%203.487%200%200%200-1.055.498.5.5%200%201%200%20.571.82c.23-.159.484-.28.753-.354a.5.5%200%201%200-.268-.964zM4.85%207.973a3.48%203.48%200%200%200-.327%201.121.5.5%200%201%200%20.994.115%202.48%202.48%200%200%201%20.232-.8.5.5%200%201%200-.9-.436zm-.06%202.925c.157.359.373.689.638.976a.5.5%200%201%200%20.735-.678%202.503%202.503%200%200%201-.456-.698.5.5%200%201%200-.917.4zm2.146%201.937a.5.5%200%201%201%20.304-.953c.229.073.469.113.714.118a.5.5%200%200%201-.018%201%203.495%203.495%200%200%201-1-.165z'%20fill='%23F7D035'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.cv.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230C49AE'%20offset='0%25'/%3e%3cstop%20stop-color='%23063B91'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23CD232E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CD232E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%200h15v8H0V0zm0%2011h15v4H0v-4z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%208h15v3H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%209h15v1H0z'/%3e%3cpath%20d='M5.48%2012.929a.5.5%200%201%201%200-1c.284%200%20.56-.047.822-.138a.5.5%200%200%201%20.33.944%203.5%203.5%200%200%201-1.152.194zm2.651-1.215a3.5%203.5%200%200%200%20.605-.998.5.5%200%201%200-.93-.368%202.5%202.5%200%200%201-.432.713.5.5%200%200%200%20.757.653zm.817-2.76A3.48%203.48%200%200%200%208.6%207.842a.5.5%200%200%200-.89.454c.125.248.21.516.247.794a.5.5%200%201%200%20.991-.134zm-1.61-2.492a3.482%203.482%200%200%200-1.08-.446.5.5%200%201%200-.22.975c.272.062.531.17.768.318a.5.5%200%201%200%20.53-.847h.001zm-2.8-.405a3.487%203.487%200%200%200-1.056.498.5.5%200%201%200%20.571.82c.23-.16.484-.28.753-.354a.5.5%200%200%200-.268-.964zM2.33%207.902a3.48%203.48%200%200%200-.327%201.12.5.5%200%201%200%20.994.116%202.48%202.48%200%200%201%20.232-.8.5.5%200%201%200-.9-.436h.001zm-.06%202.925c.157.359.373.689.638.976a.5.5%200%201%200%20.735-.678%202.503%202.503%200%200%201-.456-.698.5.5%200%200%200-.917.4zm2.146%201.937a.5.5%200%201%201%20.304-.953c.23.073.47.113.714.118a.5.5%200%200%201-.018%201%203.495%203.495%200%200%201-1-.165z'%20fill='%23F7D035'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.cw{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230543A8'%20offset='0%25'/%3e%3cstop%20stop-color='%2300307D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FCC747'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC539'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v2H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M6.5%206.267l-1.176.851.447-1.381-1.173-.855%201.451-.003L6.5%203.5l.45%201.38%201.452.002-1.173.855.447%201.381zM3%203.575l-.882.639.335-1.036-.88-.642%201.089-.001L3%201.5l.338%201.035%201.089.001-.88.642.335%201.036z'/%3e%3c/g%3e%3c/svg%3e")}.cw.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230543A8'%20offset='0%25'/%3e%3cstop%20stop-color='%2300307D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FCC747'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC539'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v2H0z'/%3e%3cpath%20d='M6.5%206.267l-1.176.851.447-1.381-1.173-.855%201.451-.003L6.5%203.5l.45%201.38%201.452.002-1.173.855.447%201.381L6.5%206.267zM3%203.575l-.882.639.335-1.036-.88-.642%201.089-.001L3%201.5l.338%201.035%201.089.001-.88.642.335%201.036L3%203.575z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.cx{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230637C5'%20offset='0%25'/%3e%3cstop%20stop-color='%23002CAA'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%233BA758'%20offset='0%25'/%3e%3cstop%20stop-color='%232C8945'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFCC5D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC54A'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='%23FFF'%20d='M4%2013l-.707.207.207-.707-.207-.707L4%2012l.707-.207-.207.707.207.707zm0-7.5l-.707.207L3.5%205l-.207-.707L4%204.5l.707-.207L4.5%205l.207.707zm2%203l-.707.207L5.5%208l-.207-.707L6%207.5l.707-.207L6.5%208l.207.707zm-4%201l-.707.207L1.5%209l-.207-.707L2%208.5l.707-.207L2.5%209l.207.707zm3.5%201.25l-.354.104.104-.354-.104-.354.354.104.354-.104-.104.354.104.354z'/%3e%3cpath%20d='M0%2015l8.92-6.372s1.983%201.025%202.74.484c.758-.54.348-2.689.348-2.689L21%200H0v15z'%20fill='url(%23c)'%20transform='matrix(-1%200%200%201%2021%200)'/%3e%3cpath%20d='M14.46%207.5s2.415-.4%202.703-1.527c.288-1.127-2.298-1.934-2.4-2.34-.102-.405.95-.117%201.415%200%20.451.115%201.333.696%201.333.696s-.01-.8-.131-1.17c-.202-.62-.836-1.802-.836-1.802s1.075.69%201.536%201.24c.265.315.364%201.738.69%202.226.584.872%201.948-.102%201.369.823-.58.924-1.911%201.05-2.976%201.455-.965.367-3.115.86-3.115.86l.413-.461zM10.5%2010a2.5%202.5%200%201%201%200-5%202.5%202.5%200%200%201%200%205zM9.258%207.5L9%208s.84-.19%201.123%200c.384.256.377%201%20.377%201h.5s-.164-.73.093-1.243C11.35%207.244%2012%207%2012%207V6s-.681.727-1.5%201S9%207%209%207l.258.5z'%20fill='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.cx.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230637C5'%20offset='0%25'/%3e%3cstop%20stop-color='%23002CAA'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%233BA758'%20offset='0%25'/%3e%3cstop%20stop-color='%232C8945'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFCC5D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC54A'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M3.5%2010.884L3.108%2011l.115-.397-.115-.396.392.116.392-.116-.115.396.115.397-.392-.116zm0-4.207l-.392.116.115-.396L3.108%206l.392.116L3.892%206l-.115.397.115.396-.392-.116zM4.608%208.36l-.392.116.115-.397-.115-.396.392.116L5%207.683l-.115.396.115.397-.392-.116zm-2.216.56L2%209.038l.115-.397L2%208.244l.392.116.392-.116-.115.396.115.397-.392-.116zm1.94.702l-.197.058.058-.198-.058-.199.196.058.196-.058-.057.199.057.198-.196-.058z'%20fill='%23FFF'%20fill-rule='nonzero'/%3e%3cpath%20d='M15%2015L8.629%208.628s-1.338.121-1.87-.41c-.57-.57-.336-1.795-.336-1.795L0%200h15v15z'%20fill='url(%23c)'/%3e%3cpath%20d='M9.683%207.554s1.376-.232%201.54-.884c.165-.652-1.31-1.118-1.368-1.353-.058-.235.542-.068.807%200%20.257.066.76.402.76.402s-.006-.462-.075-.677C11.232%204.684%2010.871%204%2010.871%204s.612.4.875.717c.151.183.208%201.006.394%201.288.333.505%201.11-.059.78.476-.33.535-1.09.608-1.696.842-.55.212-1.776.497-1.776.497l.235-.266zM7.425%209A1.436%201.436%200%200%201%206%207.554c0-.799.638-1.447%201.425-1.447s1.425.648%201.425%201.447C8.85%208.352%208.212%209%207.425%209zm-.708-1.446l-.147.289s.479-.11.64%200c.22.148.215.578.215.578h.285s-.093-.422.053-.719c.147-.296.517-.438.517-.438v-.578s-.388.42-.855.578c-.467.158-.855%200-.855%200l.147.29z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.cy{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E7832C'%20offset='0%25'/%3e%3cstop%20stop-color='%23D7751F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M15.547%202.227c.25-.126.33-.043.18.183l-.454.68c-.15.226-.457.533-.683.683l-.68.454c-.226.15-.568.431-.763.626l.206-.206a.496.496%200%200%200-.003.703l.3.3a.494.494%200%200%201%200%20.7l-.3.3a.729.729%200%200%201-.803.123l-.094-.046a.5.5%200%200%200-.68.226l-.046.094c-.126.25-.436.523-.702.611l-.55.184A3.743%203.743%200%200%201%209.5%208a.876.876%200%200%200-.727.453l-.046.094a.502.502%200%200%201-.67.231l-1.113-.556a3.651%203.651%200%200%201-.794-.572l-.3-.3a1.4%201.4%200%200%201-.35-.85c0-.276.227-.5.5-.5h-.5c.276%200%20.656-.156.85-.35l.3-.3A1.4%201.4%200%200%201%207.5%205c.276%200%20.57-.209.658-.475l.184-.55a.574.574%200%200%201%20.64-.379l1.536.308c.266.053.696.042.966-.025l1.032-.258a5.4%205.4%200%200%200%20.937-.348l.094-.046.906-.454.094-.046.906-.454.094-.046z'%20fill='url(%23b)'/%3e%3ccircle%20fill='%23445128'%20cx='10.5'%20cy='11.5'%20r='1'/%3e%3cpath%20d='M12.158%2011.474a.5.5%200%201%201-.316-.948%204.528%204.528%200%200%200%20.96-.482c.354-.236.615-.497.75-.768a.5.5%200%201%201%20.895.448c-.224.449-.603.828-1.09%201.152a5.512%205.512%200%200%201-1.199.598zm-3-.948a.5.5%200%201%201-.316.948%205.512%205.512%200%200%201-1.2-.598c-.486-.324-.865-.703-1.09-1.152a.5.5%200%200%201%20.895-.448c.136.271.397.532.75.768a4.528%204.528%200%200%200%20.961.482z'%20fill='%23445128'%20fill-rule='nonzero'%20opacity='.75'/%3e%3c/g%3e%3c/svg%3e")}.cy.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E7832C'%20offset='0%25'/%3e%3cstop%20stop-color='%23D7751F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cg%20transform='translate(4%204)'%3e%3cpath%20d='M7.67.165c.182-.092.24-.031.131.133l-.33.495a2.123%202.123%200%200%201-.496.496l-.495.33c-.164.11-.413.314-.555.456l.15-.15a.36.36%200%200%200-.002.511l.218.219a.36.36%200%200%201%200%20.509l-.218.218a.53.53%200%200%201-.584.09l-.069-.034a.364.364%200%200%200-.494.164l-.034.069a1.01%201.01%200%200%201-.51.444l-.4.134c-.23.07-.469.108-.71.115a.637.637%200%200%200-.528.33l-.033.067a.365.365%200%200%201-.488.168l-.81-.404a2.655%202.655%200%200%201-.577-.416l-.218-.218a1.018%201.018%200%200%201-.254-.618c0-.201.165-.364.363-.364H.364c.2%200%20.477-.113.618-.254l.218-.219c.172-.152.39-.241.618-.254.2%200%20.415-.152.479-.346l.134-.4a.417.417%200%200%201%20.465-.275l1.117.224c.194.038.506.03.703-.018l.75-.188c.235-.063.463-.148.682-.253l.068-.034.659-.33.068-.033.66-.33.068-.034z'%20fill='url(%23b)'/%3e%3ccircle%20fill='%23445128'%20cx='4'%20cy='6.909'%20r='1'/%3e%3cpath%20d='M5.206%206.89a.364.364%200%201%201-.23-.69c.246-.088.48-.206.698-.35.258-.171.447-.361.546-.558a.364.364%200%201%201%20.65.325c-.162.327-.438.603-.792.838-.272.18-.565.326-.872.435zM3.024%206.2a.364.364%200%201%201-.23.69%204.009%204.009%200%200%201-.873-.435c-.353-.235-.629-.511-.792-.838a.364.364%200%200%201%20.65-.325c.1.197.29.387.546.558.218.144.453.262.699.35z'%20fill='%23445128'%20fill-rule='nonzero'%20opacity='.75'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.cz{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E8252A'%20offset='0%25'/%3e%3cstop%20stop-color='%23D7151A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2317579E'%20offset='0%25'/%3e%3cstop%20stop-color='%2310457F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l10%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.cz.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E8252A'%20offset='0%25'/%3e%3cstop%20stop-color='%23D7151A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2317579E'%20offset='0%25'/%3e%3cstop%20stop-color='%2310457F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l7%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.de{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F01515'%20offset='0%25'/%3e%3cstop%20stop-color='%23DE0000'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD521'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCF00'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2010h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.de.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F01515'%20offset='0%25'/%3e%3cstop%20stop-color='%23DE0000'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD521'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCF00'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2010h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.dj{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DC837'%20offset='0%25'/%3e%3cstop%20stop-color='%2313AD2B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2382C5F5'%20offset='0%25'/%3e%3cstop%20stop-color='%236AB3E8'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E21C21'%20offset='0%25'/%3e%3cstop%20stop-color='%23D7151A'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200l10%207.5L0%2015z'/%3e%3cpath%20fill='url(%23d)'%20d='M3.5%208.475L2.03%209.523%202.574%207.8l-1.45-1.074%201.804-.016L3.5%205l.573%201.711%201.805.016-1.45%201.074.541%201.722z'/%3e%3c/g%3e%3c/svg%3e")}.dj.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DC837'%20offset='0%25'/%3e%3cstop%20stop-color='%2313AD2B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2382C5F5'%20offset='0%25'/%3e%3cstop%20stop-color='%236AB3E8'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E21C21'%20offset='0%25'/%3e%3cstop%20stop-color='%23D7151A'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200l7%207.5L0%2015z'/%3e%3cpath%20fill='url(%23d)'%20d='M2.5%208.305L1.571%209l.343-1.143L1%207.145l1.138-.01L2.5%206l.362%201.135L4%207.145l-.915.713L3.426%209z'/%3e%3c/g%3e%3c/svg%3e")}.dk{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EF264D'%20offset='0%25'/%3e%3cstop%20stop-color='%23E1143C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3c/g%3e%3c/svg%3e")}.dk.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EF264D'%20offset='0%25'/%3e%3cstop%20stop-color='%23E1143C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20mask='url(%23d)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3c/g%3e%3c/svg%3e")}.dm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23108753'%20offset='0%25'/%3e%3cstop%20stop-color='%230B6B41'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FCD449'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23E02C42'%20offset='0%25'/%3e%3cstop%20stop-color='%23D22036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v6H0zm0%209h21v6H0z'/%3e%3cpath%20d='M9%206H0v3h9v6h3V9h9V6h-9V0H9v6z'%20fill='url(%23a)'/%3e%3cpath%20d='M10%208v7h1V8h10V7H11V0h-1v7H0v1h10z'%20fill='url(%23c)'/%3e%3cpath%20d='M9%207v8h1V7h11V6H10V0H9v6H0v1h9z'%20fill='url(%23d)'/%3e%3ccircle%20fill='url(%23e)'%20cx='10.5'%20cy='7.5'%20r='3.5'/%3e%3cpath%20d='M10.5%2010.5a.5.5%200%201%201%200-1c.274%200%20.538-.055.784-.16a.5.5%200%201%201%20.392.92%202.98%202.98%200%200%201-1.176.24zm2.816-1.965a2.993%202.993%200%200%200%20.177-1.242.5.5%200%201%200-.998.068%201.983%201.983%200%200%201-.117.83.5.5%200%201%200%20.938.344zm-.95-3.383a2.992%202.992%200%200%200-1.07-.545.5.5%200%200%200-.264.964c.26.072.502.195.712.363a.5.5%200%201%200%20.623-.782zm-3.422-.217c-.345.21-.645.487-.88.814a.5.5%200%201%200%20.811.584c.158-.218.358-.404.588-.544a.5.5%200%200%200-.52-.854zM7.564%208.12c.084.397.247.771.479%201.101a.5.5%200%200%200%20.818-.574%201.987%201.987%200%200%201-.318-.733.5.5%200%201%200-.979.206zm2.54%202.354a.5.5%200%201%201%20.132-.991c.08.01.163.016.245.017a.5.5%200%201%201-.009%201%203.021%203.021%200%200%201-.367-.026z'%20fill='%230E673F'%20fill-rule='nonzero'/%3e%3cpath%20d='M10.5%208.5c.552%200%20.5-.448.5-1s.052-1-.5-1-.5.448-.5%201-.052%201%20.5%201z'%20fill='%230E673F'/%3e%3c/g%3e%3c/svg%3e")}.dm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23108753'%20offset='0%25'/%3e%3cstop%20stop-color='%230B6B41'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FCD449'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23E02C42'%20offset='0%25'/%3e%3cstop%20stop-color='%23D22036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='b'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='%23D8D8D8'%20fill-rule='nonzero'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23b)'%3e%3cg%20transform='translate(-3)'%3e%3cpath%20d='M0%200h21v6H0V0zm0%209h21v6H0V9z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23d)'%20d='M9%206H0v3h9v6h3V9h9V6h-9V0H9z'/%3e%3cpath%20fill='url(%23e)'%20d='M10%208v7h1V8h10V7H11V0h-1v7H0v1z'/%3e%3cpath%20fill='url(%23f)'%20d='M9%207v8h1V7h11V6H10V0H9v6H0v1z'/%3e%3ccircle%20fill='url(%23g)'%20cx='10.5'%20cy='7.5'%20r='3.5'/%3e%3cpath%20d='M10.5%2010.5a.5.5%200%201%201%200-1c.274%200%20.538-.055.784-.16a.5.5%200%201%201%20.392.92%202.98%202.98%200%200%201-1.176.24zm2.816-1.965a3%203%200%200%200%20.177-1.242.5.5%200%200%200-.998.068c.02.282-.02.565-.117.83a.5.5%200%201%200%20.938.344zm-.95-3.383a2.992%202.992%200%200%200-1.07-.545.5.5%200%200%200-.264.964c.26.072.502.195.712.363a.5.5%200%201%200%20.623-.782h-.001zm-3.422-.217c-.345.21-.645.487-.88.814a.5.5%200%201%200%20.811.584c.158-.218.358-.404.588-.544a.5.5%200%200%200-.52-.854h.001zM7.564%208.12c.084.397.247.771.479%201.101a.5.5%200%200%200%20.818-.574%201.987%201.987%200%200%201-.318-.733.5.5%200%201%200-.979.206zm2.54%202.354a.5.5%200%201%201%20.132-.991c.08.01.163.016.245.017a.5.5%200%201%201-.009%201%203.021%203.021%200%200%201-.367-.026h-.001z'%20fill='%230E673F'%20fill-rule='nonzero'/%3e%3cpath%20d='M10.5%208.5c.552%200%20.5-.448.5-1s.052-1-.5-1-.5.448-.5%201-.052%201%20.5%201z'%20fill='%230E673F'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.do{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23083D7A'%20offset='0%25'/%3e%3cstop%20stop-color='%23032F61'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DF1E35'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h9v6H0zm12%209h9v6h-9z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%209h9v6H0zm12-9h9v6h-9z'/%3e%3cpath%20d='M9%206H0v3h9v6h3V9h9V6h-9V0H9v6z'%20fill='url(%23a)'/%3e%3cpath%20d='M9.44%206.44a1.5%201.5%200%200%200%202.12%202.12%201.5%201.5%200%200%200%200-2.12'%20fill-opacity='.2'%20fill='%23C93127'/%3e%3ccircle%20fill='%23042F60'%20cx='10.5'%20cy='7.5'%20r='1'/%3e%3cpath%20d='M11.56%208.56a1.5%201.5%200%200%201-2.12-2.12l.353.353a1%201%200%201%200%201.414%200l.354-.354a1.5%201.5%200%200%201%200%202.122zm0%200a1.5%201.5%200%200%201-2.12-2.12l.353.353a1%201%200%201%200%201.414%200l.354-.354a1.5%201.5%200%200%201%200%202.122z'%20fill='%230F6D1A'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.do.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23083D7A'%20offset='0%25'/%3e%3cstop%20stop-color='%23032F61'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DF1E35'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='%23D8D8D8'%20fill-rule='nonzero'%20xlink:href='%23a'/%3e%3cpath%20d='M-3%200h9v6h-9V0zM9%209h9v6H9V9z'%20fill='url(%23b)'%20fill-rule='nonzero'%20mask='url(%23c)'/%3e%3cpath%20d='M-3%209h9v6h-9V9zM9%200h9v6H9V0z'%20fill='url(%23d)'%20fill-rule='nonzero'%20mask='url(%23c)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23c)'%20d='M6%206h-9v3h9v6h3V9h9V6H9V0H6z'/%3e%3cpath%20d='M6.44%206.44a1.5%201.5%200%200%200%202.12%202.12%201.5%201.5%200%200%200%200-2.12'%20fill-opacity='.2'%20fill='%23C93127'%20mask='url(%23c)'/%3e%3ccircle%20fill='%23042F60'%20mask='url(%23c)'%20cx='7.5'%20cy='7.5'%20r='1'/%3e%3cpath%20d='M8.56%208.56a1.5%201.5%200%200%201-2.12-2.12l.353.353a1%201%200%201%200%201.414%200l.354-.354a1.5%201.5%200%200%201%200%202.122L8.56%208.56zm0%200a1.5%201.5%200%200%201-2.12-2.12l.353.353a1%201%200%201%200%201.414%200l.354-.354a1.5%201.5%200%200%201%200%202.122L8.56%208.56z'%20fill='%230F6D1A'%20fill-rule='nonzero'%20mask='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.dz{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23048345'%20offset='0%25'/%3e%3cstop%20stop-color='%2304753E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E81B42'%20offset='0%25'/%3e%3cstop%20stop-color='%23D20F34'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h11v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M11%200h10v15H11z'/%3e%3cpath%20fill='url(%23c)'%20d='M13%208.28l-1.176.838.434-1.377-1.16-.859%201.444-.013L13%205.5l.458%201.369%201.444.013-1.16.859.434%201.377z'/%3e%3cpath%20d='M13.26%204.214A4.204%204.204%200%200%200%2010.313%203C7.931%203%206%205.015%206%207.5S7.931%2012%2010.313%2012c1.14%200%202.176-.461%202.947-1.214a4.112%204.112%200%200%201-1.77.396c-2.166%200-3.922-1.649-3.922-3.682s1.756-3.682%203.921-3.682c.638%200%201.24.143%201.771.396z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.dz.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23048345'%20offset='0%25'/%3e%3cstop%20stop-color='%2304753E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E81B42'%20offset='0%25'/%3e%3cstop%20stop-color='%23D20F34'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h8v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M8%200h7v15H8z'/%3e%3cg%20transform='translate(3%203)'%20fill='url(%23c)'%3e%3cpath%20d='M7%205.28l-1.176.838.434-1.377-1.16-.859%201.444-.013L7%202.5l.458%201.369%201.444.013-1.16.859.434%201.377z'/%3e%3cpath%20d='M7.26%201.214A4.204%204.204%200%200%200%204.313%200C1.931%200%200%202.015%200%204.5S1.931%209%204.313%209c1.14%200%202.176-.461%202.947-1.214a4.112%204.112%200%200%201-1.77.396c-2.166%200-3.922-1.649-3.922-3.682S3.324.818%205.489.818c.638%200%201.24.143%201.771.396z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ec{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230748AE'%20offset='0%25'/%3e%3cstop%20stop-color='%23003993'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DE2035'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD935'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD216'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FBDC44'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFDC32'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h21v7H0z'/%3e%3cpath%20d='M9.3%206a2%202%200%201%200%202.4%200L11%208.1h-1L9.3%206z'%20fill='url(%23e)'/%3e%3cpath%20fill='%235FC0DC'%20d='M10.5%205.5L11%208h-1z'/%3e%3cpath%20d='M9.677%203.823a.25.25%200%200%200-.256-.06l-1.5.5a.25.25%200%201%200%20.158.474l1.353-.451.891.89a.25.25%200%200%200%20.354%200l.89-.89%201.354.451a.25.25%200%201%200%20.158-.474l-1.5-.5a.25.25%200%200%200-.256.06l-.823.823-.823-.823z'%20fill='%233F2821'%20fill-rule='nonzero'%20opacity='.66'/%3e%3c/g%3e%3c/svg%3e")}.ec.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230748AE'%20offset='0%25'/%3e%3cstop%20stop-color='%23003993'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DE2035'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD935'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD216'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FBDC44'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFDC32'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%207h15v4H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2011h15v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v7H0z'/%3e%3cpath%20d='M2.3%203a2%202%200%201%200%202.4%200L4%205.1H3L2.3%203z'%20fill='url(%23d)'%20transform='translate(4%203)'/%3e%3cpath%20fill='%235FC0DC'%20d='M7.5%205.5L8%208H7z'/%3e%3cpath%20d='M6.677%203.823a.25.25%200%200%200-.256-.06l-1.5.5a.25.25%200%201%200%20.158.474l1.353-.451.891.89a.25.25%200%200%200%20.354%200l.89-.89%201.354.451a.25.25%200%201%200%20.158-.474l-1.5-.5a.25.25%200%200%200-.256.06l-.823.823-.823-.823z'%20fill='%233F2821'%20opacity='.66'/%3e%3c/g%3e%3c/svg%3e")}.ee{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%235DA8F1'%20offset='0%25'/%3e%3cstop%20stop-color='%234892DA'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%2010h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.ee.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%235DA8F1'%20offset='0%25'/%3e%3cstop%20stop-color='%234892DA'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%2010h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.eg{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E41D33'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M8%206.495C8%206.222%208.232%206%208.5%206h.248c.139%200%20.298.092.368.232L9.5%207s.55-1%201-1c.5%200%201%201%201%201l.384-.768A.445.445%200%200%201%2012.252%206h.248c.276%200%20.5.216.5.495v2.01c0%20.273-.184.372-.41.222L11.5%208H11v.5c0%20.276-.232.5-.5.5a.505.505%200%200%201-.5-.5V8h-.5l-1.09.727c-.226.15-.41.057-.41-.222v-2.01z'%20fill-opacity='.25'%20fill='%23F4B32E'/%3e%3cpath%20d='M12.5%208.066V6.5h-.191l-.54%201.079.731.487zM8.691%206.5h-.19L8.5%206.495v1.57l.73-.486L8.691%206.5zm1.809%201v1-1h.691l-.138-.276c-.05-.1-.146-.265-.266-.424-.12-.16-.23-.26-.271-.29a1.387%201.387%200%200%200-.29.296c-.126.163-.23.33-.288.435l-.142.259h.704zm.874-.724c.08.13.126.224.126.224l.112-.224s.231-.195.157-.313l.115-.231A.445.445%200%200%201%2012.252%206h.248c.276%200%20.5.216.5.495v2.01c0%20.273-.184.372-.41.222L11.5%208H11v.5c0%20.276-.232.5-.5.5a.505.505%200%200%201-.5-.5V8h-.5l-1.09.727c-.226.15-.41.057-.41-.222v-2.01C8%206.222%208.232%206%208.5%206h.248c.139%200%20.298.092.368.232l.12.24c-.071.108.147.293.147.293L9.5%207s.053-.097.14-.23l.178-.253c.195-.255.451-.517.682-.517.25%200%20.502.252.69.503l.184.273z'%20fill='%23C6A846'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.eg.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E41D33'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20d='M5%206.495C5%206.222%205.232%206%205.5%206h.248c.139%200%20.298.092.368.232L6.5%207s.55-1%201-1c.5%200%201%201%201%201l.384-.768A.445.445%200%200%201%209.252%206H9.5c.276%200%20.5.216.5.495v2.01c0%20.273-.184.372-.41.222L8.5%208H8v.5c0%20.276-.232.5-.5.5a.505.505%200%200%201-.5-.5V8h-.5l-1.09.727c-.226.15-.41.057-.41-.222v-2.01z'%20fill-opacity='.25'%20fill='%23F4B32E'/%3e%3cpath%20d='M9.5%208.066V6.5h-.191l-.54%201.079.731.487zM5.691%206.5h-.19L5.5%206.495v1.57l.73-.486L5.691%206.5zm1.809%201v1-1h.691l-.138-.276c-.05-.1-.146-.265-.266-.424-.12-.16-.23-.26-.271-.29-.11.084-.209.183-.29.296-.126.163-.23.33-.288.435l-.142.259H7.5zm.874-.724c.08.13.126.224.126.224l.112-.224s.231-.195.157-.313l.115-.231A.445.445%200%200%201%209.252%206H9.5c.276%200%20.5.216.5.495v2.01c0%20.273-.184.372-.41.222L8.5%208H8v.5c0%20.276-.232.5-.5.5a.505.505%200%200%201-.5-.5V8h-.5l-1.09.727c-.226.15-.41.057-.41-.222v-2.01C5%206.222%205.232%206%205.5%206h.248c.139%200%20.298.092.368.232l.12.24c-.071.108.147.293.147.293L6.5%207s.053-.097.14-.23l.178-.253C7.013%206.262%207.269%206%207.5%206c.25%200%20.502.252.69.503l.184.273z'%20fill='%23C6A846'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.eh{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23199E56'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7A40'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E6223A'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M14.786%208.97c-.3.245-.674.38-1.06.38-.954%200-1.726-.806-1.726-1.8s.772-1.8%201.726-1.8c.4%200%20.767.142%201.06.38a1.666%201.666%200%200%200-.418-.053c-.866%200-1.568.66-1.568%201.473%200%20.813.702%201.472%201.568%201.472.145%200%20.285-.018.418-.052zm.014-.893l-.717.52.265-.855-.708-.534.88-.008.28-.85.28.85.88.008-.707.534.265.855-.718-.52z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l10%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.eh.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23199E56'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7A40'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E6223A'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20d='M10.786%208.97c-.3.245-.674.38-1.06.38C8.772%209.35%208%208.544%208%207.55s.772-1.8%201.726-1.8c.4%200%20.767.142%201.06.38a1.666%201.666%200%200%200-.418-.053c-.866%200-1.568.66-1.568%201.473%200%20.813.702%201.472%201.568%201.472.145%200%20.285-.018.418-.052zm.014-.893l-.717.52.265-.855-.708-.534.88-.008.28-.85.28.85.88.008-.707.534.265.855-.718-.52z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l7%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.er{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2329C53F'%20offset='0%25'/%3e%3cstop%20stop-color='%2321AC35'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23579DED'%20offset='0%25'/%3e%3cstop%20stop-color='%23458BDB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F42D56'%20offset='0%25'/%3e%3cstop%20stop-color='%23E9103D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v7.5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%207.5h21v8H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2015l21-7.5L0%200z'/%3e%3cpath%20d='M6.5%2010a2.5%202.5%200%201%200%200-5%202.5%202.5%200%200%200%200%205zm0%201a3.5%203.5%200%201%201%200-7%203.5%203.5%200%200%201%200%207z'%20fill='%23FFC63C'%20fill-rule='nonzero'/%3e%3ccircle%20fill='%23FFC63C'%20cx='6'%20cy='6.5'%20r='1'/%3e%3ccircle%20fill='%23FFC63C'%20cx='7'%20cy='7'%20r='1'/%3e%3ccircle%20fill='%23FFC63C'%20cx='6.5'%20cy='6'%20r='1'/%3e%3ccircle%20fill='%23FFC63C'%20cx='6'%20cy='7.5'%20r='1'/%3e%3ccircle%20fill='%23FFC63C'%20cx='7'%20cy='8'%20r='1'/%3e%3ccircle%20fill='%23FFC63C'%20cx='6'%20cy='8.5'%20r='1'/%3e%3ccircle%20fill='%23FFC63C'%20cx='7'%20cy='9'%20r='1'/%3e%3c/g%3e%3c/svg%3e")}.er.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2329C53F'%20offset='0%25'/%3e%3cstop%20stop-color='%2321AC35'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23579DED'%20offset='0%25'/%3e%3cstop%20stop-color='%23458BDB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F42D56'%20offset='0%25'/%3e%3cstop%20stop-color='%23E9103D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v8H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2014l15-7L0%200z'/%3e%3cg%20transform='translate(2%205)'%20fill='%23FFC63C'%3e%3cpath%20d='M2.5%204.286a1.786%201.786%200%201%200%200-3.572%201.786%201.786%200%200%200%200%203.572zM2.5%205a2.5%202.5%200%201%201%200-5%202.5%202.5%200%200%201%200%205z'%20fill-rule='nonzero'/%3e%3ccircle%20cx='2.143'%20cy='1.786'%20r='1'/%3e%3ccircle%20cx='2.857'%20cy='2.143'%20r='1'/%3e%3ccircle%20cx='2.5'%20cy='1.429'%20r='1'/%3e%3ccircle%20cx='2.143'%20cy='2.5'%20r='1'/%3e%3ccircle%20cx='2.857'%20cy='2.857'%20r='1'/%3e%3ccircle%20cx='2.143'%20cy='3.214'%20r='1'/%3e%3ccircle%20cx='2.857'%20cy='3.571'%20r='1'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.es{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DD172C'%20offset='0%25'/%3e%3cstop%20stop-color='%23C60B1F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD133'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFC500'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v4H0zm0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h21v7H0z'/%3e%3cpath%20fill='%23FFEDB1'%20d='M5.5%207h1v.5h-1z'/%3e%3cpath%20d='M4.915%208.46c.025.295.291.54.585.54s.56-.246.585-.54L6.207%207H4.793l.122%201.46zm-.624-1.465a.456.456%200%200%201%20.465-.495h1.488a.45.45%200%200%201%20.465.495l-.126%201.506A1.104%201.104%200%200%201%205.5%209.5a1.104%201.104%200%200%201-1.083-.999L4.29%206.995z'%20fill='%23A41517'%20fill-rule='nonzero'/%3e%3cpath%20fill='%23A41517'%20d='M4.5%207.5h2V8H6l-.5%201L5%208h-.5zM3%206h1v3.5H3zm4%200h1v3.5H7zm-2.5-.5c0-.276.214-.5.505-.5h.99c.279%200%20.505.232.505.5v.248A.248.248%200%200%201%206.255%206h-1.51a.245.245%200%200%201-.245-.252V5.5z'/%3e%3c/g%3e%3c/svg%3e")}.es.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DD172C'%20offset='0%25'/%3e%3cstop%20stop-color='%23C60B1F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD133'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFC500'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h15v4H0V0zm0%2011h15v4H0v-4z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h15v7H0z'/%3e%3cpath%20fill='%23FFEDB1'%20d='M3.929%207h.714v.5h-.714z'/%3e%3cpath%20d='M4.915%208.46c.025.295.291.54.585.54s.56-.246.585-.54L6.207%207H4.793l.122%201.46zm-.624-1.465a.456.456%200%200%201%20.465-.495h1.488a.45.45%200%200%201%20.465.495l-.126%201.506c-.053.56-.52.99-1.083.999a1.104%201.104%200%200%201-1.083-.999L4.29%206.995h.001z'%20fill='%23A41517'%20fill-rule='nonzero'/%3e%3cpath%20d='M4.5%207.5h2V8H6l-.5%201L5%208h-.5v-.5zM3%206h1v3.5H3V6zm4%200h1v3.5H7V6zm-2.5-.5c0-.276.214-.5.505-.5h.99c.279%200%20.505.232.505.5v.248A.248.248%200%200%201%206.255%206h-1.51a.245.245%200%200%201-.245-.252V5.5z'%20fill='%23A41517'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.et{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2320AA46'%20offset='0%25'/%3e%3cstop%20stop-color='%23168835'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E92F3B'%20offset='0%25'/%3e%3cstop%20stop-color='%23D81824'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FADF50'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCDC34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23205CCA'%20offset='0%25'/%3e%3cstop%20stop-color='%23154BAD'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFDB3D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD420'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h21v5H0z'/%3e%3ccircle%20fill='url(%23e)'%20cx='10.5'%20cy='7.5'%20r='3.5'/%3e%3cpath%20d='M10.5%208.475L9.03%209.523%209.574%207.8l-1.45-1.074%201.804-.016L10.5%205l.573%201.711%201.805.016-1.45%201.074.541%201.722L10.5%208.475zm0-.614l.544.388-.2-.637.536-.398-.668-.006-.212-.634-.212.634-.668.006.537.398-.201.637.544-.388z'%20fill='url(%23f)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.et.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2320AA46'%20offset='0%25'/%3e%3cstop%20stop-color='%23168835'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E92F3B'%20offset='0%25'/%3e%3cstop%20stop-color='%23D81824'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FADF50'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCDC34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23205CCA'%20offset='0%25'/%3e%3cstop%20stop-color='%23154BAD'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFDB3D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD420'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h15v5H0z'/%3e%3cg%20transform='translate(4%204)'%3e%3ccircle%20fill='url(%23e)'%20cx='3.5'%20cy='3.5'%20r='3.5'/%3e%3cpath%20d='M3.5%204.475L2.03%205.523%202.574%203.8l-1.45-1.074%201.804-.016L3.5%201l.573%201.711%201.805.016-1.45%201.074.541%201.722L3.5%204.475zm0-.614l.544.388-.2-.637.536-.398-.668-.006-.212-.634-.212.634-.668.006.537.398-.201.637.544-.388z'%20fill='url(%23f)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.eu{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23043CAE'%20offset='0%25'/%3e%3cstop%20stop-color='%2300339A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD429'%20offset='0%25'/%3e%3cstop%20stop-color='%23FC0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M10.5%203l-.707.207L10%202.5l-.207-.707L10.5%202l.707-.207L11%202.5l.207.707L10.5%203zm0%2010l-.707.207L10%2012.5l-.207-.707.707.207.707-.207L11%2012.5l.207.707L10.5%2013zm5-5l-.707.207L15%207.5l-.207-.707L15.5%207l.707-.207L16%207.5l.207.707L15.5%208zm-10%200l-.707.207L5%207.5l-.207-.707L5.5%207l.707-.207L6%207.5l.207.707L5.5%208zm9.33-2.5l-.707.207L14.33%205l-.207-.707.707.207.707-.207L15.33%205l.207.707-.707-.207zm-8.66%205l-.707.207L5.67%2010l-.207-.707.707.207.707-.207L6.67%2010l.207.707-.707-.207zM13%203.67l-.707.207.207-.707-.207-.707.707.207.707-.207-.207.707.207.707L13%203.67zm-5%208.66l-.707.207.207-.707-.207-.707.707.207.707-.207-.207.707.207.707L8%2012.33zm6.83-1.83l-.707.207.207-.707-.207-.707.707.207.707-.207-.207.707.207.707-.707-.207zm-8.66-5l-.707.207L5.67%205l-.207-.707.707.207.707-.207L6.67%205l.207.707L6.17%205.5zM13%2012.33l-.707.207.207-.707-.207-.707.707.207.707-.207-.207.707.207.707L13%2012.33zM8%203.67l-.707.207.207-.707-.207-.707L8%202.67l.707-.207-.207.707.207.707L8%203.67z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.eu.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23043CAE'%20offset='0%25'/%3e%3cstop%20stop-color='%2300339A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFD429'%20offset='0%25'/%3e%3cstop%20stop-color='%23FC0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M7.5%203.163l-.681.2.2-.682-.2-.681.681.2.681-.2-.2.681.2.682-.681-.2zm0%209.638L6.819%2013l.2-.681-.2-.682.681.2.681-.2-.2.682.2.681-.681-.2zm4.819-4.82l-.682.2.2-.681-.2-.681.682.2.681-.2-.2.681.2.681-.681-.2zm-9.638%200l-.681.2.2-.681-.2-.681.681.2.682-.2-.2.681.2.681-.682-.2zm8.992-2.408l-.681.199.2-.681-.2-.682.68.2.682-.2-.2.682.2.681-.681-.2zM3.327%2010.39l-.681.2.2-.682-.2-.681.681.2.681-.2-.2.681.2.682-.68-.2zM9.91%203.81l-.681.2.2-.682-.2-.681.681.2.682-.2-.2.681.2.681-.682-.2zm-4.818%208.346l-.682.2.2-.682-.2-.681.682.2.681-.2-.2.68.2.682-.681-.2zm6.582-1.764l-.681.2.2-.682-.2-.681.68.2.682-.2-.2.681.2.682-.681-.2zM3.327%205.573l-.681.199.2-.681-.2-.682.681.2.681-.2-.2.682.2.681-.68-.2zm6.582%206.582l-.681.2.2-.682-.2-.681.681.2.682-.2-.2.68.2.682-.682-.2zM5.091%203.809l-.682.2.2-.682-.2-.681.682.2.681-.2-.2.681.2.681-.681-.2z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.fi{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230848A6'%20offset='0%25'/%3e%3cstop%20stop-color='%23003480'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3c/g%3e%3c/svg%3e")}.fi.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230848A6'%20offset='0%25'/%3e%3cstop%20stop-color='%23003480'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3c/g%3e%3c/svg%3e")}.fj{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2379CFF6'%20offset='0%25'/%3e%3cstop%20stop-color='%2368BFE6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23042C90'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%203.5V0h5v3.5C5%206%202.5%207%202.5%207S0%206%200%203.5z'%20id='d'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23EB1D43'%20offset='0%25'/%3e%3cstop%20stop-color='%23D21034'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20id='h'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h9v7H0z'/%3e%3cg%20transform='translate(13%204)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23d'/%3e%3cpath%20d='M1%202.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm3%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='%232A915C'%20mask='url(%23e)'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23e)'%20d='M0%200h5v1H3v2h2v1H3v3H2V4H0V3h2V1H0z'/%3e%3c/g%3e%3cuse%20fill='url(%23g)'%20xlink:href='%23h'/%3e%3cpath%20stroke='%23FFF'%20stroke-width='.5'%20d='M3.25%203.115L-.676-.25H.5l.145.047L4.08%202.25h.848L9.25-.451V.25c0%20.222-.128.47-.313.602L5.75%203.13v.756L8.975%206.65c.282.242.138.601-.225.601-.193%200-.442-.08-.604-.195L4.92%204.75h-.848L-.25%207.451v-1.08l3.5-2.5v-.756z'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23g)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3c/svg%3e")}.fj.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2379CFF6'%20offset='0%25'/%3e%3cstop%20stop-color='%2368BFE6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23042C90'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.5V0h4v2.5C4%204.286%202%205%202%205s-2-.714-2-2.5z'%20id='f'/%3e%3cpath%20d='M0%202.5V0h4v2.5C4%204.286%202%205%202%205s-2-.714-2-2.5z'%20id='h'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='i'%3e%3cstop%20stop-color='%23EB1D43'%20offset='0%25'/%3e%3cstop%20stop-color='%23D21034'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='k'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%200h9v7H0z'/%3e%3cg%20mask='url(%23d)'%3e%3cpath%20d='M0%202.5V0h4v2.5C4%204.286%202%205%202%205s-2-.714-2-2.5z'%20fill='url(%23b)'%20transform='translate(9%209)'/%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23f'/%3e%3c/mask%3e%3cpath%20d='M.8%202.321c-.22%200-.4-.28-.4-.625s.18-.625.4-.625c.22%200%20.4.28.4.625%200%20.346-.18.625-.4.625zm2.4%200c-.22%200-.4-.28-.4-.625s.18-.625.4-.625c.22%200%20.4.28.4.625%200%20.346-.18.625-.4.625z'%20fill='%232A915C'%20fill-rule='nonzero'%20mask='url(%23g)'/%3e%3c/g%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='j'%20fill='%23fff'%3e%3cuse%20xlink:href='%23h'/%3e%3c/mask%3e%3cpath%20fill='url(%23i)'%20mask='url(%23j)'%20d='M0%200h4v.714H2.4v1.429H4v.714H2.4V5h-.8V2.857H0v-.714h1.6V.714H0z'/%3e%3c/g%3e%3c/g%3e%3cg%20mask='url(%23d)'%20fill='url(%23k)'%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'/%3e%3c/g%3e%3cg%20mask='url(%23d)'%3e%3cpath%20d='M3.25%203.115L-.676-.25H.5l.145.047L4.08%202.25h.848L9.25-.451V.25c0%20.222-.128.47-.313.602L5.75%203.13v.756L8.975%206.65c.282.242.138.601-.225.601-.193%200-.442-.08-.604-.195L4.92%204.75h-.848L-.25%207.451v-1.08l3.5-2.5v-.756z'%20stroke='%23FFF'%20stroke-width='.5'/%3e%3cpath%20d='M1%203.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V5.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H6.5V1h-2v2.5H1z'%20fill='url(%23b)'%20transform='translate(-1%20-1)'/%3e%3cpath%20fill='url(%23k)'%20d='M1%204h4V1h1v3h4v1H6v3H5V5H1z'%20transform='translate(-1%20-1)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.fk{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%231F8BDE'%20offset='0%25'/%3e%3cstop%20stop-color='%231075C2'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%203.5V.51C0%20.228.215%200%20.498%200h4.004C4.777%200%205%20.227%205%20.51V3.5C5%206%202.5%207%202.5%207S0%206%200%203.5z'%20id='c'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23187536'%20offset='0%25'/%3e%3cstop%20stop-color='%230E5023'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20id='i'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cg%20transform='translate(13%204)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3cuse%20fill='url(%23d)'%20xlink:href='%23c'/%3e%3cpath%20d='M0%203.5V.51C0%20.228.215%200%20.498%200h4.004C4.777%200%205%20.227%205%20.51V3.5C5%206%202.5%207%202.5%207S0%206%200%203.5zm2.644%202.87c.263-.15.527-.334.772-.554C4.099%205.2%204.5%204.439%204.5%203.5V.51C4.5.5.499.5.499.5l.001%203c0%20.939.401%201.701%201.084%202.316a4.398%204.398%200%200%200%20.916.632c.043-.022.091-.048.144-.078z'%20fill='url(%23e)'%20fill-rule='nonzero'%20mask='url(%23f)'/%3e%3cpath%20d='M1.158%203.475C1.071%203.212%201.216%203%201.495%203h2.01c.273%200%20.425.209.337.475l-.184.55c-.087.263-.295.306-.524.133%200%200%20.088-.158-.634-.158s-.634.158-.634.158c-.202.189-.436.133-.524-.133l-.184-.55z'%20fill='url(%23g)'%20mask='url(%23f)'/%3e%3cpath%20d='M1.5%203c.27.054.59-.5%201-.5.437%200%20.726.567%201%20.5.246-.06.5-.739.5-1%200-.552-.672-1-1.5-1S1%201.448%201%202c0%20.28.223.945.5%201z'%20fill='url(%23a)'%20mask='url(%23f)'/%3e%3cpath%20d='M-.323%206.177l.35-.35.3-.3a.244.244%200%200%201%20.346%200l.3.3a.746.746%200%200%200%201.054%200l.3-.3a.244.244%200%200%201%20.346%200l.3.3a.746.746%200%200%200%201.054%200l.3-.3a.244.244%200%200%201%20.346%200l.3.3.177.177.354-.354-.177-.177-.3-.3a.744.744%200%200%200-1.054%200l-.3.3a.244.244%200%200%201-.346%200l-.3-.3a.744.744%200%200%200-1.054%200l-.3.3a.244.244%200%200%201-.346%200l-.3-.3a.744.744%200%200%200-1.054%200l-.3.3-.35.35L-.854%206l.354.354.177-.177zm0-1.5l.35-.35.3-.3a.244.244%200%200%201%20.346%200l.3.3a.746.746%200%200%200%201.054%200l.3-.3a.244.244%200%200%201%20.346%200l.3.3a.746.746%200%200%200%201.054%200l.3-.3a.244.244%200%200%201%20.346%200l.3.3.177.177.354-.354-.177-.177-.3-.3a.744.744%200%200%200-1.054%200l-.3.3a.244.244%200%200%201-.346%200l-.3-.3a.744.744%200%200%200-1.054%200l-.3.3a.244.244%200%200%201-.346%200l-.3-.3a.744.744%200%200%200-1.054%200l-.3.3-.35.35-.177.177.354.354.177-.177zm0%203l.35-.35.3-.3a.244.244%200%200%201%20.346%200l.3.3a.746.746%200%200%200%201.054%200l.3-.3a.244.244%200%200%201%20.346%200l.3.3a.746.746%200%200%200%201.054%200l.3-.3a.244.244%200%200%201%20.346%200l.3.3.177.177.354-.354-.177-.177-.3-.3a.744.744%200%200%200-1.054%200l-.3.3a.244.244%200%200%201-.346%200l-.3-.3a.744.744%200%200%200-1.054%200l-.3.3a.244.244%200%200%201-.346%200l-.3-.3a.744.744%200%200%200-1.054%200l-.3.3-.35.35-.177.177.354.354.177-.177z'%20fill='url(%23a)'%20fill-rule='nonzero'%20mask='url(%23f)'/%3e%3c/g%3e%3cuse%20fill='url(%23h)'%20xlink:href='%23i'/%3e%3cpath%20stroke='%23FFF'%20stroke-width='.5'%20d='M3.25%203.115L-.676-.25H.5l.145.047L4.08%202.25h.848L9.25-.451V.25c0%20.222-.128.47-.313.602L5.75%203.13v.756L8.975%206.65c.282.242.138.601-.225.601-.193%200-.442-.08-.604-.195L4.92%204.75h-.848L-.25%207.451v-1.08l3.5-2.5v-.756z'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23h)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3c/svg%3e")}.fk.fp-square{background-image:url("/assets/fk-BQMjF4BY.svg")}.fm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2395CEF5'%20offset='0%25'/%3e%3cstop%20stop-color='%2378B3DC'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M10.5%204.32l-1.176.798.396-1.365-1.122-.871%201.42-.045L10.5%201.5l.482%201.337%201.42.045-1.122.871.396%201.365L10.5%204.32zm0%208l-1.176.798.396-1.365-1.122-.871%201.42-.045L10.5%209.5l.482%201.337%201.42.045-1.122.871.396%201.365-1.176-.798zm4-4l-1.176.798.396-1.365-1.122-.871%201.42-.045L14.5%205.5l.482%201.337%201.42.045-1.122.871.396%201.365L14.5%208.32zm-8%200l-1.176.798.396-1.365-1.122-.871%201.42-.045L6.5%205.5l.482%201.337%201.42.045-1.122.871.396%201.365L6.5%208.32z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.fm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2395CEF5'%20offset='0%25'/%3e%3cstop%20stop-color='%2378B3DC'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M7.5%205.185l-.897.618.302-1.058-.855-.674%201.082-.035L7.5%203l.368%201.036%201.082.035-.855.674.302%201.058-.897-.618zm0%206.197L6.603%2012l.302-1.057-.855-.675%201.082-.035.368-1.036.368%201.036%201.082.035-.855.675L8.397%2012l-.897-.618zm3.05-3.099l-.897.618.302-1.057-.855-.675%201.082-.035.368-1.035.367%201.035L12%207.17l-.855.675.301%201.057-.896-.618zm-6.1%200l-.896.618.301-1.057L3%207.169l1.083-.035L4.45%206.1l.368%201.035L5.9%207.17l-.855.675.302%201.057-.897-.618z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.fo{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231879D6'%20offset='0%25'/%3e%3cstop%20stop-color='%230F67BB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F13E4F'%20offset='0%25'/%3e%3cstop%20stop-color='%23EB2D3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.fo.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231879D6'%20offset='0%25'/%3e%3cstop%20stop-color='%230F67BB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F13E4F'%20offset='0%25'/%3e%3cstop%20stop-color='%23EB2D3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.fr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F44653'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231035BB'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.fr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F44653'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231035BB'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.ga{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2309B470'%20offset='0%25'/%3e%3cstop%20stop-color='%23019F60'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23508CDE'%20offset='0%25'/%3e%3cstop%20stop-color='%233A75C5'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD935'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD216'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.ga.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2309B470'%20offset='0%25'/%3e%3cstop%20stop-color='%23019F60'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23508CDE'%20offset='0%25'/%3e%3cstop%20stop-color='%233A75C5'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD935'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD216'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.gb-eng{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E82739'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M9%206H0v3h9v6h3V9h9V6h-9V0H9v6z'%20fill='url(%23b)'/%3e%3c/g%3e%3c/svg%3e")}.gb-eng.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E82739'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M6%206h-9v3h9v6h3V9h9V6H9V0H6z'/%3e%3c/g%3e%3c/svg%3e")}.gb-nir{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E82739'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E6101E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA0814'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFD148'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M9%203.75L10%204l.5-.5.5.5%201-.25-.404%201.009a.4.4%200%200%201-.341.241h-1.51a.39.39%200%200%201-.341-.241L9%203.75zM10.5%203a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20id='d'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M9%206H0v3h9v6h3V9h9V6h-9V0H9v6z'%20fill='url(%23b)'/%3e%3cpath%20fill='url(%23a)'%20d='M11.516%209.26L10.5%2011%209.484%209.26l-2.015-.01.998-1.75-.998-1.75%202.015-.01L10.5%204l1.016%201.74%202.015.01-.998%201.75.998%201.75z'/%3e%3cpath%20d='M9.55%207.006a.656.656%200%200%201%20.425-.664l.55-.184c.263-.087.475.063.475.35V7.5s.321-1.037.5-.5c.179.537-.128%201.526-.128%201.526a.671.671%200%200%201-.63.474h-.484a.577.577%200%200%201-.559-.506l-.148-1.488z'%20fill='url(%23c)'/%3e%3cpath%20d='M10.5%202.908c-.511%200-.967.304-1.168.763l-.1.229.457.201.1-.229a.775.775%200%200%201%201.418-.005l.102.228.456-.205-.102-.228a1.275%201.275%200%200%200-1.164-.754z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cuse%20fill='url(%23e)'%20xlink:href='%23d'/%3e%3ccircle%20fill='%235169E2'%20mask='url(%23f)'%20cx='10.5'%20cy='4.5'%20r='1'/%3e%3ccircle%20fill='%23D34D43'%20mask='url(%23f)'%20cx='11.5'%20cy='4.5'%20r='1'/%3e%3ccircle%20fill='%23D34D43'%20mask='url(%23f)'%20cx='9.5'%20cy='4.5'%20r='1'/%3e%3c/g%3e%3c/svg%3e")}.gb-nir.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E82739'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23E6101E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA0814'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFD148'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%201.75L1%202l.5-.5.5.5%201-.25-.404%201.009A.4.4%200%200%201%202.255%203H.745a.39.39%200%200%201-.341-.241L0%201.75zM1.5%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20id='g'/%3e%3cpath%20d='M0%201.75L1%202l.5-.5.5.5%201-.25-.404%201.009A.4.4%200%200%201%202.255%203H.745a.39.39%200%200%201-.341-.241L0%201.75zM1.5%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20id='i'/%3e%3cpath%20d='M0%201.75L1%202l.5-.5.5.5%201-.25-.404%201.009A.4.4%200%200%201%202.255%203H.745a.39.39%200%200%201-.341-.241L0%201.75zM1.5%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20id='k'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M6%206h-9v3h9v6h3V9h9V6H9V0H6z'/%3e%3cpath%20fill='url(%23b)'%20mask='url(%23d)'%20d='M8.516%209.26L7.5%2011%206.484%209.26l-2.015-.01.998-1.75-.998-1.75%202.015-.01L7.5%204l1.016%201.74%202.015.01-.998%201.75.998%201.75z'/%3e%3cpath%20d='M6.55%207.006a.656.656%200%200%201%20.425-.664l.55-.184c.263-.087.475.063.475.35V7.5s.321-1.037.5-.5c.179.537-.128%201.526-.128%201.526a.671.671%200%200%201-.63.474h-.484a.577.577%200%200%201-.559-.506l-.148-1.488H6.55z'%20fill='url(%23e)'%20mask='url(%23d)'/%3e%3cpath%20d='M7.5%202.908c-.511%200-.967.304-1.168.763l-.1.229.457.201.1-.229a.775.775%200%200%201%201.418-.005l.102.228.456-.205-.102-.228a1.275%201.275%200%200%200-1.164-.754H7.5z'%20fill='url(%23b)'%20mask='url(%23d)'/%3e%3cg%20mask='url(%23d)'%20fill='url(%23f)'%20fill-rule='nonzero'%3e%3cpath%20d='M6%203.75L7%204l.5-.5.5.5%201-.25-.404%201.009A.4.4%200%200%201%208.255%205h-1.51a.39.39%200%200%201-.341-.241L6%203.75zM7.5%203a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'/%3e%3c/g%3e%3cg%20mask='url(%23d)'%3e%3cg%20transform='translate(6%202)'%3e%3cmask%20id='h'%20fill='%23fff'%3e%3cuse%20xlink:href='%23g'/%3e%3c/mask%3e%3ccircle%20fill='%235169E2'%20mask='url(%23h)'%20cx='1.5'%20cy='2.5'%20r='1'/%3e%3c/g%3e%3c/g%3e%3cg%20mask='url(%23d)'%3e%3cg%20transform='translate(6%202)'%3e%3cmask%20id='j'%20fill='%23fff'%3e%3cuse%20xlink:href='%23i'/%3e%3c/mask%3e%3ccircle%20fill='%23D34D43'%20mask='url(%23j)'%20cx='2.5'%20cy='2.5'%20r='1'/%3e%3c/g%3e%3c/g%3e%3cg%20mask='url(%23d)'%3e%3cg%20transform='translate(6%202)'%3e%3cmask%20id='l'%20fill='%23fff'%3e%3cuse%20xlink:href='%23k'/%3e%3c/mask%3e%3ccircle%20fill='%23D34D43'%20mask='url(%23l)'%20cx='.5'%20cy='2.5'%20r='1'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.gb-sct{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231479D0'%20offset='0%25'/%3e%3cstop%20stop-color='%230A68BA'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0-.003h21v15H0z'/%3e%3cpath%20d='M10.5%206.291L-.962-1.44-2.08.218l10.792%207.28-10.792%207.279%201.118%201.658L10.5%208.704l11.462%207.73%201.118-1.657-10.791-7.28L23.08.218%2021.962-1.44%2010.5%206.291z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.gb-sct.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231479D0'%20offset='0%25'/%3e%3cstop%20stop-color='%230A68BA'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M-.053-.003h14.936v15H-.053z'/%3e%3cpath%20fill='url(%23b)'%20mask='url(%23d)'%20d='M7.415%206.291L-.737-1.44-1.532.218l7.675%207.28-7.675%207.279.795%201.658%208.152-7.731%208.152%207.73.795-1.657-7.675-7.28L16.362.218l-.795-1.658z'/%3e%3c/g%3e%3c/svg%3e")}.gb-wls{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%233ACC55'%20offset='0%25'/%3e%3cstop%20stop-color='%2328A940'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E91C44'%20offset='0%25'/%3e%3cstop%20stop-color='%23D20F35'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v7H0z'/%3e%3cpath%20d='M8.066%2011.396l1.236-.21-.957-.452.655-.367s1.104.932%201.104.633c0-.32%201.038-.18.996-.633-.057-.62-1.149-.046-1.344-.82-.109-.432-.454-.377-.454-.377l-1.1.377-.547.82-.272-.82s-.642.522-.855.82c-.228.318-.47%201.029-.47%201.029l1.122.469-1.636-.289-1.194.289-.732.203.322-.338-.657-.334L3.94%2011l-.322-.266L5.036%2011s.518-.052.714-.266c.247-.27.44-1.187.44-1.187l-.646-.377-.508.921s-.35-.871-.686-1.36c-.249-.364-1.067-1.197-1.067-1.197L2.23%208.09l.588-1.173s.466-.407.17-.825c-.296-.418-.545-1.353-.545-1.353s.618%201.071.841.988c.317-.117-.394-1.094%200-1.268.284-.126.335%201.12.335%201.12l.322-.611v.76s-.187.907.13%201.446c.318.54%201.26.916%201.26.916s-.244-.541%200-1.58c.167-.703.757-1.903%201.035-2.287.146-.204-1.172.745-1.172.745v-.745l-1.254-.13-.322.365-.801-1.314.996.501h1.518l-.295-.362H3.813s.257-.53%201.518-.53l.596-.404s.815.023%201.274.04c.408.016%201.144-.502%201.144-.502l.207.502-.486.755.486.501-.207.31.357.503h-.636l.486.783-.486-.274.28.76-.28.782%201.236-.418s0-1.124.454-1.633c1.386-1.422%203.645-2.571%203.645-2.571s-.12%201.032.215%201.113c.485.118%202.605-.85%202.605-.85s-1.274%201.37-1.013%201.495c.14.067.374.31.374.31s-1.1.899-1.285%201.286c-.184.387.27.85.27.85s-.951%200-1.425.418c1.425%200%202.59.675%203.28.177.463-.334-1.655-.126-1.377-.96.103-.31.373-.668.99-.76.617-.09.835.275.835.275l.333-.503h-.982L18%203l.232%202.241-.602-.503-.27.84C18%207.534%2015.045%207.95%2015.045%207.95l1.825%201.22-.65.186-.185%201.83.835.679-1.098-.289-2.156.492.429-.672-.903.18.603-.576-.603-.266.77-.214.972.665s.48-.622.534-.952c.054-.341-.21-1.063-.21-1.063s-1.43-.03-1.935-.155a1.539%201.539%200%200%201-.797-.522l-.573.677s1.997.748%201.498%201.063c-.116.073-.687-.142-.687-.142s-.984%201.15-1.614%201.305c-.286.07.803.469.803.469s-.93-.148-1.403-.289c-.495-.147-1.948.289-1.948.289l-.486-.47zm8.02-5.343a.25.25%200%201%200%200-.5.25.25%200%200%200%200%20.5z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.gb-wls.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%233ACC55'%20offset='0%25'/%3e%3cstop%20stop-color='%2328A940'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E91C44'%20offset='0%25'/%3e%3cstop%20stop-color='%23D20F35'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v7H0z'/%3e%3cpath%20d='M6.012%209.538l.85-.144-.658-.311.45-.253s.759.641.759.436c0-.22.713-.124.684-.436-.039-.426-.79-.031-.924-.563-.074-.297-.312-.26-.312-.26l-.756.26-.376.563-.187-.563s-.441.359-.587.563c-.157.22-.324.708-.324.708l.772.322-1.125-.198-.82.198-.504.14.221-.232-.451-.23.451-.272-.22-.183.974.183s.356-.036.49-.183c.17-.186.303-.816.303-.816l-.444-.26-.35.634s-.24-.6-.47-.935c-.172-.25-.734-.823-.734-.823L2%207.265l.404-.807s.32-.28.117-.567c-.203-.287-.375-.93-.375-.93s.425.736.579.68c.217-.081-.271-.753%200-.873.195-.086.23.77.23.77l.221-.42v.523s-.128.624.09.994c.218.371.866.63.866.63s-.168-.372%200-1.086c.114-.484.52-1.309.711-1.573.1-.14-.806.512-.806.512v-.512l-.862-.09-.22.252-.551-.904.684.345h1.044l-.203-.25h-.84s.176-.364%201.043-.364l.41-.277s.56.015.875.027c.28.011.787-.345.787-.345l.142.345-.334.52.334.344-.142.213.245.346h-.437l.334.538-.334-.188.192.522-.192.538.85-.288s0-.772.311-1.122C8.126%203.79%209.68%203%209.68%203s-.082.71.148.765c.333.081%201.79-.584%201.79-.584s-.875.942-.696%201.028c.096.046.257.213.257.213s-.756.618-.883.884c-.126.266.186.584.186.584s-.654%200-.98.288c.98%200%201.78.464%202.255.122.318-.23-1.138-.087-.947-.66.071-.214.257-.46.68-.523.425-.062.575.19.575.19l.229-.347h-.675l1.223-1.195L13%205.306l-.414-.346-.185.578c.44%201.345-1.592%201.63-1.592%201.63l1.255.84-.447.127-.127%201.259.574.466-.755-.198L9.827%2010l.295-.462-.62.124.414-.396-.415-.183.53-.147.668.457s.33-.428.367-.655c.037-.234-.145-.73-.145-.73s-.983-.021-1.33-.107a1.058%201.058%200%200%201-.548-.359l-.394.465s1.373.515%201.03.731c-.08.05-.472-.097-.472-.097s-.677.79-1.11.897c-.196.048.552.322.552.322s-.639-.101-.964-.198c-.34-.101-1.34.198-1.34.198l-.333-.323v.001zm5.513-3.674a.172.172%200%201%200%200-.343.172.172%200%200%200%200%20.343z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.gb-zet{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23187AE5'%20offset='0%25'/%3e%3cstop%20stop-color='%230F68C9'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3c/g%3e%3c/svg%3e")}.gb-zet.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23187AE5'%20offset='0%25'/%3e%3cstop%20stop-color='%230F68C9'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3c/g%3e%3c/svg%3e")}.gb{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E6273E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CF152B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M-.002%200h21v15h-21z'/%3e%3cpath%20d='M5.003%2010H-.002V5h5.005L-2.082.22l1.118-1.657%208.962%206.045V-1h5v5.608l8.962-6.045L23.078.22%2015.993%205h5.005v5h-5.005l7.085%204.78-1.118%201.657-8.962-6.045V16h-5v-5.608l-8.962%206.045-1.118-1.658L5.003%2010z'%20fill='url(%23a)'/%3e%3cpath%20d='M14.136%204.958l9.5-6.25a.25.25%200%200%200-.275-.417l-9.5%206.25a.25.25%200%201%200%20.275.417zm.732%205.522l8.515%205.74a.25.25%200%201%200%20.28-.415l-8.516-5.74a.25.25%200%200%200-.279.415zM6.142%204.526L-2.74-1.461a.25.25%200%200%200-.28.415L5.863%204.94a.25.25%200%200%200%20.279-.414zm.685%205.469l-9.845%206.53a.25.25%200%201%200%20.276.416l9.846-6.529a.25.25%200%200%200-.277-.417z'%20fill='%23DB1F35'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23c)'%20d='M-.002%209h9v6h3V9h9V6h-9V0h-3v6h-9z'/%3e%3c/g%3e%3c/svg%3e")}.gb.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23E6273E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CF152B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M-3%200h21v15H-3z'/%3e%3cpath%20fill='url(%23b)'%20mask='url(%23d)'%20d='M2.085%209.437H-2.92v-5h5.005L-5-.343-3.882-2%205.08%204.045v-5.608h5v5.608L19.042-2%2020.16-.343l-7.085%204.78h5.005v5h-5.005l7.085%204.78-1.118%201.657-8.962-6.045v5.608h-5V9.829l-8.962%206.045L-5%2014.216z'/%3e%3cpath%20d='M11.278%204.702l9.5-6.25a.25.25%200%200%200-.275-.417l-9.5%206.25a.25.25%200%201%200%20.275.417zm.732%205.522l8.515%205.74a.25.25%200%201%200%20.28-.415l-8.516-5.74a.25.25%200%201%200-.28.415zM3.284%204.27l-8.882-5.987a.25.25%200%201%200-.28.415l8.883%205.986a.25.25%200%200%200%20.279-.414zm.685%205.47l-9.845%206.53a.25.25%200%201%200%20.276.415l9.846-6.529a.25.25%200%200%200-.277-.417z'%20fill='%23DB1F35'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M-3%209h9v6h3V9h9V6H9V0H6v6h-9z'/%3e%3c/g%3e%3c/svg%3e")}.gd{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E42235'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1225'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23079B77'%20offset='0%25'/%3e%3cstop%20stop-color='%23007B5D'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='c'%20d='M0%200h17v11H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFD938'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD117'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FFD93B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD117'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%23E21C30'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1225'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cg%20transform='translate(2%202)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3cuse%20fill='url(%23d)'%20xlink:href='%23c'/%3e%3cpath%20d='M1.295%205.599c.283.453.69.752%201.068.829.209.042-.173-.914-.007-1.018.142-.088.825.706.885.54.137-.38.056-.921-.25-1.411-.439-.703-.456-.239-1.643-.742.124.72-.492%201.1-.053%201.802z'%20fill='url(%23e)'%20mask='url(%23f)'/%3e%3cpath%20d='M0%200h17L8.5%205.5%200%200zm0%2011l8.5-5.5L17%2011H0z'%20fill='url(%23g)'%20mask='url(%23f)'/%3e%3ccircle%20fill='url(%23h)'%20mask='url(%23f)'%20cx='8.5'%20cy='5.5'%20r='2.5'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23f)'%20d='M8.5%206.271l-1.176.847.442-1.38-1.168-.856%201.449-.006L8.5%203.5l.453%201.376%201.45.006-1.17.856.443%201.38z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.gd.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E42235'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1225'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23079B77'%20offset='0%25'/%3e%3cstop%20stop-color='%23007B5D'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='c'%20d='M0%200h13v13H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD93B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD117'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23E21C30'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1225'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FFD938'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD117'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h13v13H0z'%20fill='url(%23b)'%20transform='translate(1%201)'/%3e%3cg%20transform='translate(1%201)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3cpath%20d='M0%200h13L6.5%206.5%200%200zm0%2013l6.5-6.5L13%2013H0z'%20fill='url(%23d)'%20fill-rule='nonzero'%20mask='url(%23e)'/%3e%3c/g%3e%3cg%20transform='translate(5%205)'%3e%3ccircle%20fill='url(%23f)'%20cx='2.5'%20cy='2.5'%20r='2.5'/%3e%3cpath%20fill='url(%23g)'%20d='M2.5%203.271l-1.176.847.442-1.38-1.168-.856%201.449-.006L2.5.5l.453%201.376%201.45.006-1.17.856.443%201.38z'/%3e%3c/g%3e%3cpath%20d='M1.16%206.802c.283.453.69.752%201.068.829.21.042-.173-.914-.007-1.018.142-.088.825.706.885.54.137-.38.056-.921-.25-1.411C2.417%205.039%202.4%205.503%201.213%205c.124.72-.492%201.1-.053%201.802z'%20fill='url(%23g)'%20transform='translate(1%201)'/%3e%3c/g%3e%3c/svg%3e")}.ge{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF2B37'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M9%206H0v3h9v6h3V9h9V6h-9V0H9v6z'%20fill='url(%23b)'/%3e%3cpath%20d='M16.2%202.7L16%201.5h1l-.2%201.2%201.2-.2v1l-1.2-.2.2%201.2h-1l.2-1.2-1.2.2v-1l1.2.2zm-12%200L4%201.5h1l-.2%201.2L6%202.5v1l-1.2-.2.2%201.2H4l.2-1.2-1.2.2v-1l1.2.2zm0%209L4%2010.5h1l-.2%201.2%201.2-.2v1l-1.2-.2.2%201.2H4l.2-1.2-1.2.2v-1l1.2.2zm12%200l-.2-1.2h1l-.2%201.2%201.2-.2v1l-1.2-.2.2%201.2h-1l.2-1.2-1.2.2v-1l1.2.2z'%20fill='%23FD0D1B'/%3e%3c/g%3e%3c/svg%3e")}.ge.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FF2B37'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M6%206h-9v3h9v6h3V9h9V6H9V0H6z'/%3e%3cpath%20d='M11.68%203.9l-.147-.9h.734l-.147.9.88-.15v.75l-.88-.15.147.9h-.734l.147-.9-.88.15v-.75l.88.15zm-8.8%200L2.733%203h.734l-.147.9.88-.15v.75l-.88-.15.147.9h-.734l.147-.9L2%204.5v-.75l.88.15zm0%206.75l-.147-.9h.734l-.147.9.88-.15v.75l-.88-.15.147.9h-.734l.147-.9-.88.15v-.75l.88.15zm8.8%200l-.147-.9h.734l-.147.9.88-.15v.75l-.88-.15.147.9h-.734l.147-.9-.88.15v-.75l.88.15z'%20fill='%23FD0D1B'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.gf{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%232DA446'%20offset='0%25'/%3e%3cstop%20stop-color='%23218736'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFE24A'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCDC34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E7242C'%20offset='0%25'/%3e%3cstop%20stop-color='%23D61C24'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l21%2015H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M10.5%209.073l-1.837%201.33.697-2.158L7.528%206.91l2.268-.004.704-2.155.704%202.155%202.268.004-1.832%201.336.697%202.158z'/%3e%3c/g%3e%3c/svg%3e")}.gf.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%232DA446'%20offset='0%25'/%3e%3cstop%20stop-color='%23218736'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFE24A'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCDC34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E7242C'%20offset='0%25'/%3e%3cstop%20stop-color='%23D61C24'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200l15%2015H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M6.972%208.322l-1.837%201.33.697-2.158L4%206.159l2.268-.004L6.972%204l.704%202.155%202.268.004-1.832%201.336.697%202.158z'/%3e%3c/g%3e%3c/svg%3e")}.gg{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F33349'%20offset='0%25'/%3e%3cstop%20stop-color='%23E51D34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FCE24C'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9DC38'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M9%206H0v3h9v6h3V9h9V6h-9V0H9v6z'%20fill='url(%23b)'/%3e%3cpath%20d='M10%208v4l-.5%201h2l-.5-1V8h4l1%20.5v-2L15%207h-4V3l.5-1h-2l.5%201v4H6l-1-.5v2L6%208h4z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.gg.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F33349'%20offset='0%25'/%3e%3cstop%20stop-color='%23E51D34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FCE24C'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9DC38'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M6%206h-9v3h9v6h3V9h9V6H9V0H6z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M7%208v4l-.5%201h2L8%2012V8h4l1%20.5v-2L12%207H8V3l.5-1h-2L7%203v4H3l-1-.5v2L3%208z'/%3e%3c/g%3e%3c/svg%3e")}.gh{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E71F37'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23118B56'%20offset='0%25'/%3e%3cstop%20stop-color='%230B6B41'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FDD64C'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M10.5%208.709L9.03%209.773l.558-1.727-1.466-1.069%201.814-.003.564-1.724.564%201.724%201.814.003-1.466%201.07.557%201.726z'/%3e%3c/g%3e%3c/svg%3e")}.gh.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E71F37'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23118B56'%20offset='0%25'/%3e%3cstop%20stop-color='%230B6B41'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FDD64C'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M7.5%208.294L6.573%209l.352-1.145L6%207.145l1.144-.002L7.5%206l.356%201.143L9%207.145l-.925.71L8.427%209z'/%3e%3c/g%3e%3c/svg%3e")}.gi{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E71924'%20offset='0%25'/%3e%3cstop%20stop-color='%23D6101B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EA1824'%20offset='0%25'/%3e%3cstop%20stop-color='%23D6101B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23ECCE3E'%20offset='0%25'/%3e%3cstop%20stop-color='%23D9BC2D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v10H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20d='M9%206H8V4.49A.495.495%200%200%200%207.495%204h-.99A.49.49%200%200%200%206%204.49V8L5%209h11l-1-1V4.49a.495.495%200%200%200-.505-.49h-.99a.49.49%200%200%200-.505.49V6h-1V3.49a.49.49%200%200%200-.495-.49h-2.01A.49.49%200%200%200%209%203.49V6z'%20fill='url(%23c)'/%3e%3cpath%20d='M7%208a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm3.5%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-3a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM14%208a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23d)'/%3e%3cpath%20d='M10%209.943V12H9v1h2V9.943c.583-.137%201-.508%201-.943%200-.552-.672-1-1.5-1S9%208.448%209%209c0%20.435.417.806%201%20.943z'%20fill='url(%23e)'/%3e%3c/g%3e%3c/svg%3e")}.gi.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E71924'%20offset='0%25'/%3e%3cstop%20stop-color='%23D6101B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EA1824'%20offset='0%25'/%3e%3cstop%20stop-color='%23D6101B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23ECCE3E'%20offset='0%25'/%3e%3cstop%20stop-color='%23D9BC2D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23b)'%20mask='url(%23c)'%20d='M0%200h15v10H0z'/%3e%3cpath%20fill='url(%23d)'%20mask='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20d='M6%206H5V4.49A.495.495%200%200%200%204.495%204h-.99A.49.49%200%200%200%203%204.49V8L2%209h11l-1-1V4.49a.495.495%200%200%200-.505-.49h-.99a.49.49%200%200%200-.505.49V6H9V3.49A.49.49%200%200%200%208.505%203h-2.01A.49.49%200%200%200%206%203.49V6z'%20fill='url(%23e)'%20mask='url(%23c)'/%3e%3cpath%20d='M4%208a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm3.5%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-3a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM11%208a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23f)'%20fill-rule='nonzero'%20mask='url(%23c)'/%3e%3cpath%20d='M7%209.943V12H6v1h2V9.943c.583-.137%201-.508%201-.943%200-.552-.672-1-1.5-1S6%208.448%206%209c0%20.435.417.806%201%20.943z'%20fill='url(%23g)'%20mask='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.gl{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='c'%20d='M0%200h21v8H0z'/%3e%3cfilter%20x='-3.6%25'%20y='-9.4%25'%20width='107.1%25'%20height='118.8%25'%20filterUnits='objectBoundingBox'%20id='b'%3e%3cfeMorphology%20radius='.25'%20operator='dilate'%20in='SourceAlpha'%20result='shadowSpreadOuter1'/%3e%3cfeOffset%20in='shadowSpreadOuter1'%20result='shadowOffsetOuter1'/%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.06%200'%20in='shadowOffsetOuter1'/%3e%3c/filter%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E82245'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC1838'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cuse%20fill='%23000'%20filter='url(%23b)'%20xlink:href='%23c'/%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23c'/%3e%3cpath%20d='M3%208H0v7h21V8H11a4%204%200%201%200-8%200z'%20fill='url(%23d)'/%3e%3cpath%20d='M3%208a4%204%200%201%200%208%200H3z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.gl.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E82245'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC1838'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%20fill='%23000'%3e%3cpath%20d='M0%200h15v8H0z'/%3e%3c/g%3e%3cg%20mask='url(%23c)'%20fill='url(%23b)'%3e%3cpath%20d='M0%200h15v8H0z'/%3e%3c/g%3e%3cpath%20d='M3%208H0v7h21V8H11a4%204%200%201%200-8%200z'%20fill='url(%23d)'%20mask='url(%23c)'/%3e%3cpath%20d='M3%208a4%204%200%201%200%208%200H3z'%20fill='url(%23b)'%20mask='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.gm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DF2237'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%234B9334'%20offset='0%25'/%3e%3cstop%20stop-color='%233B7828'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%231526A7'%20offset='0%25'/%3e%3cstop%20stop-color='%230C1B8D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%206h21v3H0z'/%3e%3c/g%3e%3c/svg%3e")}.gm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DF2237'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%234B9334'%20offset='0%25'/%3e%3cstop%20stop-color='%233B7828'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%231526A7'%20offset='0%25'/%3e%3cstop%20stop-color='%230C1B8D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%206h15v3H0z'/%3e%3c/g%3e%3c/svg%3e")}.gn{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DBE5E'%20offset='0%25'/%3e%3cstop%20stop-color='%23169E4D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E72B42'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD952'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.gn.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DBE5E'%20offset='0%25'/%3e%3cstop%20stop-color='%23169E4D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E72B42'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD952'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.gp{background-image:url("/assets/gp-_CW8iSaf.svg")}.gp.fp-square{background-image:url("/assets/gp-Dx4K7K_C.svg")}.gq{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EC3938'%20offset='0%25'/%3e%3cstop%20stop-color='%23E12524'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2351B422'%20offset='0%25'/%3e%3cstop%20stop-color='%23429919'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23258DE7'%20offset='0%25'/%3e%3cstop%20stop-color='%231276CC'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M10.066%208.932a.73.73%200%200%200%20.175-.425l.008-1.264A.25.25%200%200%200%209.996%207h-.242c-.14%200-.176-.078-.08-.174l.652-.652a.247.247%200%200%201%20.348%200l.652.652c.096.096.057.174-.08.174h-.242a.253.253%200%200%200-.254.243v1.264c0%20.134.08.322.17.414l-.09-.092c.093.094.063.171-.082.171h-.496c-.139%200-.176-.08-.078-.182l-.108.114z'%20fill='%23159940'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l7%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.gq.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EC3938'%20offset='0%25'/%3e%3cstop%20stop-color='%23E12524'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2351B422'%20offset='0%25'/%3e%3cstop%20stop-color='%23429919'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23258DE7'%20offset='0%25'/%3e%3cstop%20stop-color='%231276CC'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l5%207.5L0%2015z'/%3e%3cpath%20d='M7.446%208.83a.73.73%200%200%200%20.175-.425l.008-1.264a.25.25%200%200%200-.253-.243h-.242c-.14%200-.176-.078-.08-.174l.652-.652a.247.247%200%200%201%20.348%200l.652.652c.096.096.057.174-.08.174h-.242a.253.253%200%200%200-.254.243v1.264c0%20.134.08.322.17.414l-.09-.092c.093.094.063.17-.082.17h-.496c-.14%200-.176-.08-.078-.181l-.108.114z'%20fill='%23159940'/%3e%3c/g%3e%3c/svg%3e")}.gr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231C6DC1'%20offset='0%25'/%3e%3cstop%20stop-color='%231660AD'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M0%200h4v4H0V0zm6%200h4v4H6V0zm4%200h11v2H10V0zm0%204h11v2H10V4zm0%204h11v2H10V8zM0%2012h21v2H0v-2zm6-6h4v4H6V6zM0%206h4v4H0V6z'%20fill='url(%23b)'/%3e%3c/g%3e%3c/svg%3e")}.gr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231C6DC1'%20offset='0%25'/%3e%3cstop%20stop-color='%231660AD'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20d='M0%200h4v4H0V0zm6%200h4v4H6V0zm4%200h11v2H10V0zm0%204h11v2H10V4zm0%204h11v2H10V8zM0%2012h21v2H0v-2zm6-6h4v4H6V6zM0%206h4v4H0V6z'%20fill='url(%23c)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.gs{background-image:url("/assets/gs-CK7Ua-Jy.svg")}.gs.fp-square{background-image:url("/assets/gs-CLH2gw8A.svg")}.gt{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2363AEE3'%20offset='0%25'/%3e%3cstop%20stop-color='%234998D0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10zM0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3cpath%20d='M8%207a2.5%202.5%200%200%200%201.247%202.164.5.5%200%200%200%20.502-.865A1.499%201.499%200%200%201%209%207a.5.5%200%200%200-1%200zm3.846%202.107A2.498%202.498%200%200%200%2013%207a.5.5%200%201%200-1%200%201.5%201.5%200%200%201-.693%201.265.5.5%200%201%200%20.539.842z'%20fill='%23628A40'%20fill-rule='nonzero'/%3e%3ccircle%20fill='%23DCC26D'%20cx='10.5'%20cy='7'%20r='1'/%3e%3c/g%3e%3c/svg%3e")}.gt.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2363AEE3'%20offset='0%25'/%3e%3cstop%20stop-color='%234998D0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M7.143%200H15v15H7.143V0zM0%200h5v15H0V0z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3cg%20transform='translate(6%207)'%3e%3cpath%20d='M0%20.366C0%201.02.285%201.623.748%201.95c.144.102.327.042.41-.132.083-.175.035-.4-.109-.5C.771%201.12.6.757.6.365.6.164.466%200%20.3%200%20.134%200%200%20.164%200%20.366zM2.308%201.91C2.739%201.573%203%20.99%203%20.366%203%20.164%202.866%200%202.7%200c-.166%200-.3.164-.3.366%200%20.375-.157.724-.416.926a.392.392%200%200%200-.144.327.379.379%200%200%200%20.164.312c.097.06.213.052.304-.022z'%20fill='%23628A40'%20fill-rule='nonzero'/%3e%3ccircle%20fill='%23DCC26D'%20cx='1.5'%20cy='.5'%20r='1'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.gu{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DE3149'%20offset='0%25'/%3e%3cstop%20stop-color='%23C2273D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23053B94'%20offset='0%25'/%3e%3cstop%20stop-color='%23002E7A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DE3149'%20offset='0%25'/%3e%3cstop%20stop-color='%23C2273D'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M2.5%208.5s2.5-2%202.5-4-2.5-4-2.5-4-2.5%202-2.5%204%202.5%204%202.5%204z'%20id='e'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%2381C1F3'%20offset='0%25'/%3e%3cstop%20stop-color='%236AB1E9'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%2327A07E'%20offset='0%25'/%3e%3cstop%20stop-color='%231F9171'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='i'%3e%3cstop%20stop-color='%231E8CE8'%20offset='0%25'/%3e%3cstop%20stop-color='%23107FDC'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='j'%3e%3cstop%20stop-color='%23FFF048'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFEF36'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='k'%3e%3cstop%20stop-color='%238F5715'%20offset='0%25'/%3e%3cstop%20stop-color='%237A480D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3crect%20fill='url(%23c)'%20x='1'%20y='1'%20width='19'%20height='13'%20rx='.75'/%3e%3cpath%20d='M10.5%2012s3-2.015%203-4.5-3-4.5-3-4.5-3%202.015-3%204.5%203%204.5%203%204.5z'%20fill='url(%23d)'/%3e%3cg%20transform='translate(8%203)'%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23e'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23g)'%20d='M0%200h5v5H0z'/%3e%3cpath%20fill='url(%23h)'%20mask='url(%23g)'%20d='M2.5%204.1l-.882.614.311-1.029-.856-.649%201.074-.021L2.5%202l.353%201.015%201.074.021-.856.65.31%201.028z'/%3e%3cpath%20fill='url(%23i)'%20mask='url(%23g)'%20d='M0%205h5v4H0z'/%3e%3cpath%20d='M0%206s1.59%201.5%202%201.5c.488%200%20.496-.723%201-1%20.794-.436%202-.5%202-.5v3H0V6z'%20fill='url(%23j)'%20mask='url(%23g)'/%3e%3c/g%3e%3cpath%20d='M10.251%206.475a14.974%2014.974%200%200%200-.067%201.084c-.01.467.01.812.079%201.02.087.261.284.506.557.742.208.18.415.316.557.397a.25.25%200%200%200%20.246-.436%203.148%203.148%200%200%201-.477-.34c-.21-.182-.356-.363-.409-.521-.044-.134-.063-.442-.053-.85a13.917%2013.917%200%200%201%20.065-1.046.25.25%200%201%200-.498-.05z'%20fill='url(%23k)'%20fill-rule='nonzero'/%3e%3cpath%20fill='%23FFF'%20d='M9%207.5L10%209H9z'/%3e%3c/g%3e%3c/svg%3e")}.gu.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23DE3149'%20offset='0%25'/%3e%3cstop%20stop-color='%23C2273D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23053B94'%20offset='0%25'/%3e%3cstop%20stop-color='%23002E7A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M2.5%208.5s2.5-2%202.5-4-2.5-4-2.5-4-2.5%202-2.5%204%202.5%204%202.5%204z'%20id='d'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%2381C1F3'%20offset='0%25'/%3e%3cstop%20stop-color='%236AB1E9'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M2.5%208.5s2.5-2%202.5-4-2.5-4-2.5-4-2.5%202-2.5%204%202.5%204%202.5%204z'%20id='g'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%2327A07E'%20offset='0%25'/%3e%3cstop%20stop-color='%231F9171'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M2.5%208.5s2.5-2%202.5-4-2.5-4-2.5-4-2.5%202-2.5%204%202.5%204%202.5%204z'%20id='j'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='k'%3e%3cstop%20stop-color='%231E8CE8'%20offset='0%25'/%3e%3cstop%20stop-color='%23107FDC'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M2.5%208.5s2.5-2%202.5-4-2.5-4-2.5-4-2.5%202-2.5%204%202.5%204%202.5%204z'%20id='m'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='n'%3e%3cstop%20stop-color='%23FFF048'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFEF36'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='p'%3e%3cstop%20stop-color='%238F5715'%20offset='0%25'/%3e%3cstop%20stop-color='%237A480D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3crect%20fill='url(%23b)'%20x='1'%20y='1'%20width='13'%20height='13'%20rx='.75'/%3e%3cpath%20d='M3.5%209s3-2.015%203-4.5-3-4.5-3-4.5-3%202.015-3%204.5%203%204.5%203%204.5z'%20fill='url(%23a)'%20transform='translate(4%203)'/%3e%3cpath%20d='M2.5%208.5s2.5-2%202.5-4-2.5-4-2.5-4-2.5%202-2.5%204%202.5%204%202.5%204z'%20fill='url(%23c)'%20transform='translate(5%203)'/%3e%3cg%20transform='translate(5%203)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cpath%20fill='url(%23e)'%20mask='url(%23f)'%20d='M0%200h5v5H0z'/%3e%3c/g%3e%3cg%20transform='translate(5%203)'%3e%3cmask%20id='i'%20fill='%23fff'%3e%3cuse%20xlink:href='%23g'/%3e%3c/mask%3e%3cpath%20fill='url(%23h)'%20mask='url(%23i)'%20d='M2.5%204.1l-.882.614.311-1.029-.856-.649%201.074-.021L2.5%202l.353%201.015%201.074.021-.856.65.31%201.028z'/%3e%3c/g%3e%3cg%20transform='translate(5%203)'%3e%3cmask%20id='l'%20fill='%23fff'%3e%3cuse%20xlink:href='%23j'/%3e%3c/mask%3e%3cpath%20fill='url(%23k)'%20mask='url(%23l)'%20d='M0%205h5v4H0z'/%3e%3c/g%3e%3cg%20transform='translate(5%203)'%3e%3cmask%20id='o'%20fill='%23fff'%3e%3cuse%20xlink:href='%23m'/%3e%3c/mask%3e%3cpath%20d='M0%206s1.59%201.5%202%201.5c.488%200%20.496-.723%201-1%20.794-.436%202-.5%202-.5v3H0V6z'%20fill='url(%23n)'%20mask='url(%23o)'/%3e%3c/g%3e%3cpath%20d='M3.251%203.475c-.035.36-.058.722-.067%201.084-.01.467.01.812.079%201.02.087.261.284.506.557.742.208.18.415.316.557.397a.25.25%200%201%200%20.246-.436%203.148%203.148%200%200%201-.477-.34c-.21-.182-.356-.363-.409-.521-.044-.134-.063-.442-.053-.85.009-.35.03-.698.065-1.046a.25.25%200%201%200-.498-.05z'%20fill='url(%23p)'%20transform='translate(4%203)'/%3e%3cpath%20fill='%23FFF'%20d='M6%207.5L7%209H6z'/%3e%3c/g%3e%3c/svg%3e")}.gw{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231AB558'%20offset='0%25'/%3e%3cstop%20stop-color='%23169E4D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD952'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E72B42'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h8v15H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M4%208.459L2.53%209.523l.558-1.727-1.466-1.069%201.814-.003L4%205l.564%201.724%201.814.003-1.466%201.07.557%201.726z'/%3e%3c/g%3e%3c/svg%3e")}.gw.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%231AB558'%20offset='0%25'/%3e%3cstop%20stop-color='%23169E4D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFD952'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E72B42'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h8v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M4%208.459L2.53%209.523l.558-1.727-1.466-1.069%201.814-.003L4%205l.564%201.724%201.814.003-1.466%201.07.557%201.726z'/%3e%3c/g%3e%3c/svg%3e")}.gy{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2308C55F'%20offset='0%25'/%3e%3cstop%20stop-color='%23009F49'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD831'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD117'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23E92034'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1225'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20fill-rule='nonzero'%20d='M-1%2015V0h1l21%207v1L0%2015z'/%3e%3cpath%20fill='url(%23d)'%20fill-rule='nonzero'%20d='M0%201.054v12.892L19.338%207.5z'/%3e%3cpath%20fill='url(%23e)'%20fill-rule='nonzero'%20d='M-1%2015V0h1l11.5%207.5L0%2015z'/%3e%3cpath%20fill='url(%23f)'%20fill-rule='nonzero'%20d='M0%2013.806L9.67%207.5%200%201.194z'/%3e%3c/g%3e%3c/svg%3e")}.gy.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2308C55F'%20offset='0%25'/%3e%3cstop%20stop-color='%23009F49'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFD831'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD117'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23E92034'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1225'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20fill='url(%23d)'%20d='M0%2015V0h1l21%207v1L1%2015z'%20transform='translate(-1)'/%3e%3cpath%20fill='url(%23e)'%20d='M1%201.054v12.892L20.338%207.5z'%20transform='translate(-1)'/%3e%3cpath%20fill='url(%23f)'%20d='M0%2015V0h1l11.5%207.5L1%2015z'%20transform='translate(-1)'/%3e%3cpath%20fill='url(%23g)'%20d='M1%2013.806L10.67%207.5%201%201.194z'%20transform='translate(-1)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.hk{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F0371D'%20offset='0%25'/%3e%3cstop%20stop-color='%23DE290F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M12%207.19c-.798-.5-1%20.409-1%200%200-.828.895-1.5%202-1.5s2%20.672%202%201.5c-.949%200-1.044.5-1.5.5-.56%200-.702%200-1.5-.5zM13.25%207a.25.25%200%201%200%200-.5.25.25%200%200%200%200%20.5zm-1.81%201.962c.228-.913-.698-.824-.31-.95.788-.257%201.703.387%202.045%201.438.341%201.05-.021%202.11-.809%202.366-.293-.903-.798-.838-.939-1.272-.173-.533-.217-.668.012-1.582zm.566%201.13a.25.25%200%201%200%20.476-.154.25.25%200%200%200-.476.154zM9.58%208.977c.94-.065.57-.919.81-.588.486.67.157%201.74-.737%202.389-.894.65-2.013.632-2.5-.038.768-.558.55-1.018.92-1.286.453-.33.568-.413%201.507-.477zm-.899.888a.25.25%200%201%200%20.294.405.25.25%200%200%200-.294-.405zm.312-2.652c.351.874%201.049.258.809.588-.487.67-1.606.687-2.5.038-.894-.65-1.223-1.719-.736-2.39.767.559%201.138.21%201.507.478.453.33.568.413.92%201.286zm-1.124-.58a.25.25%200%201%200-.293.404.25.25%200%200%200%20.293-.404zm2.619-.524c-.722.605.08%201.078-.309.951-.788-.256-1.15-1.315-.809-2.365.342-1.05%201.257-1.695%202.045-1.439-.293.903.153%201.147.012%201.581-.173.533-.217.668-.939%201.272zm.205-1.247a.25.25%200%201%200-.475-.155.25.25%200%200%200%20.475.155z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.hk.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23F0371D'%20offset='0%25'/%3e%3cstop%20stop-color='%23DE290F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M9%207.19c-.798-.5-1%20.409-1%200%200-.828.895-1.5%202-1.5s2%20.672%202%201.5c-.949%200-1.044.5-1.5.5-.56%200-.702%200-1.5-.5zM10.25%207a.25.25%200%201%200%200-.5.25.25%200%200%200%200%20.5zM8.44%208.962c.228-.913-.698-.824-.31-.95.788-.257%201.703.387%202.045%201.438.341%201.05-.021%202.11-.809%202.366-.293-.903-.798-.838-.939-1.272-.173-.533-.217-.668.012-1.582h.001zm.566%201.13a.25.25%200%201%200%20.476-.154.25.25%200%200%200-.476.154zM6.58%208.977c.94-.065.57-.919.81-.588.486.67.157%201.74-.737%202.389-.894.65-2.013.632-2.5-.038.768-.558.55-1.018.92-1.286.453-.33.568-.413%201.507-.477zm-.899.888a.25.25%200%201%200%20.294.405.25.25%200%200%200-.294-.405zm.312-2.652c.351.874%201.049.258.809.588-.487.67-1.606.687-2.5.038-.894-.65-1.223-1.719-.736-2.39.767.559%201.138.21%201.507.478.453.33.568.413.92%201.286zm-1.124-.58a.25.25%200%201%200-.318.386.25.25%200%200%200%20.318-.386zm2.619-.524c-.722.605.08%201.078-.309.951-.788-.256-1.15-1.315-.809-2.365C6.712%203.645%207.627%203%208.415%203.256c-.293.903.153%201.147.012%201.581-.173.533-.217.668-.939%201.272zm.205-1.247a.25.25%200%201%200-.47-.173.25.25%200%200%200%20.47.173z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.hm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='%23FFF'%20d='M4.5%2012.25l-.882.464.169-.982-.714-.696.986-.143L4.5%2010l.44.893.987.143-.714.696.169.982z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23c)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cpath%20fill='%23FFF'%20d='M15%2013l-.707.207.207-.707-.207-.707L15%2012l.707-.207-.207.707.207.707zm0-9.5l-.707.207L14.5%203l-.207-.707L15%202.5l.707-.207L15.5%203l.207.707zm3%203l-.707.207L17.5%206l-.207-.707L18%205.5l.707-.207L18.5%206l.207.707zm-6%201l-.707.207L11.5%207l-.207-.707L12%206.5l.707-.207L12.5%207l.207.707zm4.5%201.25l-.354.104.104-.354-.104-.354.354.104.354-.104-.104.354.104.354z'/%3e%3c/g%3e%3c/svg%3e")}.hm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='b'%20d='M0%200h10v8H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23b'/%3e%3c/mask%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23c)'%20mask='url(%23d)'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23e)'%20mask='url(%23d)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23c)'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cpath%20d='M4.379%2012.386l-.543.298.104-.63-.44-.446.607-.092.272-.573.27.573.608.092-.44.446.105.63-.543-.298zm6.464.481l-.435.133.127-.453-.127-.454.435.133.435-.133-.127.454.127.453-.435-.133zm0-6.093l-.435.133.127-.454L10.408%206l.435.133.435-.133-.127.453.127.454-.435-.133zm1.847%201.924l-.436.133.128-.453-.128-.454.436.133.435-.133-.127.454.127.453-.435-.133zm-3.694.642l-.435.132.127-.453-.127-.453.435.132.435-.132-.127.453.127.453-.435-.132zm2.77.801l-.218.067.064-.227-.064-.227.218.067.218-.067-.064.227.064.227-.218-.067z'%20fill='%23FFF'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.hn{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230884E6'%20offset='0%25'/%3e%3cstop%20stop-color='%230074D0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230E88E9'%20offset='0%25'/%3e%3cstop%20stop-color='%230074D0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0zm0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M10.5%208l-.707.207L10%207.5l-.207-.707L10.5%207l.707-.207L11%207.5l.207.707zm4-1l-.707.207L14%206.5l-.207-.707L14.5%206l.707-.207L15%206.5l.207.707zm0%202l-.707.207L14%208.5l-.207-.707L14.5%208l.707-.207L15%208.5l.207.707zm-8%200l-.707.207L6%208.5l-.207-.707L6.5%208l.707-.207L7%208.5l.207.707zm0-2l-.707.207L6%206.5l-.207-.707L6.5%206l.707-.207L7%206.5l.207.707z'/%3e%3c/g%3e%3c/svg%3e")}.hn.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230884E6'%20offset='0%25'/%3e%3cstop%20stop-color='%230074D0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230E88E9'%20offset='0%25'/%3e%3cstop%20stop-color='%230074D0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%200h15v5H0V0zm0%2010h15v5H0v-5z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20d='M7.5%208l-.707.207L7%207.5l-.207-.707L7.5%207l.707-.207L8%207.5l.207.707L7.5%208zm4-1l-.707.207L11%206.5l-.207-.707L11.5%206l.707-.207L12%206.5l.207.707L11.5%207zm0%202l-.707.207L11%208.5l-.207-.707L11.5%208l.707-.207L12%208.5l.207.707L11.5%209zm-8%200l-.707.207L3%208.5l-.207-.707L3.5%208l.707-.207L4%208.5l.207.707L3.5%209zm0-2l-.707.207L3%206.5l-.207-.707L3.5%206l.707-.207L4%206.5l.207.707L3.5%207z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.hr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF202D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%232027AC'%20offset='0%25'/%3e%3cstop%20stop-color='%23191F94'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FF212E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20d='M8%204l.5-.5.5.5v1H8V4zm2%200l.5-.5.5.5v1h-1V4zm2%200l.5-.5.5.5v1h-1V4z'%20fill='%231895DB'%20opacity='.5'/%3e%3cpath%20d='M9%204l.5-.5.5.5v1H9V4zm2%200l.5-.5.5.5v1h-1V4z'%20fill='%23191F94'%20opacity='.5'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20d='M0%2010V5h21v5H0zm12%200h1l-.273.547c-.126.25-.454.453-.727.453v-1zm-2%200h1v1h-1v-1zm-2%200h1v1a.876.876%200%200%201-.727-.453L8%2010z'%20fill='url(%23a)'/%3e%3cpath%20d='M10%205h1v1h-1V5zm2%200h.5l.5%201h-1V5zM8.5%205H9v1H8l.5-1zM9%206h1v1H9V6zm2%200h1v1h-1V6zm-1%201h1v1h-1V7zm2%200h1v1h-1V7zm-1%201h1v1h-1V8zM8%207h1v1H8V7zm1%201h1v1H9V8zM8%209h1v1H8V9zm2%200h1v1h-1V9zm2%200h1v1h-1V9zm-1%201h1v1h-1v-1zm-2%200h1v1H9v-1z'%20fill='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.hr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FF202D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%232027AC'%20offset='0%25'/%3e%3cstop%20stop-color='%23191F94'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FF212E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M-3%200h21v5H-3z'/%3e%3cpath%20d='M5%204l.5-.5.5.5v1H5V4zm2%200l.5-.5.5.5v1H7V4zm2%200l.5-.5.5.5v1H9V4z'%20fill='%231895DB'%20fill-rule='nonzero'%20opacity='.5'%20mask='url(%23d)'/%3e%3cpath%20d='M6%204l.5-.5.5.5v1H6V4zm2%200l.5-.5.5.5v1H8V4z'%20fill='%23191F94'%20fill-rule='nonzero'%20opacity='.5'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M-3%2010h21v5H-3z'/%3e%3cpath%20d='M-3%2010V5h21v5H-3zm12%200h1l-.273.547c-.126.25-.454.453-.727.453v-1zm-2%200h1v1H7v-1zm-2%200h1v1a.876.876%200%200%201-.727-.453L5%2010z'%20fill='url(%23b)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cpath%20d='M7%205h1v1H7V5zm2%200h.5l.5%201H9V5zM5.5%205H6v1H5l.5-1zM6%206h1v1H6V6zm2%200h1v1H8V6zM7%207h1v1H7V7zm2%200h1v1H9V7zM8%208h1v1H8V8zM5%207h1v1H5V7zm1%201h1v1H6V8zM5%209h1v1H5V9zm2%200h1v1H7V9zm2%200h1v1H9V9zm-1%201h1v1H8v-1zm-2%200h1v1H6v-1z'%20fill='url(%23f)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.ht{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23112EBC'%20offset='0%25'/%3e%3cstop%20stop-color='%230620A0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E3264A'%20offset='0%25'/%3e%3cstop%20stop-color='%23D20F34'%20offset='100%25'/%3e%3c/linearGradient%3e%3crect%20id='d'%20x='0'%20y='0'%20width='7'%20height='6'%20rx='.5'/%3e%3cpath%20d='M0%205l1.105-.553C1.6%204.2%202.443%204%203%204h1.002c.552%200%201.404.202%201.894.447L7%205v1H0V5z'%20id='f'/%3e%3cpath%20d='M1%203.006c0-.28.18-.362.39-.193l1.72%201.374a.66.66%200%200%200%20.78%200l1.72-1.375c.215-.172.39-.081.39.194v1.488c0%20.28-.215.506-.498.506H1.498A.505.505%200%200%201%201%204.494V3.006z'%20id='g'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%207h21v8H0z'/%3e%3cg%20transform='translate(7%205)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23d'/%3e%3cg%20mask='url(%23e)'%3e%3cuse%20fill='%23AABCAE'%20xlink:href='%23f'/%3e%3cpath%20stroke='%23366C14'%20stroke-width='.5'%20d='M.25%205.155v.595h6.5v-.595l-.967-.484C5.326%204.443%204.513%204.25%204%204.25H2.999c-.516%200-1.321.19-1.782.421l-.967.484z'/%3e%3c/g%3e%3ccircle%20fill='%23D4B872'%20mask='url(%23e)'%20cx='3.5'%20cy='2.5'%20r='1.5'/%3e%3cg%20mask='url(%23e)'%3e%3cuse%20fill='%23C28321'%20xlink:href='%23g'/%3e%3cpath%20stroke='%230D3488'%20stroke-width='.5'%20d='M1.25%203.02v1.474c0%20.14.114.256.248.256h4.004c.14%200%20.248-.11.248-.256V3.02L4.047%204.383a.91.91%200%200%201-1.094%200L1.25%203.02z'/%3e%3c/g%3e%3cpath%20d='M2.172%201.172C2.077%201.077%202.114%201%202.256%201h2.488c.141%200%20.175.08.084.172L3.672%202.328a.247.247%200%200%201-.344%200L2.172%201.172z'%20fill='%23216C30'%20mask='url(%23e)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ht.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23112EBC'%20offset='0%25'/%3e%3cstop%20stop-color='%230620A0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E3264A'%20offset='0%25'/%3e%3cstop%20stop-color='%23D20F34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3crect%20id='d'%20x='0'%20y='0'%20width='7'%20height='6'%20rx='.5'/%3e%3crect%20id='f'%20x='0'%20y='0'%20width='7'%20height='6'%20rx='.5'/%3e%3crect%20id='h'%20x='0'%20y='0'%20width='7'%20height='6'%20rx='.5'/%3e%3crect%20id='j'%20x='0'%20y='0'%20width='7'%20height='6'%20rx='.5'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v8H0z'/%3e%3crect%20width='7'%20height='6'%20rx='.5'%20fill='url(%23c)'%20transform='translate(4%205)'/%3e%3cg%20transform='translate(4%205)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cg%20mask='url(%23e)'%3e%3cpath%20d='M0%205l1.105-.553C1.6%204.2%202.443%204%203%204h1.002c.552%200%201.404.202%201.894.447L7%205v1H0V5z'%20fill='%23AABCAE'/%3e%3cpath%20d='M.25%205.155v.595h6.5v-.595l-.967-.484C5.326%204.443%204.513%204.25%204%204.25H2.999c-.516%200-1.321.19-1.782.421l-.967.484z'%20stroke='%23366C14'%20stroke-width='.5'/%3e%3c/g%3e%3c/g%3e%3cg%20transform='translate(4%205)'%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23f'/%3e%3c/mask%3e%3ccircle%20fill='%23D4B872'%20mask='url(%23g)'%20cx='3.5'%20cy='2.5'%20r='1.5'/%3e%3c/g%3e%3cg%20transform='translate(4%205)'%3e%3cmask%20id='i'%20fill='%23fff'%3e%3cuse%20xlink:href='%23h'/%3e%3c/mask%3e%3cg%20mask='url(%23i)'%3e%3cpath%20d='M1%203.006c0-.28.18-.362.39-.193l1.72%201.374a.66.66%200%200%200%20.78%200l1.72-1.375c.215-.172.39-.081.39.194v1.488c0%20.28-.215.506-.498.506H1.498A.505.505%200%200%201%201%204.494V3.006z'%20fill='%23C28321'/%3e%3cpath%20d='M1.25%203.02v1.474c0%20.14.114.256.248.256h4.004c.14%200%20.248-.11.248-.256V3.02L4.047%204.383a.91.91%200%200%201-1.094%200L1.25%203.02z'%20stroke='%230D3488'%20stroke-width='.5'/%3e%3c/g%3e%3c/g%3e%3cg%20transform='translate(4%205)'%3e%3cmask%20id='k'%20fill='%23fff'%3e%3cuse%20xlink:href='%23j'/%3e%3c/mask%3e%3cpath%20d='M2.172%201.172C2.077%201.077%202.114%201%202.256%201h2.488c.141%200%20.175.08.084.172L3.672%202.328a.247.247%200%200%201-.344%200L2.172%201.172z'%20fill='%23216C30'%20mask='url(%23k)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.hu{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E03D52'%20offset='0%25'/%3e%3cstop%20stop-color='%23CD2A3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%235A9165'%20offset='0%25'/%3e%3cstop%20stop-color='%2344704D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.hu.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E03D52'%20offset='0%25'/%3e%3cstop%20stop-color='%23CD2A3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%235A9165'%20offset='0%25'/%3e%3cstop%20stop-color='%2344704D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.id{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E12237'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%208h21v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.id.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E12237'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%208h15v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.ie{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF8515'%20offset='0%25'/%3e%3cstop%20stop-color='%23FF7A00'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2307BB59'%20offset='0%25'/%3e%3cstop%20stop-color='%23029C48'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.ie.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF8515'%20offset='0%25'/%3e%3cstop%20stop-color='%23FF7A00'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2307BB59'%20offset='0%25'/%3e%3cstop%20stop-color='%23029C48'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.il{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230E46D4'%20offset='0%25'/%3e%3cstop%20stop-color='%230538B9'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v3H0zm0%2012h21v3H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h21v9H0z'/%3e%3cpath%20d='M7.575%209.25L10.5%203.985l2.925%205.265h-5.85z'%20stroke='%23093EC5'%20stroke-width='.5'/%3e%3cpath%20d='M7.575%205.75l2.925%205.265%202.925-5.265h-5.85z'%20stroke='%23093EC5'%20stroke-width='.5'/%3e%3c/g%3e%3c/svg%3e")}.il.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230E46D4'%20offset='0%25'/%3e%3cstop%20stop-color='%230538B9'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%200h15v3H0V0zm0%2012h15v3H0v-3z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%203h15v9H0z'/%3e%3cg%20stroke='%23093EC5'%20stroke-width='.5'%3e%3cpath%20d='M4.575%209.25L7.5%203.985l2.925%205.265z'/%3e%3cpath%20d='M4.575%205.75L7.5%2011.015l2.925-5.265h-5.85z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.im{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E52D42'%20offset='0%25'/%3e%3cstop%20stop-color='%23CB1D31'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F8DD4E'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9DA38'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M12.5%201.5h-2L9%205%207.5%204S6.411%201.411%206%201c-.411-.411-.828-.03-2.13.349-1.301.38-1.352.815-1.86.815-.207%200-.862-.76-1.228-.987C.244.844.051%201%20.18%201.5c.056.216.483.483.754.87.355.51.566%201.13.566%201.13s.488-.456.75-.53c.398-.114.846.08%201.372%200C4.289%202.865%205%202.5%205%202.5l.174%201.907S2.795%206.617%203%207.5c.205.883%202.469%201.966%203%202.74.531.773-.316%201.061-.316%201.433%200%20.371-.088.866.316.717.404-.148.453-.792.823-1.377.255-.402.46-.614.496-.773.086-.39-1.028-1.415-1.635-2.14-.289-.346-.871-.815-.871-.815L6.53%206s2.966%201.225%203.635.817C10.836%206.409%2011%202.5%2011%202.5l2.062-.5-.562-.5z'%20fill='url(%23a)'%20transform='translate(4%201.5)'/%3e%3cpath%20d='M7.5%2010a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2-8a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-6%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2-6a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%204C6.224%206%206%205.552%206%205s.224-1%20.5-1%20.5.448.5%201-.224%201-.5%201zm-5-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23c)'%20transform='translate(4%201.5)'/%3e%3c/g%3e%3c/svg%3e")}.im.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E52D42'%20offset='0%25'/%3e%3cstop%20stop-color='%23CB1D31'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F8DD4E'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9DA38'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M8.929.667H7.5L6.429%203l-1.072-.667S4.58.607%204.286.333C3.992.06%203.694.313%202.764.566c-.929.253-.965.543-1.328.543C1.288%201.11.82.603.559.451.174.23.036.333.129.667c.04.144.345.322.538.58.254.34.404.753.404.753s.349-.304.536-.353c.284-.076.604.053.98%200%20.477-.07.984-.314.984-.314l.125%201.272s-1.7%201.473-1.553%202.062c.146.588%201.763%201.31%202.143%201.826.379.516-.226.708-.226.956%200%20.247-.063.577.226.478.288-.099.323-.528.588-.918.182-.268.328-.41.354-.516.061-.26-.734-.943-1.168-1.426-.206-.231-.622-.544-.622-.544l1.226-.856s2.119.816%202.597.544c.479-.272.596-2.878.596-2.878L9.33%201%208.929.667z'%20fill='url(%23b)'%20transform='translate(3%204)'/%3e%3cpath%20d='M5.357%206.333C5.16%206.333%205%206.184%205%206c0-.184.16-.333.357-.333.197%200%20.357.149.357.333%200%20.184-.16.333-.357.333zM6.786%201c-.198%200-.357-.15-.357-.333%200-.184.16-.334.357-.334.197%200%20.357.15.357.334%200%20.184-.16.333-.357.333zm0%202.667c-.198%200-.357-.15-.357-.334%200-.184.16-.333.357-.333.197%200%20.357.15.357.333%200%20.184-.16.334-.357.334zM2.5%205c-.197%200-.357-.15-.357-.333%200-.184.16-.334.357-.334.197%200%20.357.15.357.334%200%20.184-.16.333-.357.333zm1.429-4C3.73%201%203.57.85%203.57.667c0-.184.16-.334.358-.334.197%200%20.357.15.357.334%200%20.184-.16.333-.357.333zm.714%202.667c-.197%200-.357-.299-.357-.667%200-.368.16-.667.357-.667.197%200%20.357.299.357.667%200%20.368-.16.667-.357.667zM1.07%202.333C.874%202.333.714%202.184.714%202c0-.184.16-.333.357-.333.198%200%20.358.149.358.333%200%20.184-.16.333-.358.333z'%20fill='url(%23c)'%20fill-rule='nonzero'%20transform='translate(3%204)'/%3e%3c/g%3e%3c/svg%3e")}.in{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFA44A'%20offset='0%25'/%3e%3cstop%20stop-color='%23FF9934'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231A9F0B'%20offset='0%25'/%3e%3cstop%20stop-color='%23138806'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3ccircle%20fill-opacity='.15'%20fill='%23181A93'%20cx='10.5'%20cy='7.5'%20r='1.5'/%3e%3cpath%20d='M10.5%209.5a2%202%200%201%201%200-4%202%202%200%200%201%200%204zm0-.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203z'%20fill='%23181A93'%20fill-rule='nonzero'/%3e%3ccircle%20fill='%23181A93'%20cx='10.5'%20cy='7.5'%20r='1'/%3e%3c/g%3e%3c/svg%3e")}.in.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFA44A'%20offset='0%25'/%3e%3cstop%20stop-color='%23FF9934'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231A9F0B'%20offset='0%25'/%3e%3cstop%20stop-color='%23138806'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3ccircle%20fill-opacity='.15'%20fill='%23181A93'%20cx='7.5'%20cy='7.5'%20r='1.5'/%3e%3cpath%20d='M7.5%209.5a2%202%200%201%201%200-4%202%202%200%200%201%200%204zm0-.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203z'%20fill='%23181A93'%20fill-rule='nonzero'/%3e%3ccircle%20fill='%23181A93'%20cx='7.5'%20cy='7.5'%20r='1'/%3e%3c/g%3e%3c/svg%3e")}.io{background-image:url("/assets/io-mTPk97fr.svg")}.io.fp-square{background-image:url("/assets/io-rThlhe4o.svg")}.iq{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DF1E35'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M14%206.256c0-.141.092-.21.232-.14l.536.268a.444.444%200%200%201%20.232.365V8.75a.247.247%200%200%201-.252.249h-.496A.254.254%200%200%201%2014%208.744V6.256zm-6%200c0-.141.092-.21.232-.14l.536.268A.444.444%200%200%201%209%206.749V8.75a.247.247%200%200%201-.252.25h-.496A.254.254%200%200%201%208%208.744V6.256zm4%20.493c0-.138.092-.295.232-.365l.536-.268c.128-.064.232-.002.232.14v2.488a.25.25%200%200%201-.252.256h-.496A.248.248%200%200%201%2012%208.751V6.75z'%20fill='%230F7A40'/%3e%3cpath%20d='M10%207.748c0-.137.092-.294.232-.364l.536-.268c.128-.064.232-.004.232.126v.803h1.5V9h-2.248A.255.255%200%200%201%2010%208.752V7.748zm-4%200c0-.137.092-.294.232-.364l.536-.268c.128-.064.232-.004.232.126v.803h1.5V9H6.252A.255.255%200%200%201%206%208.752V7.748z'%20fill='%230F7A40'/%3e%3c/g%3e%3c/svg%3e")}.iq.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23DF1E35'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20d='M11%206.256c0-.141.092-.21.232-.14l.536.268a.444.444%200%200%201%20.232.365V8.75a.247.247%200%200%201-.252.249h-.496A.254.254%200%200%201%2011%208.744V6.256zm-6%200c0-.141.092-.21.232-.14l.536.268A.444.444%200%200%201%206%206.749V8.75a.247.247%200%200%201-.252.25h-.496A.254.254%200%200%201%205%208.744V6.256zm4%20.493c0-.138.092-.295.232-.365l.536-.268c.128-.064.232-.002.232.14v2.488A.25.25%200%200%201%209.748%209h-.496A.248.248%200%200%201%209%208.751V6.749z'%20fill='%230F7A40'%20fill-rule='nonzero'/%3e%3cpath%20d='M7%207.748c0-.137.092-.294.232-.364l.536-.268c.128-.064.232-.004.232.126v.803h1.5V9H7.252A.255.255%200%200%201%207%208.752V7.748zm-4%200c0-.137.092-.294.232-.364l.536-.268c.128-.064.232-.004.232.126v.803h1.5V9H3.252A.255.255%200%200%201%203%208.752V7.748z'%20fill='%230F7A40'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ir{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2338BB56'%20offset='0%25'/%3e%3cstop%20stop-color='%232B9F45'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DE1B27'%20offset='0%25'/%3e%3cstop%20stop-color='%23D80915'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M1%204.252C1%204.113%201.107%204%201.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%201.748%205h-.496A.249.249%200%200%201%201%204.748v-.496zm2%200C3%204.113%203.107%204%203.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%203.748%205h-.496A.249.249%200%200%201%203%204.748v-.496zm2%200C5%204.113%205.107%204%205.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%205.748%205h-.496A.249.249%200%200%201%205%204.748v-.496zm2%200C7%204.113%207.107%204%207.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%207.748%205h-.496A.249.249%200%200%201%207%204.748v-.496zm2%200C9%204.113%209.107%204%209.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%209.748%205h-.496A.249.249%200%200%201%209%204.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%2011%204.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%2013%204.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%2015%204.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%2017%204.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%2019%204.748v-.496zm-18%206c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%201%2010.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%203%2010.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%205%2010.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%207%2010.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%209%2010.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496a.249.249%200%200%201-.252-.252v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496a.249.249%200%200%201-.252-.252v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496a.249.249%200%200%201-.252-.252v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496a.249.249%200%200%201-.252-.252v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496a.249.249%200%200%201-.252-.252v-.496z'%20fill-opacity='.5'%20fill='%23FFF'/%3e%3cpath%20d='M9.591%206.642a1.25%201.25%200%201%200%201.83.014l-1.83-.014z'%20stroke='%23D80915'%20stroke-width='.5'/%3e%3crect%20fill='%23D80915'%20x='10'%20y='7'%20width='1'%20height='2'%20rx='.5'/%3e%3c/g%3e%3c/svg%3e")}.ir.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2338BB56'%20offset='0%25'/%3e%3cstop%20stop-color='%232B9F45'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23DE1B27'%20offset='0%25'/%3e%3cstop%20stop-color='%23D80915'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M-3%200h21v5H-3z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M-3%2010h21v5H-3z'/%3e%3cpath%20fill='url(%23b)'%20mask='url(%23d)'%20d='M-3%205h21v5H-3z'/%3e%3cpath%20d='M0%204.252C0%204.113.107%204%20.252%204h.496C.887%204%201%204.107%201%204.252v.496A.248.248%200%200%201%20.748%205H.252A.249.249%200%200%201%200%204.748v-.496zm2%200C2%204.113%202.107%204%202.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%202.748%205h-.496A.249.249%200%200%201%202%204.748v-.496zm2%200C4%204.113%204.107%204%204.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%204.748%205h-.496A.249.249%200%200%201%204%204.748v-.496zm2%200C6%204.113%206.107%204%206.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%206.748%205h-.496A.249.249%200%200%201%206%204.748v-.496zm1%200C7%204.113%207.107%204%207.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%207.748%205h-.496A.249.249%200%200%201%207%204.748v-.496zm0%200C7%204.113%207.107%204%207.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%207.748%205h-.496A.249.249%200%200%201%207%204.748v-.496zm1%200C8%204.113%208.107%204%208.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%208.748%205h-.496A.249.249%200%200%201%208%204.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%2010%204.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%2012%204.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%2014%204.748v-.496zm-14%206C0%2010.113.107%2010%20.252%2010h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%20.748%2011H.252A.249.249%200%200%201%200%2010.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%202%2010.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%204%2010.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%206%2010.748v-.496zm1%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%207%2010.748v-.496zm0%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%207%2010.748v-.496zm1%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%208%2010.748v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496a.249.249%200%200%201-.252-.252v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496a.249.249%200%200%201-.252-.252v-.496zm2%200c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496a.249.249%200%200%201-.252-.252v-.496z'%20fill-opacity='.5'%20fill='%23FFF'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cg%20mask='url(%23d)'%3e%3cg%20transform='translate(6%206)'%3e%3cpath%20d='M.591.642a1.25%201.25%200%201%200%201.83.014L.591.642z'%20stroke='%23D80915'%20stroke-width='.5'/%3e%3crect%20fill='%23D80915'%20x='1'%20y='1'%20width='1'%20height='2'%20rx='.5'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.is{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230E4CB5'%20offset='0%25'/%3e%3cstop%20stop-color='%23063B95'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EB363A'%20offset='0%25'/%3e%3cstop%20stop-color='%23D52B2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.is.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230E4CB5'%20offset='0%25'/%3e%3cstop%20stop-color='%23063B95'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EB363A'%20offset='0%25'/%3e%3cstop%20stop-color='%23D52B2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20mask='url(%23d)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.it{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E43D4C'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC2E3C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231BB65D'%20offset='0%25'/%3e%3cstop%20stop-color='%23139149'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.it.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E43D4C'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC2E3C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231BB65D'%20offset='0%25'/%3e%3cstop%20stop-color='%23139149'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.je{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EF273F'%20offset='0%25'/%3e%3cstop%20stop-color='%23DB1C33'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F22A41'%20offset='0%25'/%3e%3cstop%20stop-color='%23E51D34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FADF46'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9DC38'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M10.5%206.291L-.962-1.44-2.08.218l10.792%207.28-10.792%207.279%201.118%201.658L10.5%208.704l11.462%207.73%201.118-1.657-10.791-7.28L23.08.218%2021.962-1.44%2010.5%206.291z'%20fill='url(%23b)'/%3e%3cpath%20d='M9%202.502c0-.279.216-.505.496-.505h2.009c.273%200%20.495.214.495.505v.99c0%20.28-.16.666-.348.853l-.804.804a.496.496%200%200%201-.696%200l-.804-.804A1.354%201.354%200%200%201%209%203.493v-.991z'%20fill='url(%23c)'/%3e%3cpath%20d='M10.5%203.997a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-2c-.828%200-1.5-.224-1.5-.5s.672-.5%201.5-.5c.829%200%201.5.224%201.5.5s-.671.5-1.5.5z'%20fill='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.je.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EF273F'%20offset='0%25'/%3e%3cstop%20stop-color='%23DB1C33'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F22A41'%20offset='0%25'/%3e%3cstop%20stop-color='%23E51D34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FADF46'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9DC38'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M7.5%206.291L-3.962-1.44-5.08.218l10.792%207.28-10.792%207.279%201.118%201.658L7.5%208.704l11.462%207.73%201.118-1.657-10.791-7.28L20.08.218%2018.962-1.44z'/%3e%3cpath%20d='M6%202.502c0-.279.216-.505.496-.505h2.009c.273%200%20.495.214.495.505v.99c0%20.28-.16.666-.348.853l-.804.804a.496.496%200%200%201-.696%200l-.804-.804A1.354%201.354%200%200%201%206%203.493v-.991z'%20fill='url(%23e)'%20mask='url(%23d)'/%3e%3cpath%20d='M7.5%203.997a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-2c-.828%200-1.5-.224-1.5-.5s.672-.5%201.5-.5c.829%200%201.5.224%201.5.5s-.671.5-1.5.5z'%20fill='url(%23f)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.jm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DBE4F'%20offset='0%25'/%3e%3cstop%20stop-color='%23159B3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD646'%20offset='0%25'/%3e%3cstop%20stop-color='%23FED02F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0-.003h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0-.003l9%207.5-9%207.5z'/%3e%3cpath%20fill='url(%23c)'%20transform='matrix(-1%200%200%201%2033%200)'%20d='M12-.003l9%207.5-9%207.5z'/%3e%3cpath%20d='M10.5%206.291L-.962-1.44-2.08.218l10.792%207.28-10.792%207.279%201.118%201.658L10.5%208.704l11.462%207.73%201.118-1.657-10.791-7.28L23.08.218%2021.962-1.44%2010.5%206.291z'%20fill='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.jm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DBE4F'%20offset='0%25'/%3e%3cstop%20stop-color='%23159B3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFD646'%20offset='0%25'/%3e%3cstop%20stop-color='%23FED02F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20fill-rule='nonzero'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0-.003l6.429%207.5L0%2014.997zM15-.003v15l-6.429-7.5z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M7.5%206.291L-.687-1.44-1.486.218l7.709%207.28-7.709%207.279.799%201.658L7.5%208.704l8.187%207.73.799-1.657-7.708-7.28L16.486.218l-.799-1.658z'/%3e%3c/g%3e%3c/svg%3e")}.jo{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23199E56'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7A40'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E6223A'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l10%207.5L0%2015z'/%3e%3cpath%20fill='url(%23a)'%20d='M3.5%208.25l-.65.601.064-.883-.876-.134.73-.5-.44-.77.847.26L3.5%206l.325.824.848-.26-.442.77.731.5-.876.134.065.883z'/%3e%3c/g%3e%3c/svg%3e")}.jo.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23199E56'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7A40'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E6223A'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l7%207.5L0%2015z'/%3e%3cpath%20fill='url(%23c)'%20d='M2.5%208.368L1.833%209l.066-.93L1%207.93l.749-.526-.451-.81.869.273L2.5%206l.333.867.87-.274-.453.81.75.527-.899.14.067.93z'/%3e%3c/g%3e%3c/svg%3e")}.jp{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23D81441'%20offset='0%25'/%3e%3cstop%20stop-color='%23BB0831'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3ccircle%20fill='url(%23b)'%20cx='10.5'%20cy='7.5'%20r='4.5'/%3e%3c/g%3e%3c/svg%3e")}.jp.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23D81441'%20offset='0%25'/%3e%3cstop%20stop-color='%23BB0831'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3ccircle%20fill='url(%23b)'%20cx='7.5'%20cy='7.5'%20r='4.5'/%3e%3c/g%3e%3c/svg%3e")}.ke{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23018301'%20offset='0%25'/%3e%3cstop%20stop-color='%23006700'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DC0808'%20offset='0%25'/%3e%3cstop%20stop-color='%23BC0000'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M2.5%2010.5c1%200%202.5-1.962%202.5-5%200-3.038-1.5-5-2.5-5S0%202.462%200%205.5c0%203.038%201.5%205%202.5%205z'%20id='e'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%204h21v7H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h21v5H0z'/%3e%3cg%20transform='translate(8%202)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cuse%20fill='%23BC0000'%20xlink:href='%23e'/%3e%3cellipse%20fill='url(%23b)'%20mask='url(%23f)'%20cx='-1.5'%20cy='5.5'%20rx='2.5'%20ry='5.5'/%3e%3cellipse%20fill='url(%23b)'%20mask='url(%23f)'%20cx='6.5'%20cy='5.5'%20rx='2.5'%20ry='5.5'/%3e%3cpath%20d='M2.5%207C2.224%207%202%206.328%202%205.5S2.224%204%202.5%204s.5.672.5%201.5S2.776%207%202.5%207zm0-3C2.224%204%202%203.105%202%202s.224-2%20.5-2%20.5.895.5%202-.224%202-.5%202zm0%207c-.276%200-.5-.895-.5-2s.224-2%20.5-2%20.5.895.5%202-.224%202-.5%202z'%20fill='url(%23a)'%20mask='url(%23f)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ke.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23018301'%20offset='0%25'/%3e%3cstop%20stop-color='%23006700'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DC0808'%20offset='0%25'/%3e%3cstop%20stop-color='%23BC0000'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M2.5%2010.5c1%200%202.5-1.962%202.5-5%200-3.038-1.5-5-2.5-5S0%202.462%200%205.5c0%203.038%201.5%205%202.5%205z'%20id='e'/%3e%3cpath%20d='M2.5%2010.5c1%200%202.5-1.962%202.5-5%200-3.038-1.5-5-2.5-5S0%202.462%200%205.5c0%203.038%201.5%205%202.5%205z'%20id='g'/%3e%3cpath%20d='M2.5%2010.5c1%200%202.5-1.962%202.5-5%200-3.038-1.5-5-2.5-5S0%202.462%200%205.5c0%203.038%201.5%205%202.5%205z'%20id='i'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v4H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2011h15v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h15v7H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h15v5H0z'/%3e%3cpath%20d='M7.5%2012.5c1%200%202.5-1.962%202.5-5%200-3.038-1.5-5-2.5-5S5%204.462%205%207.5c0%203.038%201.5%205%202.5%205z'%20fill='%23BC0000'/%3e%3cg%20transform='translate(5%202)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cellipse%20fill='url(%23a)'%20mask='url(%23f)'%20cx='-1.5'%20cy='5.5'%20rx='2.5'%20ry='5.5'/%3e%3c/g%3e%3cg%20transform='translate(5%202)'%3e%3cmask%20id='h'%20fill='%23fff'%3e%3cuse%20xlink:href='%23g'/%3e%3c/mask%3e%3cellipse%20fill='url(%23a)'%20mask='url(%23h)'%20cx='6.5'%20cy='5.5'%20rx='2.5'%20ry='5.5'/%3e%3c/g%3e%3cg%20transform='translate(5%202)'%3e%3cmask%20id='j'%20fill='%23fff'%3e%3cuse%20xlink:href='%23i'/%3e%3c/mask%3e%3cpath%20d='M2.5%207C2.224%207%202%206.328%202%205.5S2.224%204%202.5%204s.5.672.5%201.5S2.776%207%202.5%207zm0-3C2.224%204%202%203.105%202%202s.224-2%20.5-2%20.5.895.5%202-.224%202-.5%202zm0%207c-.276%200-.5-.895-.5-2s.224-2%20.5-2%20.5.895.5%202-.224%202-.5%202z'%20fill='url(%23c)'%20fill-rule='nonzero'%20mask='url(%23j)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.kg{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F22A46'%20offset='0%25'/%3e%3cstop%20stop-color='%23E71834'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF04D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFEE35'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3ccircle%20fill='url(%23c)'%20cx='10.5'%20cy='7.5'%20r='2.5'/%3e%3cpath%20d='M10.5%2011.035l-1.224%201.827-.31-2.177L7.071%2011.8l.665-2.096-2.191.182%201.508-1.6L5%207.5l2.053-.787-1.508-1.6%202.191.183L7.071%203.2l1.895%201.115.31-2.177L10.5%203.965l1.224-1.827.31%202.177L13.929%203.2l-.665%202.096%202.191-.182-1.508%201.6L16%207.5l-2.053.787%201.508%201.6-2.191-.183.665%202.096-1.895-1.115-.31%202.177-1.224-1.827zm0-.035a3.5%203.5%200%201%200%200-7%203.5%203.5%200%200%200%200%207z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.kg.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23F22A46'%20offset='0%25'/%3e%3cstop%20stop-color='%23E71834'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF04D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFEE35'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3ccircle%20fill='url(%23b)'%20cx='7.5'%20cy='7.5'%20r='2.5'/%3e%3cpath%20d='M7.5%2011.035l-1.224%201.827-.31-2.177L4.071%2011.8l.665-2.096-2.191.182%201.508-1.6L2%207.5l2.053-.787-1.508-1.6%202.191.183L4.071%203.2l1.895%201.115.31-2.177L7.5%203.965l1.224-1.827.31%202.177L10.929%203.2l-.665%202.096%202.191-.182-1.508%201.6L13%207.5l-2.053.787%201.508%201.6-2.191-.183.665%202.096-1.895-1.115-.31%202.177L7.5%2011.035zm0-.035a3.5%203.5%200%201%200%200-7%203.5%203.5%200%200%200%200%207z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.kh{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230F3EB6'%20offset='0%25'/%3e%3cstop%20stop-color='%2309339F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23ED1A3C'%20offset='0%25'/%3e%3cstop%20stop-color='%23DE0B2D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v4H0zm0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h21v7H0z'/%3e%3cpath%20d='M7.5%208h1v2h-2l1-2zM9%208h3v2H9V8zm3.5%200h1l1%202h-2V8zm0-1.492A.51.51%200%200%201%2013%206a.5.5%200%200%201%20.5.508V7.5h-1v-.992zM9%206.545h1v-.547c0-.275.232-.498.5-.498.276%200%20.5.222.5.498v.547h1V7.5H9v-.955zm-1.5-.037A.51.51%200%200%201%208%206a.5.5%200%200%201%20.5.508V7.5h-1v-.992z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.kh.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230F3EB6'%20offset='0%25'/%3e%3cstop%20stop-color='%2309339F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23ED1A3C'%20offset='0%25'/%3e%3cstop%20stop-color='%23DE0B2D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%200h15v4H0V0zm0%2011h15v4H0v-4z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%204h15v7H0z'/%3e%3cpath%20d='M4.5%208h1v2h-2l1-2zM6%208h3v2H6V8zm3.5%200h1l1%202h-2V8zm0-1.492A.51.51%200%200%201%2010%206a.5.5%200%200%201%20.5.508V7.5h-1v-.992zM6%206.545h1v-.547c0-.275.232-.498.5-.498.276%200%20.5.222.5.498v.547h1V7.5H6v-.955zm-1.5-.037A.51.51%200%200%201%205%206a.5.5%200%200%201%20.5.508V7.5h-1v-.992z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ki{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E62B3F'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFDA57'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%230752A2'%20offset='0%25'/%3e%3cstop%20stop-color='%23034285'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v8H0z'/%3e%3ccircle%20fill='url(%23c)'%20cx='10.5'%20cy='8.5'%20r='2.5'/%3e%3cpath%20d='M10.5%2012.035l-1.224%201.827-.31-2.177L7.071%2012.8l.665-2.096-2.191.182%201.508-1.6L5%208.5l2.053-.787-1.508-1.6%202.191.183L7.071%204.2l1.895%201.115.31-2.177L10.5%204.965l1.224-1.827.31%202.177L13.929%204.2l-.665%202.096%202.191-.182-1.508%201.6L16%208.5l-2.053.787%201.508%201.6-2.191-.183.665%202.096-1.895-1.115-.31%202.177-1.224-1.827zm0-.035a3.5%203.5%200%201%200%200-7%203.5%203.5%200%200%200%200%207zM8.86%202.403l-.047-.234.982-.164s-1.318-.311-1.753-.467c-.625-.224-.538-.398-.538-.398s1.785.35%202.665.35c.188%200%20.561.468.561.468s.649-.655.959-.677C13.095%201.178%2014.61%201%2014.61%201s-.44.294-.702.374c-.711.216-2.22.514-2.22.514l-.21.328h1.495l-.63.187.326.304s-.343-.178-.794-.094c-.31.058-.673.265-1.006.35-.818.211-1.309-.56-1.309-.56h-.7z'%20fill='url(%23c)'/%3e%3cpath%20fill='url(%23d)'%20d='M0%208h21v7H0z'/%3e%3cpath%20d='M23.322%2012.933l.474.159-.316.948-.474-.158-.47-.156-2.062-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688-.475.158-.316-.949.474-.158%202.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687.469.156zm0-2.5l.474.159-.316.948-.474-.158-.47-.156-2.062-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688-.475.158-.316-.949.474-.158%202.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687.469.156zm0-2.5l.474.159-.316.948-.474-.158-.47-.156-2.062-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688-.475.158L-1%207.935l.474-.158%202.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687.469.156z'%20fill='%23FFF'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ki.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E62B3F'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFDA57'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%230752A2'%20offset='0%25'/%3e%3cstop%20stop-color='%23034285'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M-4%200h21v8H-4z'/%3e%3ccircle%20fill='url(%23e)'%20mask='url(%23d)'%20cx='7.5'%20cy='8.5'%20r='2.5'/%3e%3cpath%20d='M7.5%2012.035l-1.224%201.827-.31-2.177L4.071%2012.8l.665-2.096-2.191.182%201.508-1.6L2%208.5l2.053-.787-1.508-1.6%202.191.183L4.071%204.2l1.895%201.115.31-2.177L7.5%204.965l1.224-1.827.31%202.177L10.929%204.2l-.665%202.096%202.191-.182-1.508%201.6L13%208.5l-2.053.787%201.508%201.6-2.191-.183.665%202.096-1.895-1.115-.31%202.177L7.5%2012.035zm0-.035a3.5%203.5%200%201%200%200-7%203.5%203.5%200%200%200%200%207zM5.86%202.403l-.047-.234.982-.164s-1.318-.311-1.753-.467c-.625-.224-.538-.398-.538-.398s1.785.35%202.665.35c.188%200%20.561.468.561.468s.649-.655.959-.677C10.095%201.178%2011.61%201%2011.61%201s-.44.294-.702.374c-.711.216-2.22.514-2.22.514l-.21.328h1.495l-.63.187.326.304s-.343-.178-.794-.094c-.31.058-.673.265-1.006.35-.818.211-1.309-.56-1.309-.56h-.7z'%20fill='url(%23e)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23d)'%20d='M-4%208h21v7H-4z'/%3e%3cpath%20d='M19.322%2012.933l.474.159-.316.948-.474-.158-.47-.156-2.062-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688-.475.158-.316-.949.474-.158%202.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687.469.156zm0-2.5l.474.159-.316.948-.474-.158-.47-.156-2.062-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688-.475.158-.316-.949.474-.158%202.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687.469.156zm0-2.5l.474.159-.316.948-.474-.158-.47-.156-2.062-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688c-.36.12-.897.119-1.254%200l-2.063-.688a1.278%201.278%200%200%200-.62%200l-2.063.688-.475.158L-5%207.935l.474-.158%202.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687c.153.051.467.051.621%200l2.063-.687c.357-.12.894-.12%201.254%200l2.062.687.469.156z'%20fill='%23FFF'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.km{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFCB49'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFC638'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DC1D34'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%234985D4'%20offset='0%25'/%3e%3cstop%20stop-color='%233D77C2'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%234BA343'%20offset='0%25'/%3e%3cstop%20stop-color='%23408D39'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%207h21v4H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%204h21v3H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%2015l10-7.5L0%200z'/%3e%3cpath%20d='M4.75%204.595a3%203%200%201%200%200%205.811%203.001%203.001%200%200%201%200-5.811zM5.5%206a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.km.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFCB49'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFC638'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DC1D34'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%234985D4'%20offset='0%25'/%3e%3cstop%20stop-color='%233D77C2'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%234BA343'%20offset='0%25'/%3e%3cstop%20stop-color='%23408D39'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%207h15v4H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2011h15v4H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%204h15v3H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%2015l7-7.5L0%200z'/%3e%3cpath%20d='M3.25%205.063c-.73-.208-1.498.11-1.928.795a2.183%202.183%200%200%200%200%202.284c.43.686%201.199%201.003%201.928.795C2.454%208.709%201.899%207.912%201.899%207c0-.912.555-1.709%201.35-1.937zM3.7%206c-.166%200-.3-.15-.3-.334%200-.184.134-.333.3-.333.166%200%20.3.15.3.333C4%205.85%203.866%206%203.7%206zm0%201.333c-.166%200-.3-.15-.3-.333%200-.184.134-.334.3-.334.166%200%20.3.15.3.334%200%20.184-.134.333-.3.333zm0%201.333c-.166%200-.3-.149-.3-.333%200-.184.134-.333.3-.333.166%200%20.3.149.3.333%200%20.184-.134.333-.3.333z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.kn{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231EC160'%20offset='0%25'/%3e%3cstop%20stop-color='%23169E4D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DF2A40'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='16.742%25'%20x2='50%25'%20y2='82.422%25'%20id='d'%3e%3cstop%20stop-color='%23FFD956'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M.001%2010l21-10h-21z'/%3e%3cpath%20fill='url(%23c)'%20d='M.001%2015h21V5z'/%3e%3cpath%20fill='url(%23d)'%20d='M.59%2019L25.182%203.632%2020.413-4-4.18%2011.368z'/%3e%3cpath%20fill='url(%23e)'%20d='M-.47%2017.304L24.122%201.936l-2.65-4.24L-3.12%2013.064z'/%3e%3cpath%20fill='url(%23a)'%20d='M15.233%205.848l-.709%201.123-.46-1.246-1.287-.327%201.043-.823-.087-1.325%201.105.738%201.234-.492-.36%201.278.848%201.022zm-8%204.85l-.709%201.123-.46-1.246-1.287-.327%201.043-.823L5.733%208.1l1.105.738%201.234-.492-.36%201.278.848%201.022z'/%3e%3c/g%3e%3c/svg%3e")}.kn.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231EC160'%20offset='0%25'/%3e%3cstop%20stop-color='%23169E4D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23DF2A40'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='16.742%25'%20x2='50%25'%20y2='82.422%25'%20id='f'%3e%3cstop%20stop-color='%23FFD956'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M-.999%2010l21-10h-21z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M-.999%2015h21V5z'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23d)'%20d='M-.41%2019L24.182%203.632%2019.413-4-5.18%2011.368z'/%3e%3cpath%20fill='url(%23g)'%20mask='url(%23d)'%20d='M-1.47%2017.304L23.122%201.936l-2.65-4.24L-4.12%2013.064z'/%3e%3cpath%20d='M11.099%206.819l-.481.786-.313-.872-.873-.23.708-.575L10.08%205l.75.517.839-.345-.245.895.576.715-.901.037zm-5.432%203.395l-.48.786-.313-.872L4%209.898l.708-.575-.059-.928.75.517.838-.345-.244.895.575.715-.9.037z'%20fill='url(%23b)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.kp{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231461B6'%20offset='0%25'/%3e%3cstop%20stop-color='%230B52A1'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F53846'%20offset='0%25'/%3e%3cstop%20stop-color='%23EB2130'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v3H0zm0%2012h21v3H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h21v9H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h21v7H0z'/%3e%3cpath%20d='M7.5%2010a2.5%202.5%200%201%201%200-5%202.5%202.5%200%200%201%200%205zm0-1.497l1.47%201.02-.516-1.713%201.424-1.083-1.788-.039L7.5%205l-.59%201.688-1.788.04L6.546%207.81%206.03%209.523l1.47-1.02z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.kp.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%231461B6'%20offset='0%25'/%3e%3cstop%20stop-color='%230B52A1'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F53846'%20offset='0%25'/%3e%3cstop%20stop-color='%23EB2130'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%200h15v3H0V0zm0%2012h15v3H0v-3z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%203h15v9H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h15v7H0z'/%3e%3cpath%20d='M7.5%2010a2.5%202.5%200%201%201%200-5%202.5%202.5%200%200%201%200%205zm0-1.497l1.47%201.02-.516-1.713%201.424-1.083-1.788-.039L7.5%205l-.59%201.688-1.788.04L6.546%207.81%206.03%209.523l1.47-1.02z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.kr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E01B41'%20offset='0%25'/%3e%3cstop%20stop-color='%23C51335'%20offset='100%25'/%3e%3c/linearGradient%3e%3ccircle%20id='b'%20cx='3.5'%20cy='3.5'%20r='3.5'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%230E4B9C'%20offset='0%25'/%3e%3cstop%20stop-color='%23053677'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cg%20transform='translate(7%204)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23b'/%3e%3c/mask%3e%3cuse%20fill='url(%23c)'%20xlink:href='%23b'/%3e%3cpath%20d='M0%204c1%20.937%202.5%201.5%203.5%200s3-1.5%203.5%200%200%203%200%203H0s-1-3.937%200-3z'%20fill='url(%23d)'%20mask='url(%23e)'/%3e%3c/g%3e%3cpath%20d='M14.208%203.922a.25.25%200%200%201%20.09-.347l.43-.248a.254.254%200%200%201%20.346.095l1.244%202.156a.25.25%200%200%201-.09.347l-.43.248a.254.254%200%200%201-.346-.095l-1.244-2.156zm1.3-.75a.25.25%200%200%201%20.09-.347l.429-.248a.254.254%200%200%201%20.346.095l1.244%202.156a.25.25%200%200%201-.09.347l-.43.248a.254.254%200%200%201-.346-.095l-1.244-2.156zm-12.125%207a.25.25%200%200%201%20.09-.347l.43-.248a.254.254%200%200%201%20.346.095l1.244%202.156a.25.25%200%200%201-.09.347l-.43.248a.254.254%200%200%201-.346-.095l-1.244-2.156zm1.299-.75a.25.25%200%200%201%20.09-.347l.43-.248a.254.254%200%200%201%20.346.095l1.244%202.156a.25.25%200%200%201-.09.347l-.43.248a.254.254%200%200%201-.346-.095L4.682%209.422zm10.77-.5a.25.25%200%200%201%20.347-.095l.429.248c.12.07.161.225.09.347l-1.244%202.156a.25.25%200%200%201-.346.095l-.43-.248a.254.254%200%200%201-.09-.347l1.244-2.156zm1.3.75a.25.25%200%200%201%20.346-.095l.429.248c.12.07.161.225.09.347l-1.244%202.156a.25.25%200%200%201-.346.095l-.43-.248a.254.254%200%200%201-.09-.347l1.244-2.156zm-12.125-7a.25.25%200%200%201%20.346-.095l.43.248c.12.07.16.225.09.347L4.249%205.328a.25.25%200%200%201-.347.095l-.429-.248a.254.254%200%200%201-.09-.347l1.244-2.156zm1.299.75a.25.25%200%200%201%20.346-.095l.43.248c.12.07.16.225.09.347L5.548%206.078a.25.25%200%200%201-.347.095l-.429-.248a.254.254%200%200%201-.09-.347l1.244-2.156z'%20fill='url(%23f)'%20opacity='.75'/%3e%3c/g%3e%3c/svg%3e")}.kr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E01B41'%20offset='0%25'/%3e%3cstop%20stop-color='%23C51335'%20offset='100%25'/%3e%3c/linearGradient%3e%3cellipse%20id='c'%20cx='2.567'%20cy='2.545'%20rx='2.567'%20ry='2.545'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%230E4B9C'%20offset='0%25'/%3e%3cstop%20stop-color='%23053677'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cellipse%20cx='2.567'%20cy='2.545'%20rx='2.567'%20ry='2.545'%20fill='url(%23b)'%20transform='translate(4.933%205.455)'/%3e%3cg%20transform='translate(4.933%205.455)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3cpath%20d='M0%202.91c.733.68%201.833%201.09%202.567%200%20.733-1.092%202.2-1.092%202.566%200%20.367%201.09%200%202.18%200%202.18H0s-.733-2.862%200-2.18z'%20fill='url(%23d)'%20mask='url(%23e)'/%3e%3c/g%3e%3cpath%20d='M8.22%201.398a.18.18%200%200%201%20.065-.253l.316-.18a.186.186%200%200%201%20.253.07l.913%201.567a.18.18%200%200%201-.066.253l-.316.18a.187.187%200%200%201-.254-.07L8.22%201.399zm.953-.546A.18.18%200%200%201%209.239.6l.314-.18c.09-.05.203-.02.254.069l.912%201.568a.18.18%200%200%201-.066.252l-.315.18a.187.187%200%200%201-.254-.069L9.172.852zM.28%205.943a.18.18%200%200%201%20.066-.252l.315-.18c.09-.05.203-.02.254.069l.912%201.568a.18.18%200%200%201-.066.252l-.315.18a.187.187%200%200%201-.254-.069L.281%205.943zm.952-.545a.18.18%200%200%201%20.066-.253l.316-.18c.09-.05.203-.02.254.07l.912%201.567a.18.18%200%200%201-.066.253l-.316.18a.187.187%200%200%201-.253-.07l-.913-1.567zm7.898-.364a.183.183%200%200%201%20.255-.069l.315.18a.184.184%200%200%201%20.066.253l-.913%201.568a.183.183%200%200%201-.253.069l-.316-.18a.184.184%200%200%201-.066-.253l.912-1.568zm.954.546a.183.183%200%200%201%20.254-.07l.314.18a.185.185%200%200%201%20.066.253l-.912%201.568a.183.183%200%200%201-.254.07L9.238%207.4a.184.184%200%200%201-.066-.252l.912-1.568zM1.193.489a.183.183%200%200%201%20.254-.07L1.762.6c.088.05.118.164.066.252L.916%202.42a.183.183%200%200%201-.255.07l-.314-.18a.184.184%200%200%201-.066-.253L1.193.489zm.953.545a.183.183%200%200%201%20.253-.069l.316.18a.185.185%200%200%201%20.066.253l-.912%201.568a.183.183%200%200%201-.255.069l-.315-.18a.184.184%200%200%201-.066-.253l.913-1.568z'%20fill='url(%23f)'%20fill-rule='nonzero'%20opacity='.75'%20transform='translate(2%204)'/%3e%3c/g%3e%3c/svg%3e")}.kw{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23D72238'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23169A53'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7A40'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l7%205v5l-7%205z'/%3e%3c/g%3e%3c/svg%3e")}.kw.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23D72238'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23169A53'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7A40'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l5%205v5l-5%205z'/%3e%3c/g%3e%3c/svg%3e")}.ky{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%203.5V0h5v3.5C5%206%202.5%207%202.5%207S0%206%200%203.5z'%20id='d'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23125FBA'%20offset='0%25'/%3e%3cstop%20stop-color='%230C50A1'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23c)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cellipse%20fill='%23FAD051'%20cx='15.5'%20cy='4'%20rx='1.5'%20ry='1'/%3e%3cg%20transform='translate(13%204)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23d'/%3e%3cpath%20fill='%23CF142C'%20mask='url(%23e)'%20d='M0%200h5v1H0z'/%3e%3cpath%20d='M0%206h5v1H0V6zm0-2h5v1H0V4zm0-2h5v1H0V2z'%20fill='url(%23f)'%20mask='url(%23e)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ky.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.188V0h3.333v2.188c0%201.562-1.666%202.187-1.666%202.187S0%203.75%200%202.187z'%20id='e'/%3e%3cpath%20d='M0%202.188V0h3.333v2.188c0%201.562-1.666%202.187-1.666%202.187S0%203.75%200%202.187z'%20id='g'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%23125FBA'%20offset='0%25'/%3e%3cstop%20stop-color='%230C50A1'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='j'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cg%20transform='translate(9.65%209)'%3e%3cpath%20d='M0%202.188V0h3.333v2.188c0%201.562-1.666%202.187-1.666%202.187S0%203.75%200%202.187z'%20fill='url(%23d)'%20transform='translate(0%20.625)'/%3e%3cellipse%20fill='%23FAD051'%20cx='1.667'%20cy='.625'%20rx='1'%20ry='1'/%3e%3cg%20transform='translate(0%20.625)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cpath%20fill='%23CF142C'%20mask='url(%23f)'%20d='M0%200h3.333v.625H0z'/%3e%3c/g%3e%3cg%20transform='translate(0%20.625)'%3e%3cmask%20id='i'%20fill='%23fff'%3e%3cuse%20xlink:href='%23g'/%3e%3c/mask%3e%3cpath%20d='M0%203.75h3.333v.625H0V3.75zM0%202.5h3.333v.625H0V2.5zm0-1.25h3.333v.625H0V1.25z'%20fill='url(%23h)'%20fill-rule='nonzero'%20mask='url(%23i)'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M5%204.23L.648.5H2.66L6.16%203h.697L11.5.098V1.25c0%20.303-.167.627-.418.806L8%204.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L6.84%206h-.697L1.5%208.902v-1.66l3.5-2.5V4.23z'%20fill='url(%23d)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M5.5%204L2%201h.5L6%203.5h1L11%201v.25a.537.537%200%200%201-.208.399L7.5%204v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L7%205.5H6L2%208v-.5L5.5%205V4z'%20fill='url(%23j)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M2%203.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V5.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H7.5V1h-2v2.5H2z'%20fill='url(%23d)'%20transform='translate(-2%20-1)'/%3e%3cpath%20fill='url(%23j)'%20d='M2%204h4V1h1v3h4v1H7v3H6V5H2z'%20transform='translate(-2%20-1)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.kz{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2330C6E0'%20offset='0%25'/%3e%3cstop%20stop-color='%231CB0C9'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFCD4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC531'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3ccircle%20fill='url(%23c)'%20cx='10.5'%20cy='7.5'%20r='3'/%3e%3cpath%20d='M10.5%2011.035l-1.224%201.827-.31-2.177L7.071%2011.8l.665-2.096-2.191.182%201.508-1.6L5%207.5l2.053-.787-1.508-1.6%202.191.183L7.071%203.2l1.895%201.115.31-2.177L10.5%203.965l1.224-1.827.31%202.177L13.929%203.2l-.665%202.096%202.191-.182-1.508%201.6L16%207.5l-2.053.787%201.508%201.6-2.191-.183.665%202.096-1.895-1.115-.31%202.177-1.224-1.827zm0-.035a3.5%203.5%200%201%200%200-7%203.5%203.5%200%200%200%200%207zM1%201.252C1%201.113%201.107%201%201.252%201h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%201.748%202h-.496A.249.249%200%200%201%201%201.748v-.496zm0%202C1%203.113%201.107%203%201.252%203h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%201.748%204h-.496A.249.249%200%200%201%201%203.748v-.496zm0%202C1%205.113%201.107%205%201.252%205h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%201.748%206h-.496A.249.249%200%200%201%201%205.748v-.496zm0%202C1%207.113%201.107%207%201.252%207h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%201.748%208h-.496A.249.249%200%200%201%201%207.748v-.496zm0%202C1%209.113%201.107%209%201.252%209h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%201%209.748v-.496zm0%202c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%201%2011.748v-.496zm0%202c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%201%2013.748v-.496zm1-1c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%202%2012.748v-.496zm0-2c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%202%2010.748v-.496zm0-2C2%208.113%202.107%208%202.252%208h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%202.748%209h-.496A.249.249%200%200%201%202%208.748v-.496zm0-2C2%206.113%202.107%206%202.252%206h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%202.748%207h-.496A.249.249%200%200%201%202%206.748v-.496zm0-2C2%204.113%202.107%204%202.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%202.748%205h-.496A.249.249%200%200%201%202%204.748v-.496zm0-2C2%202.113%202.107%202%202.252%202h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%202.748%203h-.496A.249.249%200%200%201%202%202.748v-.496z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.kz.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2330C6E0'%20offset='0%25'/%3e%3cstop%20stop-color='%231CB0C9'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFCD4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC531'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M1%201.252C1%201.113%201.107%201%201.252%201h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%201.748%202h-.496A.249.249%200%200%201%201%201.748v-.496zm0%202C1%203.113%201.107%203%201.252%203h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%201.748%204h-.496A.249.249%200%200%201%201%203.748v-.496zm0%202C1%205.113%201.107%205%201.252%205h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%201.748%206h-.496A.249.249%200%200%201%201%205.748v-.496zm0%202C1%207.113%201.107%207%201.252%207h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%201.748%208h-.496A.249.249%200%200%201%201%207.748v-.496zm0%202C1%209.113%201.107%209%201.252%209h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%201%209.748v-.496zm0%202c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%201%2011.748v-.496zm0%202c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%201%2013.748v-.496zm1-1c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%202%2012.748v-.496zm0-2c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%202%2010.748v-.496zm0-2C2%208.113%202.107%208%202.252%208h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%202.748%209h-.496A.249.249%200%200%201%202%208.748v-.496zm0-2C2%206.113%202.107%206%202.252%206h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%202.748%207h-.496A.249.249%200%200%201%202%206.748v-.496zm0-2C2%204.113%202.107%204%202.252%204h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%202.748%205h-.496A.249.249%200%200%201%202%204.748v-.496zm0-2C2%202.113%202.107%202%202.252%202h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%202.748%203h-.496A.249.249%200%200%201%202%202.748v-.496z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cg%20transform='translate(5%204)'%20fill='url(%23b)'%3e%3ccircle%20cx='4'%20cy='4'%20r='2.182'/%3e%3cpath%20d='M4%206.57L3.11%207.9l-.226-1.584-1.378.811.484-1.524-1.594.132%201.097-1.163L0%204l1.493-.572L.396%202.264l1.594.133L1.506.873l1.378.81L3.11.1%204%201.43%204.89.1l.226%201.584L6.494.873%206.01%202.397l1.594-.132-1.097%201.163L8%204l-1.493.572%201.097%201.164-1.594-.133.484%201.524-1.378-.81L4.89%207.9%204%206.57zm0-.025a2.545%202.545%200%201%200%200-5.09%202.545%202.545%200%200%200%200%205.09z'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.la{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23073A88'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E2273E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%204h21v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v4H0zm0%2011h21v4H0z'/%3e%3ccircle%20fill='url(%23a)'%20cx='10.5'%20cy='7.5'%20r='2.5'/%3e%3c/g%3e%3c/svg%3e")}.la.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23073A88'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E2273E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%204h15v7H0z'/%3e%3cpath%20d='M0%200h15v4H0V0zm0%2011h15v4H0v-4z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3ccircle%20fill='url(%23a)'%20cx='7.5'%20cy='7.5'%20r='2.5'/%3e%3c/g%3e%3c/svg%3e")}.lb{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F03340'%20offset='0%25'/%3e%3cstop%20stop-color='%23EB212E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231FC065'%20offset='0%25'/%3e%3cstop%20stop-color='%2317A555'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v4H0zm0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%204h21v7H0z'/%3e%3cpath%20d='M9.65%209.35a.497.497%200%200%200-.003-.703l.206.206a.972.972%200%200%200-.837-.232l-1.032.258c-.267.067-.3-.017-.08-.183l1.191-.892c.224-.168.184-.304-.103-.304h-.484c-.28%200-.309-.1-.064-.222l1.112-.556c.245-.123.223-.222-.064-.222h-.484c-.28%200-.323-.138-.103-.304l1.19-.892a.719.719%200%200%201%20.81%200l1.19.892c.224.168.184.304-.103.304h-.484c-.28%200-.309.1-.064.222l1.112.556c.245.123.223.222-.064.222h-.484c-.28%200-.323.138-.103.304l1.19.892c.224.168.191.25-.08.183l-1.03-.258a.977.977%200%200%200-.838.232l.206-.206a.496.496%200%200%200-.003.703l.3.3c.193.193.134.35-.145.35h-2.01c-.273%200-.339-.156-.145-.35l.3-.3z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.lb.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23F03340'%20offset='0%25'/%3e%3cstop%20stop-color='%23EB212E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231FC065'%20offset='0%25'/%3e%3cstop%20stop-color='%2317A555'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%200h15v4H0V0zm0%2011h15v4H0v-4z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%204h15v7H0z'/%3e%3cpath%20d='M6.891%209.17a.497.497%200%200%200-.003-.702l.206.206a.972.972%200%200%200-.837-.232L5.225%208.7c-.267.067-.3-.017-.08-.183l1.191-.892c.224-.168.184-.304-.103-.304H5.75c-.28%200-.309-.1-.064-.222l1.112-.556c.245-.123.223-.222-.064-.222H6.25c-.28%200-.323-.138-.103-.304l1.19-.892a.719.719%200%200%201%20.81%200l1.19.892c.224.168.184.304-.103.304H8.75c-.28%200-.309.1-.064.222l1.112.556c.245.123.223.222-.064.222H9.25c-.28%200-.323.138-.103.304l1.19.892c.224.168.191.25-.08.183l-1.03-.258a.977.977%200%200%200-.838.232l.206-.206a.496.496%200%200%200-.003.703l.3.3c.193.193.134.35-.145.35h-2.01c-.273%200-.339-.156-.145-.35l.3-.3z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.lc{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2386D7FF'%20offset='0%25'/%3e%3cstop%20stop-color='%236BCDFE'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFDA57'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M10.5%202L15%2013H6z'/%3e%3cpath%20fill='url(%23c)'%20d='M10.5%204l3.5%209H7z'/%3e%3cpath%20fill='url(%23d)'%20d='M10.5%207l4.5%206H6z'/%3e%3c/g%3e%3c/svg%3e")}.lc.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2386D7FF'%20offset='0%25'/%3e%3cstop%20stop-color='%236BCDFE'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFDA57'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M4.5%200L9%2011H0z'%20transform='translate(3%202)'/%3e%3cpath%20fill='url(%23c)'%20d='M4.5%202L8%2011H1z'%20transform='translate(3%202)'/%3e%3cpath%20fill='url(%23d)'%20d='M4.5%205L9%2011H0z'%20transform='translate(3%202)'/%3e%3c/g%3e%3c/svg%3e")}.lgbt{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F71E24'%20offset='0%25'/%3e%3cstop%20stop-color='%23FB141B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FB6C2C'%20offset='0%25'/%3e%3cstop%20stop-color='%23FC6420'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FDFC42'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFFD38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23238F35'%20offset='0%25'/%3e%3cstop%20stop-color='%231C7E2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%230F62FA'%20offset='0%25'/%3e%3cstop%20stop-color='%230059FC'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23820E95'%20offset='0%25'/%3e%3cstop%20stop-color='%23760089'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v2.5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%202.5h21V5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h21v2.5H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%207.5h21V10H0z'/%3e%3cpath%20fill='url(%23f)'%20d='M0%2010h21v2.5H0z'/%3e%3cpath%20fill='url(%23g)'%20d='M0%2012.5h21V15H0z'/%3e%3c/g%3e%3c/svg%3e")}.lgbt.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F71E24'%20offset='0%25'/%3e%3cstop%20stop-color='%23FB141B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FB6C2C'%20offset='0%25'/%3e%3cstop%20stop-color='%23FC6420'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FDFC42'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFFD38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23238F35'%20offset='0%25'/%3e%3cstop%20stop-color='%231C7E2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%230F62FA'%20offset='0%25'/%3e%3cstop%20stop-color='%230059FC'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23820E95'%20offset='0%25'/%3e%3cstop%20stop-color='%23760089'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v2.5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%202.5h15V5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h15v2.5H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%207.5h15V10H0z'/%3e%3cpath%20fill='url(%23f)'%20d='M0%2010h15v2.5H0z'/%3e%3cpath%20fill='url(%23g)'%20d='M0%2012.5h15V15H0z'/%3e%3c/g%3e%3c/svg%3e")}.li{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A3B97'%20offset='0%25'/%3e%3cstop%20stop-color='%23042E7D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E6273E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h21v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.li.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A3B97'%20offset='0%25'/%3e%3cstop%20stop-color='%23042E7D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E6273E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h15v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.lk{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFBF19'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFB800'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23A52531'%20offset='0%25'/%3e%3cstop%20stop-color='%238E1F29'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%2303664F'%20offset='0%25'/%3e%3cstop%20stop-color='%23005642'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FF6816'%20offset='0%25'/%3e%3cstop%20stop-color='%23FF5B01'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFBF18'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFB800'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M8%201h11.25a.75.75%200%200%201%20.75.755v11.49a.751.751%200%200%201-.75.755H8V1z'%20fill='url(%23c)'/%3e%3cpath%20d='M1%201.755A.76.76%200%200%201%201.757%201H4v13H1.757A.754.754%200%200%201%201%2013.245V1.755z'%20fill='url(%23d)'/%3e%3crect%20fill='url(%23e)'%20x='4'%20y='1'%20width='3'%20height='13'%20rx='.5'/%3e%3cpath%20d='M9.5%203a.5.5%200%200%201-.5-.5V2h.5a.5.5%200%200%201%200%201zm9%200a.5.5%200%201%201%200-1h.5v.5a.5.5%200%200%201-.5.5zm0%209a.5.5%200%200%201%20.5.5v.5h-.5a.5.5%200%201%201%200-1zm-9%200a.5.5%200%201%201%200%201H9v-.5a.5.5%200%200%201%20.5-.5zM12%209.5c0-.276-.227-.5-.5-.5h.5a3.04%203.04%200%200%201-.975-.185S10%208.5%2010%208c0-.5.203-.614.203-.614.164-.213.215-.588.112-.86%200%200-.415-.926-.315-1.526.1-.6.57-.749.57-.749.238-.139.43-.035.43.244v2.01c0%20.273.193.591.453.722l.094.046c.25.126.611.069.806-.126l-.206.206c.195-.195.16-.45-.1-.58L11.5%206.5V6h.5c.276%200%20.307-.096.047-.227L11.5%205.5V5h.5c.276%200%20.658-.158.853-.353l-.206.206c.195-.195.585-.353.853-.353.276%200%20.596.193.727.453l.046.094c.126.25.157.662.069.928l-.184.55c-.087.263.073.475.348.475h1.488c.28%200%20.664-.158.859-.353l-.206.206c.195-.195.16-.45-.1-.58l-.094-.046A2.566%202.566%200%200%200%2015.5%206a.505.505%200%200%201-.5-.5c0-.276.158-.658.353-.853L15.5%204.5V5c0%20.276.227.5.5.5h-.5%201c.276%200%20.596.193.727.453l.046.094c.126.25.247.673.264.947%200%200%20.069.476-.037%201.006-.106.53-.226.589-.226.589a1.898%201.898%200%200%200-.274.916v.99a.508.508%200%200%201-.5.505c-.276%200-.404-.193-.273-.453l.046-.094a1.12%201.12%200%200%200%200-.906l-.046-.094C16.1%209.203%2016%209.232%2016%209.5c0%20.276-.096.693-.227.953l-.046.094c-.126.25-.459.453-.727.453-.276%200-.404-.193-.273-.453l.046-.094c.126-.25.227-.685.227-.953%200-.276-.214-.5-.505-.5h-.99a.508.508%200%200%200-.505.5c0%20.276-.096.693-.227.953l-.046.094c-.126.25-.459.453-.727.453-.276%200-.404-.193-.273-.453l.046-.094c.126-.25.227-.685.227-.953z'%20fill='url(%23f)'/%3e%3c/g%3e%3c/svg%3e")}.lk.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFBF19'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFB800'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2303664F'%20offset='0%25'/%3e%3cstop%20stop-color='%23005642'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FF6816'%20offset='0%25'/%3e%3cstop%20stop-color='%23FF5B01'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23A52531'%20offset='0%25'/%3e%3cstop%20stop-color='%238E1F29'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFBF18'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFB800'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M1%201.755c.001-.417.14-.753.312-.755h.923v13h-.923c-.083%200-.162-.078-.22-.22A1.457%201.457%200%200%201%201%2013.245V1.755z'%20fill='url(%23b)'/%3e%3crect%20fill='url(%23c)'%20x='2'%20y='1'%20width='1'%20height='13'%20rx='.5'/%3e%3cpath%20d='M4%201h9.375a.58.58%200%200%201%20.443.221.834.834%200%200%201%20.182.534v11.49c0%20.2-.065.392-.182.533a.579.579%200%200%201-.443.222H4V1z'%20fill='url(%23d)'/%3e%3cpath%20d='M5.5%204a.5.5%200%200%201-.5-.5V3h.5a.5.5%200%200%201%200%201zm7%200a.5.5%200%201%201%200-1h.5v.5a.5.5%200%200%201-.5.5zm0%207a.5.5%200%200%201%20.5.5v.5h-.5a.5.5%200%201%201%200-1zm-7%200a.5.5%200%201%201%200%201H5v-.5a.5.5%200%200%201%20.5-.5zm2.097-1.322c0-.243-.18-.44-.397-.44h.397a2.195%202.195%200%200%201-.773-.163s-.812-.278-.812-.718c0-.44.161-.541.161-.541.13-.188.17-.518.089-.758%200%200-.329-.815-.25-1.344.08-.529.452-.66.452-.66.188-.122.34-.03.34.215v1.77c0%20.241.153.522.36.637l.074.04a.543.543%200%200%200%20.638-.11l-.163.18c.154-.17.127-.396-.08-.51l-.433-.24v-.441h.397c.218%200%20.243-.085.037-.2l-.434-.24v-.441h.397c.218%200%20.52-.14.675-.311l-.163.181c.155-.171.463-.31.676-.31.218%200%20.472.17.576.399l.036.082c.1.22.124.584.055.818l-.146.484c-.069.232.058.419.276.419h1.178c.222%200%20.526-.14.68-.311l-.162.181c.154-.171.126-.396-.08-.51l-.074-.041a1.866%201.866%200%200%200-.755-.2c-.218-.002-.394-.198-.396-.44%200-.244.125-.58.28-.752l.116-.13v.44c0%20.244.18.441.396.441h-.396.792c.219%200%20.472.17.576.4l.036.082c.1.22.196.593.21.835%200%200%20.054.419-.03.886-.084.467-.179.519-.179.519a1.811%201.811%200%200%200-.217.807v.872c-.001.244-.177.441-.396.445-.219%200-.32-.17-.216-.4l.036-.082a1.088%201.088%200%200%200%200-.798l-.036-.083c-.1-.22-.18-.195-.18.041%200%20.244-.076.611-.18.84l-.036.083c-.1.22-.364.399-.576.399-.219%200-.32-.17-.216-.4l.036-.082c.1-.22.18-.603.18-.84%200-.243-.17-.44-.4-.44h-.784c-.22.001-.397.197-.4.44%200%20.244-.076.611-.18.84l-.037.083c-.1.22-.363.399-.575.399-.22%200-.32-.17-.217-.4l.037-.082c.1-.22.18-.603.18-.84z'%20fill='url(%23e)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.lr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E1244A'%20offset='0%25'/%3e%3cstop%20stop-color='%23BE1134'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230C3F8E'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='e'%20d='M5%206.17L3.237%207.427l.65-2.065-1.74-1.29%202.165-.019L5%202l.688%202.053%202.165.02-1.74%201.289.65%202.065z'/%3e%3cfilter%20x='-4.2%25'%20y='-4.2%25'%20width='108.3%25'%20height='116.7%25'%20filterUnits='objectBoundingBox'%20id='d'%3e%3cfeOffset%20dy='.5'%20in='SourceAlpha'%20result='shadowOffsetOuter1'/%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.06%200'%20in='shadowOffsetOuter1'/%3e%3c/filter%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M10%200h11v2H10V0zm0%204h11v2H10V4zm0%204h11v2H10V8zM0%2012h21v2H0v-2z'%20fill='url(%23b)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h10v10H0z'/%3e%3cuse%20fill='%23000'%20filter='url(%23d)'%20xlink:href='%23e'/%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23e'/%3e%3c/g%3e%3c/svg%3e")}.lr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E1244A'%20offset='0%25'/%3e%3cstop%20stop-color='%23BE1134'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%230C3F8E'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20d='M10%200h11v2H10V0zm0%204h11v2H10V4zm0%204h11v2H10V8zM0%2012h21v2H0v-2z'%20fill='url(%23c)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%200h10v10H0z'/%3e%3cg%20mask='url(%23d)'%20fill='%23000'%3e%3cpath%20d='M5%206.17L3.237%207.427l.65-2.065-1.74-1.29%202.165-.019L5%202l.688%202.053%202.165.02-1.74%201.289.65%202.065z'/%3e%3c/g%3e%3cg%20mask='url(%23d)'%20fill='url(%23b)'%3e%3cpath%20d='M5%206.17L3.237%207.427l.65-2.065-1.74-1.29%202.165-.019L5%202l.688%202.053%202.165.02-1.74%201.289.65%202.065z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ls{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230C33B8'%20offset='0%25'/%3e%3cstop%20stop-color='%2305279D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231DB158'%20offset='0%25'/%3e%3cstop%20stop-color='%23149447'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M10%207.5l.342-1.025c.087-.263.228-.266.316%200L11%207.5l.861%201.291c.077.116.057.279-.055.356%200%200-.306.353-1.306.353s-1.306-.353-1.306-.353a.27.27%200%200%201-.055-.356L10%207.5z'%20fill='url(%23d)'/%3e%3cpath%20d='M10.5%207.5a1%201%200%201%201%200-2%201%201%200%200%201%200%202zm0%200c.276%200%20.5-.724.5-1a.5.5%200%201%200-1%200c0%20.276.224%201%20.5%201z'%20fill='%23242424'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ls.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230C33B8'%20offset='0%25'/%3e%3cstop%20stop-color='%2305279D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DB158'%20offset='0%25'/%3e%3cstop%20stop-color='%23149447'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20d='M1%202.5l.342-1.025c.087-.263.228-.266.316%200L2%202.5l.861%201.291c.077.116.057.279-.055.356%200%200-.306.353-1.306.353S.194%204.147.194%204.147a.27.27%200%200%201-.055-.356L1%202.5z'%20fill='url(%23d)'%20transform='translate(6%205)'/%3e%3cpath%20d='M7.5%207.5a1%201%200%201%201%200-2%201%201%200%200%201%200%202zm0%200c.276%200%20.5-.724.5-1a.5.5%200%200%200-1%200c0%20.276.224%201%20.5%201z'%20fill='%23242424'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.lt{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23118357'%20offset='0%25'/%3e%3cstop%20stop-color='%230B6A45'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23D8343D'%20offset='0%25'/%3e%3cstop%20stop-color='%23C02A32'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FEC34B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCB931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.lt.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23118357'%20offset='0%25'/%3e%3cstop%20stop-color='%230B6A45'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23D8343D'%20offset='0%25'/%3e%3cstop%20stop-color='%23C02A32'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FEC34B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCB931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.lu{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F14455'%20offset='0%25'/%3e%3cstop%20stop-color='%23EB2D3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2329B4EE'%20offset='0%25'/%3e%3cstop%20stop-color='%231AA3DC'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.lu.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F14455'%20offset='0%25'/%3e%3cstop%20stop-color='%23EB2D3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2329B4EE'%20offset='0%25'/%3e%3cstop%20stop-color='%231AA3DC'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.lv{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23B9414B'%20offset='0%25'/%3e%3cstop%20stop-color='%239D323B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v6H0zm0%209h21v6H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%206h21v3H0z'/%3e%3c/g%3e%3c/svg%3e")}.lv.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23B9414B'%20offset='0%25'/%3e%3cstop%20stop-color='%239D323B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h15v6H0V0zm0%209h15v6H0V9z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M0%206h15v3H0z'/%3e%3c/g%3e%3c/svg%3e")}.ly{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2334B857'%20offset='0%25'/%3e%3cstop%20stop-color='%232B9E4A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F41F34'%20offset='0%25'/%3e%3cstop%20stop-color='%23E60B21'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h21v5H0z'/%3e%3cpath%20d='M11.334%206.253a1.25%201.25%200%201%200%200%202.495%201.5%201.5%200%201%201%200-2.495zM11.5%208a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.ly.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2334B857'%20offset='0%25'/%3e%3cstop%20stop-color='%232B9E4A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F41F34'%20offset='0%25'/%3e%3cstop%20stop-color='%23E60B21'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v5H0z'/%3e%3cpath%20d='M8.333%206.253a1.25%201.25%200%201%200%200%202.495%201.5%201.5%200%201%201%200-2.495zM8.499%208a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ma{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E33B44'%20offset='0%25'/%3e%3cstop%20stop-color='%23C02A32'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M10.5%209.255l-2.645%201.886.976-3.099L6.22%206.11l3.247-.029L10.5%203l1.032%203.08%203.248.03-2.61%201.932.975%203.099L10.5%209.255zm0-1.228l.794.566-.293-.93.784-.58-.975-.01-.31-.924-.31.925-.975.008.784.58-.293.931.794-.566z'%20fill='%230A6135'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ma.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E33B44'%20offset='0%25'/%3e%3cstop%20stop-color='%23C02A32'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M7.5%209.915L4.719%2012l1.026-3.426L3%206.438l3.414-.032L7.5%203l1.085%203.405L12%206.438%209.256%208.574%2010.28%2012%207.5%209.915zm0-1.358l.835.626-.308-1.028.824-.641-1.025-.011L7.5%206.48l-.326%201.023-1.025.009.824.64-.308%201.03.835-.626z'%20fill='%230A6135'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.mc{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EA233B'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%208h21v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.mc.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EA233B'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%208h15v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.md{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EB1C43'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1134'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23115BCB'%20offset='0%25'/%3e%3cstop%20stop-color='%23094AAC'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFD953'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFD130'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='e'%20d='M7%200h7v15H7z'/%3e%3cfilter%20x='-10.7%25'%20y='-5%25'%20width='121.4%25'%20height='110%25'%20filterUnits='objectBoundingBox'%20id='d'%3e%3cfeMorphology%20radius='.25'%20operator='dilate'%20in='SourceAlpha'%20result='shadowSpreadOuter1'/%3e%3cfeOffset%20in='shadowSpreadOuter1'%20result='shadowOffsetOuter1'/%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.06%200'%20in='shadowOffsetOuter1'/%3e%3c/filter%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cuse%20fill='%23000'%20filter='url(%23d)'%20xlink:href='%23e'/%3e%3cuse%20fill='url(%23f)'%20xlink:href='%23e'/%3e%3cpath%20d='M9%206h1l.5-1.5L11%206h1v3l-1.5%201L9%209V6zm1%201v1.5h1V7h-1z'%20fill='%23AF7F59'/%3e%3c/g%3e%3c/svg%3e")}.md.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23EB1C43'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1134'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23115BCB'%20offset='0%25'/%3e%3cstop%20stop-color='%23094AAC'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD953'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFD130'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M5%200h5v15H5z'/%3e%3cpath%20d='M6%206.5h1L7.5%205%208%206.5h1v3l-1.5%201-1.5-1v-3zm1%201V9h1V7.5H7z'%20fill='%23AF7F59'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.me{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E6BE53'%20offset='0%25'/%3e%3cstop%20stop-color='%23D3AD46'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E01826'%20offset='0%25'/%3e%3cstop%20stop-color='%23C30A17'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3crect%20fill='url(%23c)'%20x='1'%20y='1'%20width='19'%20height='13'%20rx='.75'/%3e%3cpath%20d='M10.147%205.147a.5.5%200%200%200%20.706%200l-.206.206L11.65%204.35a.729.729%200%200%201%20.803-.123l.094.046c.25.126.295.385.1.58l.206-.206L11.85%205.65a.729.729%200%200%200-.123.803l.046.094c.126.25.227.68.227.953V7c0%20.276.193.404.453.273l.094-.046c.25-.126.295-.385.1-.58l.206.206a.499.499%200%200%201%200-.706l-.206.206a3.64%203.64%200%200%200%20.58-.806l.046-.094c.126-.25.28-.667.348-.937l.258-1.032c.067-.267.26-.3.425-.08l.892%201.191c.168.224.304.619.304.91v.99c0%20.279-.096.698-.227.958l-.046.094a3.69%203.69%200%200%201-.577.803l-.3.3a3.62%203.62%200%200%201-.803.577l-.094.046c-.25.126-.685.227-.953.227-.276%200-.307.096-.047.227l.094.046c.25.126.611.385.806.58l-.206-.206a.5.5%200%200%200%20.706%200l-.206.206a.499.499%200%200%201%20.706%200l-.206-.206a.732.732%200%200%201%20.126.806l-.046.094c-.126.25-.459.453-.727.453a2.48%202.48%200%200%201-.953-.227l-.094-.046a1.74%201.74%200%200%201-.68-.68l-.046-.094c-.126-.25-.385-.295-.58-.1l.206-.206a.63.63%200%200%200-.08.763l.454.68c.15.226.09.533-.137.683l-.68.454a.8.8%200%200%201-.82%200l-.68-.454a.493.493%200%200%201-.137-.683l.454-.68a.63.63%200%200%200-.08-.763l.206.206c-.195-.195-.45-.16-.58.1l-.046.094c-.126.25-.42.55-.68.68l-.094.046c-.25.126-.685.227-.953.227a.876.876%200%200%201-.727-.453l-.046-.094a.744.744%200%200%201%20.126-.806l-.206.206a.499.499%200%200%201%20.706%200l-.206-.206a.5.5%200%200%200%20.706%200l-.206.206a3.64%203.64%200%200%201%20.806-.58l.094-.046c.25-.126.221-.227-.047-.227a2.48%202.48%200%200%201-.953-.227l-.094-.046a3.69%203.69%200%200%201-.803-.577l-.3-.3a3.62%203.62%200%200%201-.577-.803l-.046-.094a2.488%202.488%200%200%201-.227-.958v-.99c0-.279.138-.69.304-.91l.892-1.19c.168-.224.358-.191.425.08l.258%201.03a5.4%205.4%200%200%200%20.348.938l.046.094c.126.25.385.611.58.806l-.206-.206a.499.499%200%200%201%200%20.706l.206-.206c-.195.195-.16.45.1.58l.094.046C8.797%207.4%209%207.273%209%207v.5c0-.276.096-.693.227-.953l.046-.094a.74.74%200%200%200-.123-.803L8.147%204.647l.206.206c-.195-.195-.16-.45.1-.58l.094-.046a.74.74%200%200%201%20.803.123l1.003%201.003-.206-.206zM9.35%203.35c-.193-.193-.141-.42.125-.508l.55-.184c.263-.087.684-.088.95%200l.55.184c.263.087.319.314.125.508l-.3.3a1.4%201.4%200%200%201-.85.35c-.276%200-.656-.156-.85-.35l-.3-.3z'%20fill='url(%23b)'/%3e%3cpath%20d='M9.5%209.006c0%20.273.076.285.185.02C9.685%209.025%2010%208%2010.5%208c.5%200%20.823%201.042.823%201.042.098.253.177.236.177-.047V8.5c0-.828-.448-1.5-1-1.5s-1%20.672-1%201.5v.506z'%20fill='%23215F90'/%3e%3c/g%3e%3c/svg%3e")}.me.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E6BE53'%20offset='0%25'/%3e%3cstop%20stop-color='%23D3AD46'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E01826'%20offset='0%25'/%3e%3cstop%20stop-color='%23C30A17'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3crect%20fill='url(%23b)'%20x='1'%20y='1'%20width='13'%20height='13'%20rx='.75'/%3e%3cpath%20d='M3.253%201.858a.34.34%200%200%200%20.494%200l-.144.15.702-.73a.496.496%200%200%201%20.562-.09l.066.034c.175.092.206.28.07.422l.144-.15-.702.73a.546.546%200%200%200-.086.584l.032.068c.088.182.159.495.159.693v-.363c0%20.2.135.293.317.198l.066-.033c.175-.092.206-.28.07-.422l.144.15a.37.37%200%200%201%200-.514l-.144.15c.16-.175.297-.372.406-.586l.032-.069c.088-.181.196-.485.244-.681l.18-.75c.047-.195.182-.219.298-.059l.624.866c.118.163.213.45.213.662v.72c0%20.203-.067.508-.159.697l-.032.068a2.684%202.684%200%200%201-.404.584l-.21.219a2.539%202.539%200%200%201-.562.42l-.066.033c-.175.091-.48.165-.667.165-.193%200-.215.07-.033.165l.066.033c.175.092.428.28.564.422l-.144-.15a.34.34%200%200%200%20.494%200l-.144.15a.343.343%200%200%201%20.494%200l-.144-.15c.141.159.176.39.088.586l-.032.069a.631.631%200%200%201-.509.33%201.683%201.683%200%200%201-.667-.166l-.066-.033a1.243%201.243%200%200%201-.476-.495l-.032-.068c-.088-.182-.27-.215-.406-.073l.144-.15a.472.472%200%200%200-.056.555l.318.495a.367.367%200%200%201-.096.496l-.476.33a.542.542%200%200%201-.574%200l-.476-.33a.367.367%200%200%201-.096-.496l.318-.495a.472.472%200%200%200-.056-.555l.144.15c-.136-.142-.315-.116-.406.073l-.032.068a1.25%201.25%200%200%201-.476.495l-.066.033c-.175.092-.48.165-.667.165a.611.611%200%200%201-.509-.33L.86%206.08a.557.557%200%200%201%20.088-.586l-.144.15a.343.343%200%200%201%20.494%200l-.144-.15a.34.34%200%200%200%20.494%200l-.144.15c.169-.167.358-.309.564-.422l.066-.033c.175-.092.155-.165-.033-.165a1.683%201.683%200%200%201-.667-.165l-.066-.034a2.588%202.588%200%200%201-.562-.42l-.21-.218a2.633%202.633%200%200%201-.404-.584L.16%203.535A1.868%201.868%200%200%201%200%202.838v-.72c0-.203.097-.502.213-.662L.837.591c.118-.163.25-.139.298.058l.18.75c.061.234.143.462.244.681l.032.069c.088.182.27.444.406.586l-.144-.15a.37.37%200%200%201%200%20.514l.144-.15c-.136.142-.112.327.07.422l.066.033c.175.092.317%200%20.317-.198v.363c0-.2.067-.504.159-.693l.032-.068a.555.555%200%200%200-.086-.584l-.702-.73.144.15c-.136-.142-.112-.327.07-.422l.066-.033a.503.503%200%200%201%20.562.09l.702.729-.144-.15zM2.695.55C2.56.41%202.596.245%202.783.18l.385-.133c.184-.064.478-.064.664%200l.386.134c.184.063.223.228.087.369l-.21.218a.961.961%200%200%201-.595.255.945.945%200%200%201-.595-.255L2.695.55z'%20fill='url(%23a)'%20fill-rule='nonzero'%20transform='translate(4%204)'/%3e%3cpath%20d='M6.8%209.095c0%20.199.053.208.13.015%200%200%20.22-.746.57-.746s.576.757.576.757c.069.184.124.172.124-.034v-.36c0-.602-.314-1.09-.7-1.09-.386%200-.7.488-.7%201.09v.368z'%20fill='%23215F90'/%3e%3c/g%3e%3c/svg%3e")}.mf{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F44653'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231035BB'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.mf.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F44653'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231035BB'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.mg{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23149047'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7E3D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F84F4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FA3F3B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h7v15H0z'/%3e%3c/g%3e%3c/svg%3e")}.mg.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23149047'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7E3D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F84F4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FA3F3B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h5v15H0z'/%3e%3c/g%3e%3c/svg%3e")}.mh{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23064DAE'%20offset='0%25'/%3e%3cstop%20stop-color='%23003D91'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F18D36'%20offset='0%25'/%3e%3cstop%20stop-color='%23DB761E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M21%200v4L0%2015z'/%3e%3cpath%20fill='url(%23a)'%20d='M21%208V4L0%2015zM4.839%204.372L4.5%202l-.339%202.372-.911-1.037.468%201.383-1.383-.468%201.037.911L1%205.5l2.372.339-1.037.911%201.383-.468-.468%201.383.911-1.037L4.5%209l.339-2.372.911%201.037-.468-1.383%201.383.468-1.037-.911L8%205.5l-2.372-.339%201.037-.911-1.383.468.468-1.383-.911%201.037z'/%3e%3c/g%3e%3c/svg%3e")}.mh.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23064DAE'%20offset='0%25'/%3e%3cstop%20stop-color='%23003D91'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F18D36'%20offset='0%25'/%3e%3cstop%20stop-color='%23DB761E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M21%200v4L0%2015z'/%3e%3cpath%20d='M21%208V4L0%2015l21-7zM4.839%204.372L4.5%202l-.339%202.372-.911-1.037.468%201.383-1.383-.468%201.037.911L1%205.5l2.372.339-1.037.911%201.383-.468-.468%201.383.911-1.037L4.5%209l.339-2.372.911%201.037-.468-1.383%201.383.468-1.037-.911L8%205.5l-2.372-.339%201.037-.911-1.383.468.468-1.383-.911%201.037z'%20fill='url(%23b)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.mk{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E81B26'%20offset='0%25'/%3e%3cstop%20stop-color='%23D00914'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFE94F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFE633'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M-.004-.002h21v15h-21z'/%3e%3ccircle%20fill='url(%23c)'%20cx='10.496'%20cy='7.498'%20r='2.5'/%3e%3cpath%20d='M13.961%207.993l7.035%201.005v-3l-7.035%201.005a3.53%203.53%200%200%201%200%20.99zm-6.93-.99L-.004%205.998v3l7.035-1.005a3.53%203.53%200%200%201%200-.99zm4.152-2.938l.813-4.067h-3l.814%204.067a3.517%203.517%200%200%201%201.373%200zM9.81%2010.931l-.814%204.067h3l-.813-4.067a3.517%203.517%200%200%201-1.373%200zM7.652%209.539L-.54%2015.417l2.007%202.229%206.703-7.533a3.52%203.52%200%200%201-.518-.574zm5.688-4.082L21.532-.42l-2.007-2.23-6.702%207.533c.192.172.366.364.517.574zm-.517%204.656l6.702%207.533%202.007-2.23L13.34%209.54a3.52%203.52%200%200%201-.517.574zM8.17%204.883L1.467-2.65-.54-.42l8.192%205.877a3.52%203.52%200%200%201%20.518-.574z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.mk.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E81B26'%20offset='0%25'/%3e%3cstop%20stop-color='%23D00914'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFE94F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFE633'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M-3.004-.002h21v15h-21z'/%3e%3ccircle%20fill='url(%23e)'%20mask='url(%23d)'%20cx='7.496'%20cy='7.498'%20r='2.5'/%3e%3cpath%20d='M10.961%207.993l7.035%201.005v-3l-7.035%201.005a3.53%203.53%200%200%201%200%20.99zm-6.93-.99l-7.035-1.005v3l7.035-1.005a3.53%203.53%200%200%201%200-.99zm4.152-2.938l.813-4.067h-3l.814%204.067c.453-.09.92-.09%201.373%200zM6.81%2010.931l-.814%204.067h3l-.813-4.067c-.453.09-.92.09-1.373%200zM4.652%209.539l-8.192%205.878%202.007%202.229%206.703-7.533a3.52%203.52%200%200%201-.518-.574zm5.688-4.082L18.532-.42l-2.007-2.23-6.702%207.533c.192.172.366.364.517.574zm-.517%204.656l6.702%207.533%202.007-2.23L10.34%209.54a3.52%203.52%200%200%201-.517.574v-.001zM5.17%204.883L-1.533-2.65-3.54-.42l8.192%205.877a3.52%203.52%200%200%201%20.518-.574z'%20fill='url(%23e)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.ml{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E2233A'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%232ECB4D'%20offset='0%25'/%3e%3cstop%20stop-color='%2324B441'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD749'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.ml.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E2233A'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%232ECB4D'%20offset='0%25'/%3e%3cstop%20stop-color='%2324B441'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD749'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.mm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F13D4F'%20offset='0%25'/%3e%3cstop%20stop-color='%23E92C3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%234AC94B'%20offset='0%25'/%3e%3cstop%20stop-color='%233BB13C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD043'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECA2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M10.5%209.255l-2.645%201.886.976-3.099L6.22%206.11l3.247-.029L10.5%203l1.032%203.08%203.248.03-2.61%201.932.975%203.099z'/%3e%3c/g%3e%3c/svg%3e")}.mm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23F13D4F'%20offset='0%25'/%3e%3cstop%20stop-color='%23E92C3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%234AC94B'%20offset='0%25'/%3e%3cstop%20stop-color='%233BB13C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD043'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECA2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7.28%209.255l-2.645%201.886.976-3.099L3%206.11l3.247-.029L7.28%203l1.032%203.08%203.248.03-2.61%201.932.975%203.099z'/%3e%3c/g%3e%3c/svg%3e")}.mn{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23146BBC'%20offset='0%25'/%3e%3cstop%20stop-color='%230B5396'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E43642'%20offset='0%25'/%3e%3cstop%20stop-color='%23C32A34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F8D246'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9CE2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h7v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0zm14%200h7v15h-7z'/%3e%3cpath%20d='M4%209h1v3H4V9zM2%209h1v3H2V9zm1%202h1l-.5%201-.5-1zm0-2h1l-.5%201L3%209zm0-1l.5-.5.5.5H3zm.5%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.mn.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23146BBC'%20offset='0%25'/%3e%3cstop%20stop-color='%230B5396'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E43642'%20offset='0%25'/%3e%3cstop%20stop-color='%23C32A34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F8D246'%20offset='0%25'/%3e%3cstop%20stop-color='%23F9CE2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3cpath%20d='M0%200h5v15H0V0zm10%200h5v15h-5V0z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3%2010h1v3H3v-3zm-2%200h1v3H1v-3zm1%202h1l-.5%201-.5-1zm0-2h1l-.5%201-.5-1zm0-1l.5-.5.5.5H2zm.5%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.mo{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23079D7B'%20offset='0%25'/%3e%3cstop%20stop-color='%2301795E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M2.452%206.902c.143.038.284.07.423.098H.5c.119.356.278.691.473%201h7.054A4.61%204.61%200%200%200%208.5%207H6.093c.143-.027.289-.059.437-.097C6.076%206.918%205.336%207%204.5%207c-.847%200-1.596-.084-2.048-.098zm-.417-.125C.915%206.398.146%205.792.267%205.34c.134-.503%201.325-.62%202.659-.263.07.018.139.038.206.059a4.342%204.342%200%200%201-.046-.637C3.086%203.12%203.72%202%204.5%202c.78%200%201.414%201.12%201.414%202.5%200%20.219-.016.431-.046.634.077-.024.155-.047.234-.068%201.334-.357%202.524-.24%202.659.264.122.454-.66%201.067-1.797%201.445C6.764%206.18%205.737%206%204.5%206c-1.238%200-2.266.18-2.465.777zM7.166%209c-.728.625-1.656%201-2.666%201a4.076%204.076%200%200%201-2.666-1h5.332z'%20fill='url(%23a)'%20transform='translate(6%202)'/%3e%3cpath%20d='M10.5%203a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-4%202.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm8%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM13%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM8%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='%23FCD117'/%3e%3c/g%3e%3c/svg%3e")}.mo.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23079D7B'%20offset='0%25'/%3e%3cstop%20stop-color='%2301795E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M5.452%208.902c.143.038.284.07.423.098H3.5c.119.356.278.691.473%201h7.054a4.61%204.61%200%200%200%20.473-1H9.093c.143-.027.289-.059.437-.097C9.076%208.918%208.336%209%207.5%209c-.847%200-1.596-.084-2.048-.098zm-.417-.125c-1.12-.379-1.889-.985-1.768-1.437.134-.503%201.325-.62%202.659-.263.07.018.139.038.206.059a4.342%204.342%200%200%201-.046-.637C6.086%205.12%206.72%204%207.5%204c.78%200%201.414%201.12%201.414%202.5%200%20.219-.016.431-.046.634.077-.024.155-.047.234-.068%201.334-.357%202.524-.24%202.659.264.122.454-.66%201.067-1.797%201.445C9.764%208.18%208.737%208%207.5%208c-1.238%200-2.266.18-2.465.777zM10.166%2011c-.728.625-1.656%201-2.666%201a4.076%204.076%200%200%201-2.666-1h5.332z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20d='M7.5%203a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-4%202.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm8%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM10%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM5%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='%23FCD117'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.mp{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231E8BD6'%20offset='0%25'/%3e%3cstop%20stop-color='%231074BA'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23A9A7A9'%20offset='0%25'/%3e%3cstop%20stop-color='%238C8A8C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M10.5%2012.5a5%205%200%201%200%200-10%205%205%200%200%200%200%2010zm0-1a4%204%200%201%201%200-8%204%204%200%200%201%200%208z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M8.938%205.997C8.972%205.447%209.443%205%209.999%205h1.002c.552%200%201.027.453%201.061.997l.376%206.006a.927.927%200%200%201-.947.997H9.509a.935.935%200%200%201-.947-.997l.376-6.006z'%20fill='url(%23c)'/%3e%3cpath%20fill='url(%23a)'%20d='M10.5%209.515l-2.057%201.467.759-2.41-2.03-1.504%202.526-.022.802-2.396.802%202.396%202.527.022-2.03%201.504.758%202.41z'/%3e%3c/g%3e%3c/svg%3e")}.mp.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%231E8BD6'%20offset='0%25'/%3e%3cstop%20stop-color='%231074BA'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23A9A7A9'%20offset='0%25'/%3e%3cstop%20stop-color='%238C8A8C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M5.5%2010.5a5%205%200%201%200%200-10%205%205%200%200%200%200%2010zm0-1a4%204%200%201%201%200-8%204%204%200%200%201%200%208z'%20fill='url(%23b)'%20fill-rule='nonzero'%20transform='translate(2%202)'/%3e%3cpath%20d='M3.938%203.997C3.972%203.447%204.443%203%204.999%203h1.002c.552%200%201.027.453%201.061.997l.376%206.006a.927.927%200%200%201-.947.997H4.509a.935.935%200%200%201-.947-.997l.376-6.006z'%20fill='url(%23c)'%20transform='translate(2%202)'/%3e%3cpath%20fill='url(%23b)'%20d='M5.5%207.515L3.443%208.982l.759-2.41-2.03-1.504%202.526-.022L5.5%202.65l.802%202.396%202.527.022-2.03%201.504.758%202.41z'%20transform='translate(2%202)'/%3e%3c/g%3e%3c/svg%3e")}.mq{background-image:url("/assets/mq-BFZCmjkO.svg")}.mq.fp-square{background-image:url("/assets/mq-gMqVkVGw.svg")}.mr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23108B4D'%20offset='0%25'/%3e%3cstop%20stop-color='%230A6135'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFC941'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFC42E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M14.86%205.8a4.5%204.5%200%201%201-8.89%200%204.501%204.501%200%200%200%208.89%200zm-4.36.623l-1.236.881.456-1.448-1.22-.903%201.518-.014L10.5%203.5l.482%201.44%201.518.013-1.22.903.456%201.448-1.236-.88z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.mr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23108B4D'%20offset='0%25'/%3e%3cstop%20stop-color='%230A6135'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFC941'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFC42E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M11.945%206.3a4.5%204.5%200%201%201-8.89%200%204.501%204.501%200%200%200%208.89%200zm-4.36.623l-1.236.881.456-1.448-1.22-.903%201.518-.014L7.585%204l.482%201.44%201.518.013-1.22.903.456%201.448-1.236-.88v-.001z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ms{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%2308B9D6'%20offset='0%25'/%3e%3cstop%20stop-color='%2300A3BE'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%203.5V1c0-.553.444-1%201-1h3c.552%200%201%20.441%201%201v2.5C5%206%202.5%207%202.5%207S0%206%200%203.5z'%20id='d'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23c)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cg%20transform='translate(13%204)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cuse%20fill='url(%23e)'%20xlink:href='%23d'/%3e%3cpath%20fill='%23A63D09'%20mask='url(%23f)'%20d='M0%205h5v2H0z'/%3e%3cpath%20d='M3%202V1H2v1H1v1h1v2h1V3h1V2H3z'%20fill='url(%23g)'%20mask='url(%23f)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ms.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%2308B9D6'%20offset='0%25'/%3e%3cstop%20stop-color='%2300A3BE'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.5V.714C0%20.32.355%200%20.8%200h2.4c.442%200%20.8.315.8.714V2.5C4%204.286%202%205%202%205s-2-.714-2-2.5z'%20id='g'/%3e%3cpath%20d='M0%202.5V.714C0%20.32.355%200%20.8%200h2.4c.442%200%20.8.315.8.714V2.5C4%204.286%202%205%202%205s-2-.714-2-2.5z'%20id='i'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='j'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M5%204.23L.648.5H2.66L6.16%203h.697L11.5.098V1.25c0%20.303-.167.627-.418.806L8%204.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L6.84%206h-.697L1.5%208.902v-1.66l3.5-2.5V4.23z'%20fill='url(%23d)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M5.5%204L2%201h.5L6%203.5h1L11%201v.25a.537.537%200%200%201-.208.399L7.5%204v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L7%205.5H6L2%208v-.5L5.5%205V4z'%20fill='url(%23e)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M2%203.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V5.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H7.5V1h-2v2.5H2z'%20fill='url(%23d)'%20transform='translate(-2%20-1)'/%3e%3cpath%20fill='url(%23e)'%20d='M2%204h4V1h1v3h4v1H7v3H6V5H2z'%20transform='translate(-2%20-1)'/%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M0%202.5V.714C0%20.32.355%200%20.8%200h2.4c.442%200%20.8.315.8.714V2.5C4%204.286%202%205%202%205s-2-.714-2-2.5z'%20fill='url(%23f)'%20transform='translate(9%209)'/%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='h'%20fill='%23fff'%3e%3cuse%20xlink:href='%23g'/%3e%3c/mask%3e%3cpath%20fill='%23A63D09'%20mask='url(%23h)'%20d='M0%203.571h4V5H0z'/%3e%3c/g%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='k'%20fill='%23fff'%3e%3cuse%20xlink:href='%23i'/%3e%3c/mask%3e%3cpath%20fill='url(%23j)'%20mask='url(%23k)'%20d='M2.4%201.429V.714h-.8v.715H.8v.714h.8V3.57h.8V2.143h.8v-.714z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.mt{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DE233C'%20offset='0%25'/%3e%3cstop%20stop-color='%23CD1931'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M4%203V2H3v1H2v1h1v1h1V4h1V3H4z'%20id='c'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M11%200h10v15H11z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h11v15H0z'/%3e%3cuse%20fill='%23CCCCCD'%20xlink:href='%23c'/%3e%3cpath%20stroke-opacity='.66'%20stroke='%237B716A'%20stroke-width='.5'%20d='M4.25%202.75h1v1.5h-1v1h-1.5v-1h-1v-1.5h1v-1h1.5v1z'/%3e%3ccircle%20fill='%237B716A'%20cx='3.5'%20cy='3.5'%20r='1'/%3e%3c/g%3e%3c/svg%3e")}.mt.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23DE233C'%20offset='0%25'/%3e%3cstop%20stop-color='%23CD1931'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M8%200h7v15H8z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h8v15H0z'/%3e%3cg%20transform='translate(1%201)'%3e%3cpath%20fill='%23CCCCCD'%20d='M3%202V1H2v1H1v1h1v1h1V3h1V2z'/%3e%3cpath%20stroke-opacity='.66'%20stroke='%237B716A'%20stroke-width='.5'%20d='M3.25%201.75h1v1.5h-1v1h-1.5v-1h-1v-1.5h1v-1h1.5z'/%3e%3ccircle%20fill='%237B716A'%20cx='2.5'%20cy='2.5'%20r='1'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.mu{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DBB63'%20offset='0%25'/%3e%3cstop%20stop-color='%2317A455'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23222B82'%20offset='0%25'/%3e%3cstop%20stop-color='%231B236C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD741'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFD430'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F4374A'%20offset='0%25'/%3e%3cstop%20stop-color='%23E92C3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2012h21v3H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h21v4H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%208h21v4H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%200h21v4H0z'/%3e%3c/g%3e%3c/svg%3e")}.mu.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DBB63'%20offset='0%25'/%3e%3cstop%20stop-color='%2317A455'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23222B82'%20offset='0%25'/%3e%3cstop%20stop-color='%231B236C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD741'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFD430'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F4374A'%20offset='0%25'/%3e%3cstop%20stop-color='%23E92C3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2012h15v3H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h15v4H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%208h15v4H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%200h15v4H0z'/%3e%3c/g%3e%3c/svg%3e")}.mv{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F32249'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2315A04F'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7E3D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3crect%20fill='url(%23c)'%20x='3'%20y='3'%20width='15'%20height='9'%20rx='.5'/%3e%3cpath%20d='M12.25%204.08a3.5%203.5%200%201%200%200%206.839%203.501%203.501%200%200%201%200-6.838z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.mv.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23F32249'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2315A04F'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7E3D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3crect%20fill='url(%23b)'%20x='1'%20y='2'%20width='13'%20height='11'%20rx='.5'/%3e%3cpath%20d='M9.246%204.08a3.5%203.5%200%201%200%200%206.84%203.501%203.501%200%200%201%200-6.838V4.08z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.mw{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E42038'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%2347B849'%20offset='0%25'/%3e%3cstop%20stop-color='%23399E3B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3ccircle%20fill='url(%23c)'%20cx='10.5'%20cy='5.5'%20r='3.5'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2010h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.mw.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E42038'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2347B849'%20offset='0%25'/%3e%3cstop%20stop-color='%23399E3B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3ccircle%20fill='url(%23b)'%20cx='7.5'%20cy='5.5'%20r='3.5'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.mx{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E3283E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23128A60'%20offset='0%25'/%3e%3cstop%20stop-color='%230B6848'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3cpath%20d='M8%207a2.5%202.5%200%200%200%201.247%202.164.5.5%200%200%200%20.502-.865A1.499%201.499%200%200%201%209%207a.5.5%200%200%200-1%200zm3.846%202.107A2.498%202.498%200%200%200%2013%207a.5.5%200%201%200-1%200%201.5%201.5%200%200%201-.693%201.265.5.5%200%201%200%20.539.842z'%20fill='%238C9157'%20fill-rule='nonzero'/%3e%3cellipse%20fill='%23C59262'%20cx='10.5'%20cy='6.5'%20rx='1'%20ry='1.5'/%3e%3c/g%3e%3c/svg%3e")}.mx.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E3283E'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23128A60'%20offset='0%25'/%3e%3cstop%20stop-color='%230B6848'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M5%200h5v15H5z'/%3e%3cg%20transform='translate(6%206)'%3e%3cpath%20d='M0%201.2a1.5%201.5%200%200%200%20.748%201.298.3.3%200%200%200%20.301-.519A.9.9%200%200%201%20.6%201.2a.3.3%200%200%200-.6%200zm2.308%201.264C2.739%202.19%203%201.712%203%201.2a.3.3%200%200%200-.6%200%20.9.9%200%200%201-.416.759.3.3%200%201%200%20.324.505z'%20fill='%238C9157'%20fill-rule='nonzero'/%3e%3cellipse%20fill='%23C59262'%20cx='1.5'%20cy='.9'%20rx='1'%20ry='1'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.my{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E1244A'%20offset='0%25'/%3e%3cstop%20stop-color='%23BE1134'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230C3F8E'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD34F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M10%200h11v1H10V0zm0%202h11v1H10V2zm0%202h11v1H10V4zm0%202h11v1H10V6zM0%208h21v1H0V8zm0%202h21v1H0v-1zm0%202h21v1H0v-1zm0%202h21v1H0v-1z'%20fill='url(%23b)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h12v8H0z'/%3e%3cpath%20d='M6.874%201.657a2.5%202.5%200%201%200%200%204.686%203%203%200%201%201%200-4.686zM8%204.82l-.868.982.227-1.29-1.309-.067%201.15-.627-.764-1.065%201.208.508L8%202l.356%201.261%201.208-.508-.765%201.065%201.15.627-1.308.066.227%201.29L8%204.82z'%20fill='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.my.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E1244A'%20offset='0%25'/%3e%3cstop%20stop-color='%23BE1134'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%230C3F8E'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFD34F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20d='M10%200h11v1H10V0zm0%202h11v1H10V2zm0%202h11v1H10V4zm0%202h11v1H10V6zM0%208h21v1H0V8zm0%202h21v1H0v-1zm0%202h21v1H0v-1zm0%202h21v1H0v-1z'%20fill='url(%23c)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%200h12v8H0z'/%3e%3cpath%20d='M6.874%201.657a2.5%202.5%200%201%200%200%204.686%203%203%200%201%201%200-4.686zM8%204.82l-.868.982.227-1.29-1.309-.067%201.15-.627-.764-1.065%201.208.508L8%202l.356%201.261%201.208-.508-.765%201.065%201.15.627-1.308.066.227%201.29L8%204.82z'%20fill='url(%23f)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.mz{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFE547'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCE032'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23118C81'%20offset='0%25'/%3e%3cstop%20stop-color='%230D7168'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EF2147'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FDE444'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCE032'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v4H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%204h21v7H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%200l10%207.5L0%2015z'/%3e%3cpath%20fill='url(%23f)'%20d='M3.5%208.456L2.03%209.523l.561-1.728-1.469-1.068h1.816L3.5%205l.562%201.727h1.816l-1.47%201.068.561%201.728z'/%3e%3c/g%3e%3c/svg%3e")}.mz.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFE547'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCE032'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23118C81'%20offset='0%25'/%3e%3cstop%20stop-color='%230D7168'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EF2147'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FDE444'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCE032'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%2011h15v4H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h15v7H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%200l7%207.5L0%2015z'/%3e%3cpath%20fill='url(%23f)'%20d='M2.5%208.292L1.573%209l.354-1.146L1%207.145h1.146L2.5%206l.354%201.145H4l-.927.709L3.427%209z'/%3e%3c/g%3e%3c/svg%3e")}.na{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%230C4799'%20offset='0%25'/%3e%3cstop%20stop-color='%2305387E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='c'%20d='M3.121%2012.304l21-10h-21z'/%3e%3cfilter%20x='-3.6%25'%20y='-7.5%25'%20width='107.1%25'%20height='115%25'%20filterUnits='objectBoundingBox'%20id='b'%3e%3cfeMorphology%20radius='.25'%20operator='dilate'%20in='SourceAlpha'%20result='shadowSpreadOuter1'/%3e%3cfeOffset%20in='shadowSpreadOuter1'%20result='shadowOffsetOuter1'/%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.06%200'%20in='shadowOffsetOuter1'/%3e%3c/filter%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FFD243'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCD2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='f'%20d='M6.621%206.804l-.765.848.058-1.14-1.14.057.847-.765-.847-.765%201.14.058-.058-1.14.765.847.766-.848-.058%201.14%201.14-.057-.848.765.848.765-1.14-.058.058%201.14z'/%3e%3cfilter%20x='-6.2%25'%20y='-6.2%25'%20width='112.5%25'%20height='125%25'%20filterUnits='objectBoundingBox'%20id='e'%3e%3cfeOffset%20dy='.5'%20in='SourceAlpha'%20result='shadowOffsetOuter1'/%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.06%200'%20in='shadowOffsetOuter1'/%3e%3c/filter%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='j'%3e%3cstop%20stop-color='%231BAC55'%20offset='0%25'/%3e%3cstop%20stop-color='%23149447'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='i'%20d='M3.121%2017.304h21v-10z'/%3e%3cfilter%20x='-3.6%25'%20y='-7.5%25'%20width='107.1%25'%20height='115%25'%20filterUnits='objectBoundingBox'%20id='h'%3e%3cfeMorphology%20radius='.25'%20operator='dilate'%20in='SourceAlpha'%20result='shadowSpreadOuter1'/%3e%3cfeOffset%20in='shadowSpreadOuter1'%20result='shadowOffsetOuter1'/%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.06%200'%20in='shadowOffsetOuter1'/%3e%3c/filter%3e%3cpath%20id='l'%20d='M5.433%2019.304L25.75%206.609%2021.81.304%201.493%2012.999z'/%3e%3cfilter%20x='-3.1%25'%20y='-3.9%25'%20width='106.2%25'%20height='107.9%25'%20filterUnits='objectBoundingBox'%20id='k'%3e%3cfeMorphology%20radius='.25'%20operator='dilate'%20in='SourceAlpha'%20result='shadowSpreadOuter1'/%3e%3cfeOffset%20in='shadowSpreadOuter1'%20result='shadowOffsetOuter1'/%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.06%200'%20in='shadowOffsetOuter1'/%3e%3c/filter%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='m'%3e%3cstop%20stop-color='%23E52347'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cg%20transform='translate(-3.12%20-2.3)'%3e%3cuse%20fill='%23000'%20filter='url(%23b)'%20xlink:href='%23c'/%3e%3cuse%20fill='url(%23d)'%20xlink:href='%23c'/%3e%3c/g%3e%3cg%20transform='translate(-3.12%20-2.3)'%3e%3cuse%20fill='%23000'%20filter='url(%23e)'%20xlink:href='%23f'/%3e%3cuse%20fill='url(%23g)'%20xlink:href='%23f'/%3e%3c/g%3e%3cg%20transform='translate(-3.12%20-2.3)'%3e%3cuse%20fill='%23000'%20filter='url(%23h)'%20xlink:href='%23i'/%3e%3cuse%20fill='url(%23j)'%20xlink:href='%23i'/%3e%3c/g%3e%3cg%20transform='translate(-3.12%20-2.3)'%3e%3cuse%20fill='%23000'%20filter='url(%23k)'%20xlink:href='%23l'/%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23l'/%3e%3c/g%3e%3cpath%20fill='url(%23m)'%20d='M2.65%2019.608L27.243%204.24%2024.593%200%200%2015.368z'%20transform='translate(-3.12%20-2.3)'/%3e%3c/g%3e%3c/svg%3e")}.na.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%230C4799'%20offset='0%25'/%3e%3cstop%20stop-color='%2305387E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFD243'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCD2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%231BAC55'%20offset='0%25'/%3e%3cstop%20stop-color='%23149447'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23E52347'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20fill='%23000'%20d='M.001%2010.004l21-10h-21z'/%3e%3cpath%20fill='url(%23d)'%20d='M.121%2010.304l21-10h-21z'%20transform='translate(-.12%20-.3)'/%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cpath%20fill='%23000'%20d='M3.501%204.504l-.765.848.058-1.14-1.14.057.847-.765-.847-.765%201.14.058-.058-1.14.765.847.766-.848-.058%201.14%201.14-.057-.848.765.848.765-1.14-.058.058%201.14z'/%3e%3cpath%20fill='url(%23e)'%20d='M2.621%203.804l-.765.848.058-1.14-1.14.057.847-.765-.847-.765%201.14.058-.058-1.14.765.847.766-.848-.058%201.14%201.14-.057-.848.765.848.765-1.14-.058.058%201.14z'%20transform='translate(.88%20.7)'/%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cpath%20fill='%23000'%20d='M.001%2015.004h21v-10z'/%3e%3cpath%20fill='url(%23f)'%20d='M.121%2010.304h21v-10z'%20transform='translate(-.12%204.7)'/%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cpath%20fill='%23000'%20d='M2.313%2017.004L22.63%204.309l-3.94-6.305-20.317%2012.695z'/%3e%3cpath%20fill='url(%23b)'%20d='M4.433%2019.304L24.75%206.609%2020.81.304.493%2012.999z'%20transform='translate(-2.12%20-2.3)'/%3e%3c/g%3e%3cpath%20fill='url(%23g)'%20mask='url(%23c)'%20d='M-.47%2017.308L24.123%201.94l-2.65-4.24L-3.12%2013.068z'/%3e%3c/g%3e%3c/svg%3e")}.nc{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23094CC7'%20offset='0%25'/%3e%3cstop%20stop-color='%23003CAB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%232AAD55'%20offset='0%25'/%3e%3cstop%20stop-color='%23219447'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F65D55'%20offset='0%25'/%3e%3cstop%20stop-color='%23E9443C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FAE749'%20offset='0%25'/%3e%3cstop%20stop-color='%23FBE533'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%205h21v5H0z'/%3e%3ccircle%20fill='url(%23e)'%20cx='10.5'%20cy='7.5'%20r='3.5'/%3e%3cpath%20d='M10.092%206.211a.5.5%200%201%200%20.514-.2c.048-.024.096-.05.144-.078.598-.345.97-.819.833-1.058-.139-.24-.735-.153-1.333.192s-.97.819-.833%201.058c.086.148.347.171.675.086zM10.5%2010.5c-.828%200-1-.724-1-1s.172-.5%201-.5c.828%200%201%20.224%201%20.5s-.172%201-1%201zm0-1.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-1a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23f)'/%3e%3c/g%3e%3c/svg%3e")}.nc.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23094CC7'%20offset='0%25'/%3e%3cstop%20stop-color='%23003CAB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%232AAD55'%20offset='0%25'/%3e%3cstop%20stop-color='%23219447'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F65D55'%20offset='0%25'/%3e%3cstop%20stop-color='%23E9443C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FAE749'%20offset='0%25'/%3e%3cstop%20stop-color='%23FBE533'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cg%20transform='translate(4%204)'%3e%3ccircle%20fill='url(%23d)'%20cx='3.5'%20cy='3.5'%20r='3.5'/%3e%3cpath%20d='M3.092%202.211a.5.5%200%201%200%20.514-.2c.048-.024.096-.05.144-.078.598-.345.97-.819.833-1.058-.139-.24-.735-.153-1.333.192s-.97.819-.833%201.058c.086.148.347.171.675.086zM3.5%206.5c-.828%200-1-.724-1-1s.172-.5%201-.5c.828%200%201%20.224%201%20.5s-.172%201-1%201zm0-1.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-1a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23e)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ne{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F0642F'%20offset='0%25'/%3e%3cstop%20stop-color='%23DF531D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%232DCC45'%20offset='0%25'/%3e%3cstop%20stop-color='%231FAF35'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E85C27'%20offset='0%25'/%3e%3cstop%20stop-color='%23DF531D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3ccircle%20fill='url(%23d)'%20cx='10.5'%20cy='7.5'%20r='2'/%3e%3c/g%3e%3c/svg%3e")}.ne.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23F0642F'%20offset='0%25'/%3e%3cstop%20stop-color='%23DF531D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%232DCC45'%20offset='0%25'/%3e%3cstop%20stop-color='%231FAF35'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E85C27'%20offset='0%25'/%3e%3cstop%20stop-color='%23DF531D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3ccircle%20fill='url(%23d)'%20cx='8'%20cy='7.5'%20r='2'/%3e%3c/g%3e%3c/svg%3e")}.nf{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23219646'%20offset='0%25'/%3e%3cstop%20stop-color='%23197837'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23259D4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23197837'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10zM0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M6%200h9v15H6z'/%3e%3cpath%20d='M9.444%204.003l.422-1.52A.705.705%200%200%201%2010.5%202a.7.7%200%200%201%20.634.484l.422%201.52a.5.5%200%201%200%20.248.893l.31%201.116a.501.501%200%200%200-.614.487.5.5%200%200%200%20.85.358l.325%201.174a.499.499%200%201%200%20.217.779L13.5%2011H11v2h-1v-2H7.5l.608-2.19a.5.5%200%201%200%20.217-.778l.326-1.174A.498.498%200%200%200%209.5%206.5a.5.5%200%200%200-.615-.487l.31-1.116a.5.5%200%201%200%20.248-.893z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.nf.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23219646'%20offset='0%25'/%3e%3cstop%20stop-color='%23197837'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23259D4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23197837'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M10.714%200H15v15h-4.286V0zM0%200h4.286v15H0V0z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M4.286%200h6.428v15H4.286z'/%3e%3cpath%20d='M6.62%204.639l.352-1.244A.586.586%200%200%201%207.5%203a.58.58%200%200%201%20.528.396L8.38%204.64a.418.418%200%200%200-.434.254.405.405%200%200%200%20.135.478c.15.112.357.11.506-.002l.258.913a.423.423%200%200%200-.354.079.407.407%200%200%200%20.097.698c.155.064.334.03.454-.085l.27.96a.419.419%200%200%200-.516.202.404.404%200%200%200%20.149.526.42.42%200%200%200%20.548-.09l.507%201.79H7.917V12h-.834v-1.636H5l.507-1.792c.132.164.37.204.55.092a.405.405%200%200%200%20.15-.528.42.42%200%200%200-.52-.2l.272-.961a.42.42%200%200%200%20.454.086.407.407%200%200%200%20.096-.7.423.423%200%200%200-.355-.078l.258-.913a.423.423%200%200%200%20.506.002.405.405%200%200%200%20.135-.478.418.418%200%200%200-.434-.254l.001-.001z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.ng{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23189B62'%20offset='0%25'/%3e%3cstop%20stop-color='%23118653'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10zM0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.ng.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23189B62'%20offset='0%25'/%3e%3cstop%20stop-color='%23118653'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M7.143%200H15v15H7.143V0zM0%200h5v15H0V0z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.ni{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231A78D6'%20offset='0%25'/%3e%3cstop%20stop-color='%23106AC4'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0zm0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M10.5%209a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203zm0%20.5a2%202%200%201%201%200-4%202%202%200%200%201%200%204z'%20fill='%23DBCD92'%20fill-rule='nonzero'/%3e%3cpath%20fill='%239CDDEE'%20d='M10.5%206.5l1%202h-2z'/%3e%3c/g%3e%3c/svg%3e")}.ni.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231A78D6'%20offset='0%25'/%3e%3cstop%20stop-color='%23106AC4'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h15v5H0V0zm0%2010h15v5H0v-5z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20d='M7.5%209a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203zm0%20.5a2%202%200%201%201%200-4%202%202%200%200%201%200%204z'%20fill='%23DBCD92'%20fill-rule='nonzero'/%3e%3cpath%20fill='%239CDDEE'%20d='M7.5%206.5l1%202h-2z'/%3e%3c/g%3e%3c/svg%3e")}.nl{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23CA2B39'%20offset='0%25'/%3e%3cstop%20stop-color='%23AC1F2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%232C56A2'%20offset='0%25'/%3e%3cstop%20stop-color='%23244889'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.nl.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23CA2B39'%20offset='0%25'/%3e%3cstop%20stop-color='%23AC1F2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%232C56A2'%20offset='0%25'/%3e%3cstop%20stop-color='%23244889'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.no{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F14247'%20offset='0%25'/%3e%3cstop%20stop-color='%23ED2F35'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230A3A85'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.no.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F14247'%20offset='0%25'/%3e%3cstop%20stop-color='%23ED2F35'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%230A3A85'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.np{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%200h1.495c.279%200%20.693.126.918.275L13.175%207.45c.456.304.372.55-.172.55H6l7.247%206.341c.416.364.303.659-.254.659H0V0z'%20id='a'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23EE1B44'%20offset='0%25'/%3e%3cstop%20stop-color='%23DD153C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%230543A8'%20offset='0%25'/%3e%3cstop%20stop-color='%23003893'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%200h1.495c.279%200%20.693.126.918.275L13.175%207.45c.456.304.372.55-.172.55H6l7.247%206.341c.416.364.303.659-.254.659H0V0z'%20id='e'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cuse%20fill='url(%23d)'%20xlink:href='%23e'/%3e%3cpath%20stroke='url(%23f)'%20d='M.5.5v14h12.17l-8-7h7.679L2.136.691A1.483%201.483%200%200%200%201.496.5H.5z'/%3e%3c/g%3e%3cpath%20d='M5.138%205.85a3.52%203.52%200%200%200%20.789-.318%202%202%200%200%201-3.857%200c.236.132.502.24.791.32L3.25%205.5l-.636-.574.856.044-.044-.856L4%204.75l.574-.636-.044.856.856-.044-.636.574.388.35zM4%2012l-.765.848.058-1.14-1.14.057L3%2011l-.848-.765%201.14.058-.057-1.14L4%2010l.765-.848-.058%201.14%201.14-.057L5%2011l.848.765-1.14-.058.057%201.14L4%2012z'%20fill='url(%23b)'%20mask='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.np.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%200h1.602c.299%200%20.742.126.983.275L14.116%207.45c.489.304.399.55-.184.55H6.429l7.764%206.341c.446.364.325.659-.272.659H0V0z'%20id='b'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23EE1B44'%20offset='0%25'/%3e%3cstop%20stop-color='%23DD153C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%230543A8'%20offset='0%25'/%3e%3cstop%20stop-color='%23003893'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%200h1.602c.299%200%20.742.126.983.275L14.116%207.45c.489.304.399.55-.184.55H6.429l7.764%206.341c.446.364.325.659-.272.659H0V0z'%20id='f'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%200h1.602c.299%200%20.742.126.983.275L14.116%207.45c.489.304.399.55-.184.55H6.429l7.764%206.341c.446.364.325.659-.272.659H0V0z'%20fill='url(%23a)'/%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23b'/%3e%3c/mask%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M0%200h1.602c.299%200%20.742.126.983.275L14.116%207.45c.489.304.399.55-.184.55H6.429l7.764%206.341c.446.364.325.659-.272.659H0V0z'%20fill='url(%23d)'/%3e%3cpath%20d='M.536.5v14h13.039l-8.571-7h8.227L2.29.691A1.673%201.673%200%200%200%201.603.5H.536z'%20stroke='url(%23e)'/%3e%3c/g%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23f'/%3e%3c/mask%3e%3cpath%20d='M5.505%205.85a3.93%203.93%200%200%200%20.845-.318c-.255.868-1.101%201.47-2.066%201.47-.965%200-1.81-.602-2.066-1.47.253.132.538.24.847.32l.417-.352-.681-.574.917.044-.047-.856.615.636.615-.636-.047.856.917-.044-.682.574.416.35zM4.285%2012l-.819.848.062-1.14-1.221.057.907-.765-.908-.765%201.221.058-.06-1.14.819.847.82-.848-.063%201.14%201.222-.057-.908.765.909.765-1.222-.058.061%201.14-.82-.847z'%20fill='url(%23a)'%20fill-rule='nonzero'%20mask='url(%23g)'/%3e%3c/g%3e%3c/svg%3e")}.nr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230744A7'%20offset='0%25'/%3e%3cstop%20stop-color='%2300307D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FCC747'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC539'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%206h21v2H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M5.5%2012.25l-.773%201.128.038-1.367-1.288.458.834-1.083L3%2011l1.311-.386-.834-1.083%201.288.458-.038-1.367L5.5%209.75l.773-1.128-.038%201.367%201.288-.458-.834%201.083L8%2011l-1.311.386.834%201.083-1.288-.458.038%201.367z'/%3e%3c/g%3e%3c/svg%3e")}.nr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230744A7'%20offset='0%25'/%3e%3cstop%20stop-color='%2300307D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FCC747'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC539'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%206h15v2H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M5.5%2012.25l-.773%201.128.038-1.367-1.288.458.834-1.083L3%2011l1.311-.386-.834-1.083%201.288.458-.038-1.367L5.5%209.75l.773-1.128-.038%201.367%201.288-.458-.834%201.083L8%2011l-1.311.386.834%201.083-1.288-.458.038%201.367z'/%3e%3c/g%3e%3c/svg%3e")}.nu{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FCD54E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23053C8A'%20offset='0%25'/%3e%3cstop%20stop-color='%23002B67'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FDD650'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h9v7H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23d)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23d)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3ccircle%20fill='url(%23c)'%20cx='4.5'%20cy='3.5'%20r='1'/%3e%3cpath%20d='M4.5%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-4%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23e)'/%3e%3c/g%3e%3c/svg%3e")}.nu.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FCD54E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23053C8A'%20offset='0%25'/%3e%3cstop%20stop-color='%23002B67'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FDD650'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h9v7H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23e)'%20mask='url(%23d)'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23f)'%20mask='url(%23d)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23e)'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23d)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3ccircle%20fill='url(%23c)'%20mask='url(%23d)'%20cx='4.5'%20cy='3.5'%20r='1'/%3e%3cpath%20d='M4.5%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-4%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23g)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.nz{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23c)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3cpath%20fill='%23CA1931'%20d='M15%2013l-.707.207.207-.707-.207-.707L15%2012l.707-.207-.207.707.207.707zm0-9.5l-.707.207L14.5%203l-.207-.707L15%202.5l.707-.207L15.5%203l.207.707zm3%203l-.707.207L17.5%206l-.207-.707L18%205.5l.707-.207L18.5%206l.207.707zm-6%201l-.707.207L11.5%207l-.207-.707L12%206.5l.707-.207L12.5%207l.207.707z'/%3e%3c/g%3e%3c/svg%3e")}.nz.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M5%204.23L.648.5H2.66L6.16%203h.697L11.5.098V1.25c0%20.303-.167.627-.418.806L8%204.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L6.84%206h-.697L1.5%208.902v-1.66l3.5-2.5V4.23z'%20fill='url(%23d)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M5.5%204L2%201h.5L6%203.5h1L11%201v.25a.537.537%200%200%201-.208.399L7.5%204v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L7%205.5H6L2%208v-.5L5.5%205V4z'%20fill='url(%23e)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M2%203.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V5.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H7.5V1h-2v2.5H2z'%20fill='url(%23d)'%20transform='translate(-2%20-1)'/%3e%3cpath%20fill='url(%23e)'%20d='M2%204h4V1h1v3h4v1H7v3H6V5H2z'%20transform='translate(-2%20-1)'/%3e%3c/g%3e%3cpath%20d='M10.787%2012.867L10.37%2013l.122-.453-.122-.454.418.133.417-.133-.122.454.122.453-.418-.133zm0-6.093l-.417.133.122-.454L10.37%206l.418.133.417-.133-.122.453.122.454-.418-.133zm1.77%201.924l-.416.133.122-.453-.122-.454.417.133.417-.133-.122.454.122.453-.417-.133zm-3.54.642l-.417.132.122-.453-.122-.453.417.132.417-.132-.122.453.122.453-.417-.132z'%20fill='%23CA1931'%20fill-rule='nonzero'%20mask='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.om{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23138E16'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7F12'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23ED2B35'%20offset='0%25'/%3e%3cstop%20stop-color='%23D91B25'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2015h7v-5h14V5H7V0H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M3.5%203.534l-.868%201.268.45-1.47-1.532.113%201.43-.564-1.044-1.128%201.332.766L3.5%201l.232%201.519%201.332-.766L4.02%202.881l1.43.564-1.533-.112.45%201.469zM7%200h14v5H7z'/%3e%3c/g%3e%3c/svg%3e")}.om.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23138E16'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7F12'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23ED2B35'%20offset='0%25'/%3e%3cstop%20stop-color='%23D91B25'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2015h5v-5h10V5H5V0H0z'/%3e%3cpath%20fill='url(%23c)'%20fill-rule='nonzero'%20d='M5%200h10v5H5zM2.5%203l-.668%201%20.346-1.16L1%202.93l1.1-.446-.803-.89%201.025.605L2.5%201l.178%201.199%201.025-.605-.803.89L4%202.93l-1.18-.088L3.168%204z'/%3e%3c/g%3e%3c/svg%3e")}.pa{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E52448'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231367AE'%20offset='0%25'/%3e%3cstop%20stop-color='%230A5492'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%207h21v8H0z'/%3e%3cpath%20d='M0%207V0h10v7H0zm10%208V7h11v8H10z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M5%204.32l-1.176.798.396-1.365-1.122-.871%201.42-.045L5%201.5l.482%201.337%201.42.045-1.122.871.396%201.365z'/%3e%3cpath%20fill='url(%23b)'%20d='M15.5%2011.82l-1.176.798.396-1.365-1.122-.871%201.42-.045L15.5%209l.482%201.337%201.42.045-1.122.871.396%201.365z'/%3e%3c/g%3e%3c/svg%3e")}.pa.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E52448'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231367AE'%20offset='0%25'/%3e%3cstop%20stop-color='%230A5492'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%207h15v8H0z'/%3e%3cpath%20d='M0%207V0h7.143v7H0zm7.143%208V7H15v8H7.143z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23c)'%20d='M3.402%204.32l-1.176.798.396-1.365L1.5%202.882l1.42-.045.482-1.337.482%201.337%201.42.045-1.122.871.396%201.365z'/%3e%3cpath%20fill='url(%23b)'%20d='M11.402%2012.32l-1.176.798.396-1.365-1.122-.871%201.42-.045.482-1.337.482%201.337%201.42.045-1.122.871.396%201.365z'/%3e%3c/g%3e%3c/svg%3e")}.pe{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E82438'%20offset='0%25'/%3e%3cstop%20stop-color='%23D7172B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10zM0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.pe.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E82438'%20offset='0%25'/%3e%3cstop%20stop-color='%23D7172B'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M7.143%200H15v15H7.143V0zM0%200h5v15H0V0z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.pf{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E02639'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DC2235'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3ccircle%20id='d'%20cx='2.5'%20cy='2.5'%20r='2.5'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFA135'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD9C2D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23DF2034'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%230B4BAD'%20offset='0%25'/%3e%3cstop%20stop-color='%2308429A'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%204h21v7H0z'/%3e%3cg%20transform='translate(8%205)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cpath%20fill='url(%23e)'%20mask='url(%23f)'%20d='M0%200h5v2.5H0z'/%3e%3cpath%20fill='%23FFF'%20mask='url(%23f)'%20d='M1%201.5h3l-.5%201h-2z'/%3e%3cpath%20d='M2%200h1v1.495A.508.508%200%200%201%202.5%202a.495.495%200%200%201-.5-.505V0zM1%201s.75%201.5%201.5%201.5S4%201%204%201v1c0%20.552-.443%201-.999%201H1.999A.997.997%200%200%201%201%202V1z'%20fill='url(%23g)'%20mask='url(%23f)'/%3e%3cpath%20fill='url(%23h)'%20mask='url(%23f)'%20d='M0%203h5v2H0z'/%3e%3cpath%20fill='%23FFF'%20mask='url(%23f)'%20d='M0%203.5h5V4H0z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.pf.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E02639'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DC2235'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3ccircle%20id='d'%20cx='2.5'%20cy='2.5'%20r='2.5'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFA135'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD9C2D'%20offset='100%25'/%3e%3c/linearGradient%3e%3ccircle%20id='g'%20cx='2.5'%20cy='2.5'%20r='2.5'/%3e%3ccircle%20id='i'%20cx='2.5'%20cy='2.5'%20r='2.5'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='j'%3e%3cstop%20stop-color='%23DF2034'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3ccircle%20id='l'%20cx='2.5'%20cy='2.5'%20r='2.5'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='m'%3e%3cstop%20stop-color='%230B4BAD'%20offset='0%25'/%3e%3cstop%20stop-color='%2308429A'%20offset='100%25'/%3e%3c/linearGradient%3e%3ccircle%20id='o'%20cx='2.5'%20cy='2.5'%20r='2.5'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v4H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2011h15v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h15v7H0z'/%3e%3cg%20transform='translate(5%205)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cpath%20fill='url(%23e)'%20mask='url(%23f)'%20d='M0%200h5v2.5H0z'/%3e%3c/g%3e%3cg%20transform='translate(5%205)'%3e%3cmask%20id='h'%20fill='%23fff'%3e%3cuse%20xlink:href='%23g'/%3e%3c/mask%3e%3cpath%20fill='%23FFF'%20mask='url(%23h)'%20d='M1%201.5h3l-.5%201h-2z'/%3e%3c/g%3e%3cg%20transform='translate(5%205)'%3e%3cmask%20id='k'%20fill='%23fff'%3e%3cuse%20xlink:href='%23i'/%3e%3c/mask%3e%3cpath%20d='M2%200h1v1.495A.508.508%200%200%201%202.5%202a.495.495%200%200%201-.5-.505V0zM1%201s.75%201.5%201.5%201.5S4%201%204%201v1c0%20.552-.443%201-.999%201H1.999A.997.997%200%200%201%201%202V1z'%20fill='url(%23j)'%20fill-rule='nonzero'%20mask='url(%23k)'/%3e%3c/g%3e%3cg%20transform='translate(5%205)'%3e%3cmask%20id='n'%20fill='%23fff'%3e%3cuse%20xlink:href='%23l'/%3e%3c/mask%3e%3cpath%20fill='url(%23m)'%20mask='url(%23n)'%20d='M0%203h5v2H0z'/%3e%3c/g%3e%3cg%20transform='translate(5%205)'%3e%3cmask%20id='p'%20fill='%23fff'%3e%3cuse%20xlink:href='%23o'/%3e%3c/mask%3e%3cpath%20fill='%23FFF'%20mask='url(%23p)'%20d='M0%203.5h5V4H0z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.pg{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E8283F'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD84E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v15z'/%3e%3cpath%20fill='url(%23a)'%20d='M5%2012.5l-.707.207L4.5%2012l-.207-.707L5%2011.5l.707-.207L5.5%2012l.207.707zm0-6l-.707.207L4.5%206l-.207-.707L5%205.5l.707-.207L5.5%206l.207.707zM2.5%209l-.707.207L2%208.5l-.207-.707L2.5%208l.707-.207L3%208.5l.207.707zM7%208.5l-.707.207L6.5%208l-.207-.707L7%207.5l.707-.207L7.5%208l.207.707z'/%3e%3cpath%20d='M14.146%206.95a.49.49%200%200%201-.217-.377V5.65c0-.136-.098-.213-.246-.164l-.568.19a.87.87%200%200%201-.492%200l-.57-.19c-.135-.045-.15-.14-.028-.212l1.334-.8a.322.322%200%200%200%20.135-.377l-.19-.568c-.045-.136.016-.214.164-.164l.569.19a.332.332%200%200%200%20.376-.136l.8-1.334c.072-.12.163-.119.212.03l.19.568a.87.87%200%200%201%200%20.492l-.19.569c-.045.136.03.246.165.246h.921c.136%200%20.304.095.377.216l.8%201.335c.072.12.014.24-.116.266l-1.276.255a.414.414%200%200%200-.295.295l-.255%201.276c-.027.136-.144.189-.266.116l-1.334-.8z'%20fill='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.pg.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E8283F'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD84E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v15z'/%3e%3cpath%20d='M4.17%2011.86l-.48.14.14-.477-.14-.477.48.14.477-.14-.14.477.14.477-.478-.14zm0-4.046l-.48.14.14-.477L3.69%207l.48.14.477-.14-.14.477.14.477-.478-.14zM2.477%209.5L2%209.64l.14-.477L2%208.686l.478.14.478-.14-.14.477.14.477-.478-.14zm3.044-.337l-.478.14.14-.477-.14-.477.478.14.478-.14-.14.477.14.476-.478-.14z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M9.908%206.28a.424.424%200%200%201-.188-.325v-.798c0-.118-.085-.184-.213-.142l-.492.164a.754.754%200%200%201-.426%200l-.493-.164c-.117-.039-.13-.121-.024-.183l1.154-.692a.278.278%200%200%200%20.117-.326l-.164-.491c-.04-.118.014-.185.142-.142l.492.164a.287.287%200%200%200%20.326-.117l.692-1.153c.062-.104.141-.103.183.025l.165.492a.751.751%200%200%201%200%20.425l-.165.492c-.039.117.026.213.143.213h.797c.118%200%20.263.082.327.186l.692%201.155c.062.103.012.207-.1.23l-1.105.22a.358.358%200%200%200-.255.255l-.22%201.103c-.024.118-.125.164-.231.1L9.908%206.28z'%20fill='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.ph{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DD1C34'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230D4BC3'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FDD64D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200l10%207.5L0%2015z'/%3e%3cpath%20d='M3.4%208.495L2.542%209.81l.325-1.535c-.052-.043-.1-.09-.143-.143l-1.535.325L2.505%207.6a1.012%201.012%200%200%201%200-.202L1.19%206.543l1.535.325c.043-.052.09-.1.143-.143L2.543%205.19%203.4%206.505a1.012%201.012%200%200%201%20.202%200l.856-1.315-.325%201.535c.052.043.1.09.143.143l1.535-.325-1.315.856a1.012%201.012%200%200%201%200%20.202l1.315.856-1.535-.325c-.043.052-.09.1-.143.143l.325%201.535L3.6%208.495a1.012%201.012%200%200%201-.202%200zM7.5%208a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-6-5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%2010a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.ph.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DD1C34'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230D4BC3'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FDD64D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200l7%207.5L0%2015z'/%3e%3cpath%20d='M2.371%208.043l-.49.717.186-.837a.569.569%200%200%201-.082-.078l-.877.177.752-.467a.527.527%200%200%201%200-.11l-.751-.467.877.177a.569.569%200%200%201%20.081-.078l-.185-.837.49.717a.606.606%200%200%201%20.115%200l.489-.717-.186.837c.03.024.057.05.082.078l.877-.177-.751.467a.527.527%200%200%201%200%20.11l.751.467-.877-.177a.569.569%200%200%201-.082.078l.186.837-.49-.717a.606.606%200%200%201-.116%200h.001zm2.343-.27A.28.28%200%200%201%204.43%207.5a.28.28%200%200%201%20.285-.273A.28.28%200%200%201%205%207.5a.28.28%200%200%201-.286.273zM1.286%205.045A.28.28%200%200%201%201%204.773a.28.28%200%200%201%20.286-.273.28.28%200%200%201%20.285.273.28.28%200%200%201-.285.272zm0%205.455A.28.28%200%200%201%201%2010.227a.28.28%200%200%201%20.286-.272.28.28%200%200%201%20.285.272.28.28%200%200%201-.285.273z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.pk{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230A632F'%20offset='0%25'/%3e%3cstop%20stop-color='%2305411E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M15.978%2010.878a4.182%204.182%200%200%201-2.65.95c-2.383%200-4.314-2.015-4.314-4.5%200-2.486%201.931-4.5%204.314-4.5.999%200%201.919.354%202.65.95a4.165%204.165%200%200%200-1.043-.132c-2.165%200-3.92%201.648-3.92%203.682%200%202.033%201.755%203.681%203.92%203.681.361%200%20.711-.045%201.043-.131zm.036-2.77l-1.175.838.434-1.377-1.16-.86%201.443-.013.458-1.368.459%201.368%201.443.013-1.16.86.434%201.377-1.176-.838z'%20id='d'/%3e%3cfilter%20x='-2.8%25'%20y='-2.8%25'%20width='105.6%25'%20height='111.1%25'%20filterUnits='objectBoundingBox'%20id='c'%3e%3cfeOffset%20dy='.5'%20in='SourceAlpha'%20result='shadowOffsetOuter1'/%3e%3cfeColorMatrix%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.06%200'%20in='shadowOffsetOuter1'/%3e%3c/filter%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0-.002h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0-.002h6v15H0z'/%3e%3cg%20transform='rotate(-45%2013.465%207.328)'%3e%3cuse%20fill='%23000'%20filter='url(%23c)'%20xlink:href='%23d'/%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23d'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.pk.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230A632F'%20offset='0%25'/%3e%3cstop%20stop-color='%2305411E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h4v15H0z'/%3e%3cg%20fill-rule='nonzero'%3e%3cpath%20d='M12.86%208.134a3.198%203.198%200%200%201-.92%201.995c-1.31%201.31-3.513%201.233-4.918-.173-1.407-1.406-1.484-3.608-.173-4.918a3.194%203.194%200%200%201%201.994-.92%203.154%203.154%200%200%200-.648.499c-1.19%201.19-1.223%203.088-.073%204.239%201.15%201.15%203.048%201.117%204.238-.074.199-.199.366-.417.5-.648zm-1.547-1.587l-.172%201.12-.54-1.017-1.125.152.786-.801-.522-1.026%201.026.521.801-.786-.151%201.124%201.018.54-1.121.173z'%20fill='%23000'/%3e%3cpath%20d='M5.427%207.102c-.58.491-1.309.76-2.06.76C1.512%207.862.01%206.25.01%204.262s1.502-3.6%203.355-3.6c.777%200%201.493.284%202.061.76a3.154%203.154%200%200%200-.81-.105c-1.685%200-3.05%201.318-3.05%202.945%200%201.627%201.365%202.945%203.05%202.945.28%200%20.552-.036.81-.105zm.028-2.216l-.914.67.338-1.1-.902-.689%201.122-.01.356-1.095.357%201.095%201.123.01-.903.688.338%201.102-.915-.67z'%20fill='url(%23b)'%20transform='rotate(-45%2010.39%20-1.354)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.pl{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EB2A50'%20offset='0%25'/%3e%3cstop%20stop-color='%23DA1B40'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.pl.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EB2A50'%20offset='0%25'/%3e%3cstop%20stop-color='%23DA1B40'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.pm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23138E16'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7F12'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2326A7DC'%20offset='0%25'/%3e%3cstop%20stop-color='%231B94C6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FBCD3F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCE2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23F03633'%20offset='0%25'/%3e%3cstop%20stop-color='%23D82A28'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='e'%20d='M0%200h7v5H0z'/%3e%3clinearGradient%20x1='82.842%25'%20y1='18.137%25'%20x2='20.426%25'%20y2='78.479%25'%20id='g'%3e%3cstop%20stop-color='%232AA854'%20offset='0%25'/%3e%3cstop%20stop-color='%23219447'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='i'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='j'%3e%3cstop%20stop-color='%23D7181D'%20offset='0%25'/%3e%3cstop%20stop-color='%23C60E13'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='k'%3e%3cstop%20stop-color='%23FBCD3F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2015h21V0H0z'/%3e%3cpath%20d='M17.326%206.429C18.353%206.176%2019%206.109%2019%207c0%201.657-2.239%203-5%203S9%208.657%209%207c0-.89.647-.824%201.674-.571a4.114%204.114%200%200%201-.161-.563c-.287-1.35.137-2.584.947-2.757.81-.172%201.7.783%201.987%202.134.136.636.113%201.247-.034%201.733a7.414%207.414%200%200%200%201.174%200c-.147-.486-.17-1.097-.034-1.733.287-1.35%201.176-2.306%201.987-2.134.81.173%201.234%201.407.947%202.757a4.114%204.114%200%200%201-.161.563z'%20fill='url(%23d)'/%3e%3cpath%20d='M15.776%2012.947a.5.5%200%200%200%20.448%200l2-1a.5.5%200%200%200-.448-.894L16%2011.94l-1.776-.888a.5.5%200%200%200-.448%200L12%2011.94l-1.776-.888a.5.5%200%200%200-.448.894l2%201a.5.5%200%200%200%20.448%200L14%2012.06l1.776.888z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cmask%20id='h'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cuse%20fill='url(%23f)'%20xlink:href='%23e'/%3e%3cpath%20d='M4%202v-4H3v4h-4v1h4v4h1V3h4V2H4z'%20fill='url(%23g)'%20mask='url(%23h)'%20transform='rotate(-45%203.5%202.5)'/%3e%3cpath%20d='M4%202v-3H3v3H0v1h3v3h1V3h3V2H4z'%20fill='url(%23a)'%20mask='url(%23h)'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h7v5H0z'/%3e%3cpath%20d='M1.5%207a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-1%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23i)'/%3e%3cpath%20fill='url(%23j)'%20d='M0%2010h7v5H0z'/%3e%3cpath%20d='M3.5%2012c-1.38%200-2.5-.224-2.5-.5s1.12-.5%202.5-.5%202.5.224%202.5.5-1.12.5-2.5.5zm0%202c-1.38%200-2.5-.224-2.5-.5s1.12-.5%202.5-.5%202.5.224%202.5.5-1.12.5-2.5.5z'%20fill='url(%23k)'/%3e%3c/g%3e%3c/svg%3e")}.pm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2326A7DC'%20offset='0%25'/%3e%3cstop%20stop-color='%231B94C6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FBCD3F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCE2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F03633'%20offset='0%25'/%3e%3cstop%20stop-color='%23D82A28'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='e'%20d='M0%200h7v5H0z'/%3e%3clinearGradient%20x1='82.842%25'%20y1='18.137%25'%20x2='20.426%25'%20y2='78.479%25'%20id='f'%3e%3cstop%20stop-color='%232AA854'%20offset='0%25'/%3e%3cstop%20stop-color='%23219447'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='h'%20d='M0%200h7v5H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='j'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='k'%3e%3cstop%20stop-color='%23D7181D'%20offset='0%25'/%3e%3cstop%20stop-color='%23C60E13'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='l'%3e%3cstop%20stop-color='%23FBCD3F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%2015h15V0H0z'/%3e%3cpath%20d='M4.996%202.057C5.612%201.906%206%201.865%206%202.4c0%20.994-1.343%201.8-3%201.8s-3-.806-3-1.8c0-.534.388-.494%201.004-.343a2.468%202.468%200%200%201-.096-.337C.736.91.99.17%201.476.065c.486-.103%201.02.47%201.192%201.28.082.382.068.749-.02%201.04.234.02.47.02.704%200a2.126%202.126%200%200%201-.02-1.04c.172-.81.705-1.383%201.192-1.28.486.104.74.845.568%201.655a2.468%202.468%200%200%201-.096.337z'%20fill='url(%23b)'%20transform='translate(8%205)'/%3e%3cpath%20d='M4.066%205.968a.3.3%200%200%200%20.268%200l1.2-.6a.3.3%200%200%200-.268-.536L4.2%205.364l-1.066-.533a.3.3%200%200%200-.268%200L1.8%205.364.734%204.831a.3.3%200%200%200-.268.537l1.2.6a.3.3%200%200%200%20.268%200L3%205.436l1.066.533z'%20fill='url(%23c)'%20transform='translate(8%205)'/%3e%3cpath%20d='M0%200h7v5H0z'%20fill='url(%23d)'/%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cpath%20fill='url(%23f)'%20mask='url(%23g)'%20transform='rotate(-45%203.5%202.5)'%20d='M4%202v-4H3v4h-4v1h4v4h1V3h4V2z'/%3e%3cmask%20id='i'%20fill='%23fff'%3e%3cuse%20xlink:href='%23h'/%3e%3c/mask%3e%3cpath%20fill='url(%23c)'%20mask='url(%23i)'%20d='M4%202v-3H3v3H0v1h3v3h1V3h3V2z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h7v5H0z'/%3e%3cpath%20d='M1.5%207a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-1%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23j)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23k)'%20d='M0%2010h7v5H0z'/%3e%3cpath%20d='M3.5%2012c-1.38%200-2.5-.224-2.5-.5s1.12-.5%202.5-.5%202.5.224%202.5.5-1.12.5-2.5.5zm0%202c-1.38%200-2.5-.224-2.5-.5s1.12-.5%202.5-.5%202.5.224%202.5.5-1.12.5-2.5.5z'%20fill='url(%23l)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.pn{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%231F8BDE'%20offset='0%25'/%3e%3cstop%20stop-color='%231075C2'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%203.5V.51C0%20.228.215%200%20.498%200h4.004C4.777%200%205%20.227%205%20.51V3.5C5%206%202.5%207%202.5%207S0%206%200%203.5z'%20id='c'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F7E14A'%20offset='0%25'/%3e%3cstop%20stop-color='%23F7DE38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%234B8C36'%20offset='0%25'/%3e%3cstop%20stop-color='%23397127'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cg%20transform='translate(13%206)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3cuse%20fill='url(%23d)'%20xlink:href='%23c'/%3e%3cpath%20fill='url(%23e)'%20fill-rule='nonzero'%20mask='url(%23f)'%20d='M-.5%206l3-6%203%206v2h-6z'/%3e%3cpath%20fill='url(%23g)'%20fill-rule='nonzero'%20mask='url(%23f)'%20d='M0%206.118V7.5h5V6.118l-2.5-5z'/%3e%3c/g%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23h)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23h)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3c/svg%3e")}.pn.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%231F8BDE'%20offset='0%25'/%3e%3cstop%20stop-color='%231075C2'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.5V.364C0%20.163.172%200%20.398%200h3.204C3.822%200%204%20.162%204%20.364V2.5C4%204.286%202%205%202%205s-2-.714-2-2.5z'%20id='e'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23F7E14A'%20offset='0%25'/%3e%3cstop%20stop-color='%23F7DE38'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.5V.364C0%20.163.172%200%20.398%200h3.204C3.822%200%204%20.162%204%20.364V2.5C4%204.286%202%205%202%205s-2-.714-2-2.5z'%20id='h'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='i'%3e%3cstop%20stop-color='%234B8C36'%20offset='0%25'/%3e%3cstop%20stop-color='%23397127'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='k'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='l'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M0%202.5V.364C0%20.163.172%200%20.398%200h3.204C3.822%200%204%20.162%204%20.364V2.5C4%204.286%202%205%202%205s-2-.714-2-2.5z'%20fill='url(%23d)'%20transform='translate(9%209)'/%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cpath%20fill='url(%23f)'%20mask='url(%23g)'%20d='M-.4%204.286L2%200l2.4%204.286v1.428H-.4z'/%3e%3c/g%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='j'%20fill='%23fff'%3e%3cuse%20xlink:href='%23h'/%3e%3c/mask%3e%3cpath%20fill='url(%23i)'%20mask='url(%23j)'%20d='M0%204.37v.987h4V4.37L2%20.799z'/%3e%3c/g%3e%3c/g%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23k)'%20mask='url(%23c)'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23l)'%20mask='url(%23c)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23k)'%20mask='url(%23c)'/%3e%3cpath%20fill='url(%23l)'%20mask='url(%23c)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3c/svg%3e")}.pr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FA2222'%20offset='0%25'/%3e%3cstop%20stop-color='%23ED0000'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231D63F9'%20offset='0%25'/%3e%3cstop%20stop-color='%230650F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h21v3H0zm0%206h21v3H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l10%207.5L0%2015z'/%3e%3cpath%20fill='url(%23a)'%20d='M3.5%208.456L2.03%209.523l.561-1.728-1.469-1.068h1.816L3.5%205l.562%201.727h1.816l-1.47%201.068.561%201.728z'/%3e%3c/g%3e%3c/svg%3e")}.pr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FA2222'%20offset='0%25'/%3e%3cstop%20stop-color='%23ED0000'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231D63F9'%20offset='0%25'/%3e%3cstop%20stop-color='%230650F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%203h15v3H0V3zm0%206h15v3H0V9z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l10%207.5L0%2015z'/%3e%3cpath%20fill='url(%23b)'%20d='M3.5%208.456L2.03%209.523l.561-1.728-1.469-1.068h1.816L3.5%205l.562%201.727h1.816l-1.47%201.068.561%201.728z'/%3e%3c/g%3e%3c/svg%3e")}.ps{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2320934F'%20offset='0%25'/%3e%3cstop%20stop-color='%23197940'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E62539'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l10%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.ps.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2320934F'%20offset='0%25'/%3e%3cstop%20stop-color='%23197940'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E62539'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA1A2C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l7%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.pt{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF2936'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23128415'%20offset='0%25'/%3e%3cstop%20stop-color='%230A650C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FAF94F'%20offset='0%25'/%3e%3cstop%20stop-color='%23F8F736'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%231D50B5'%20offset='0%25'/%3e%3cstop%20stop-color='%2315439D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h8v15H0z'/%3e%3cpath%20d='M8%209.5a2%202%200%201%200%200-4%202%202%200%200%200%200%204zm0%201a3%203%200%201%201%200-6%203%203%200%200%201%200%206z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3cpath%20d='M7%206.256A.25.25%200%200%201%207.245%206h1.51A.25.25%200%200%201%209%206.256V8a.997.997%200%200%201-1%201c-.552%200-1-.443-1-.999V6.256z'%20fill='url(%23a)'/%3e%3cpath%20d='M8%208c.276%200%20.5-.724.5-1a.5.5%200%200%200-1%200c0%20.276.224%201%20.5%201z'%20fill='url(%23e)'/%3e%3c/g%3e%3c/svg%3e")}.pt.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FF2936'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23128415'%20offset='0%25'/%3e%3cstop%20stop-color='%230A650C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FAF94F'%20offset='0%25'/%3e%3cstop%20stop-color='%23F8F736'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%231D50B5'%20offset='0%25'/%3e%3cstop%20stop-color='%2315439D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h6v15H0z'/%3e%3cpath%20d='M3%205.5a2%202%200%201%200%200-4%202%202%200%200%200%200%204zm0%201a3%203%200%201%201%200-6%203%203%200%200%201%200%206z'%20fill='url(%23c)'%20fill-rule='nonzero'%20transform='translate(3%204)'/%3e%3cpath%20d='M2%202.256A.25.25%200%200%201%202.245%202h1.51A.25.25%200%200%201%204%202.256V4a.997.997%200%200%201-1%201c-.552%200-1-.443-1-.999V2.256z'%20fill='url(%23d)'%20transform='translate(3%204)'/%3e%3cpath%20d='M3%204c.276%200%20.5-.724.5-1a.5.5%200%200%200-1%200c0%20.276.224%201%20.5%201z'%20fill='url(%23e)'%20transform='translate(3%204)'/%3e%3c/g%3e%3c/svg%3e")}.pw{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2365C6EE'%20offset='0%25'/%3e%3cstop%20stop-color='%234FAED5'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFE044'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFDD32'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3ccircle%20fill='url(%23c)'%20cx='9.5'%20cy='7.5'%20r='4.5'/%3e%3c/g%3e%3c/svg%3e")}.pw.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2365C6EE'%20offset='0%25'/%3e%3cstop%20stop-color='%234FAED5'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFE044'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFDD32'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3ccircle%20fill='url(%23b)'%20cx='7.5'%20cy='7.5'%20r='4.5'/%3e%3c/g%3e%3c/svg%3e")}.py{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E33F39'%20offset='0%25'/%3e%3cstop%20stop-color='%23D32E28'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23124BBA'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA6'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M10.5%209a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203zm0%20.5a2%202%200%201%201%200-4%202%202%200%200%201%200%204z'%20fill='%23398153'%20fill-rule='nonzero'/%3e%3ccircle%20fill='%23E5CF58'%20cx='10.5'%20cy='7.5'%20r='1'/%3e%3c/g%3e%3c/svg%3e")}.py.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E33F39'%20offset='0%25'/%3e%3cstop%20stop-color='%23D32E28'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23124BBA'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cg%20transform='translate(5%205)'%3e%3cpath%20d='M2.5%204a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203zm0%20.5a2%202%200%201%201%200-4%202%202%200%200%201%200%204z'%20fill='%23398153'%20fill-rule='nonzero'/%3e%3ccircle%20fill='%23E5CF58'%20cx='2.5'%20cy='2.5'%20r='1'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.qa{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23A6264C'%20offset='0%25'/%3e%3cstop%20stop-color='%238C1E3E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%2015h7.5L6%2014l1.5-1L6%2012l1.5-1L6%2010l1.5-1L6%208l1.5-1L6%206l1.5-1L6%204l1.5-1L6%202l1.5-1L6%200H0z'/%3e%3c/g%3e%3c/svg%3e")}.qa.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23A6264C'%20offset='0%25'/%3e%3cstop%20stop-color='%238C1E3E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2015h7.5L6%2014l1.5-1L6%2012l1.5-1L6%2010l1.5-1L6%208l1.5-1L6%206l1.5-1L6%204l1.5-1L6%202l1.5-1L6%200H0z'/%3e%3c/g%3e%3c/svg%3e")}.re{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F44653'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231035BB'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.re.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F44653'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231035BB'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.ro{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E5253D'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230A3D9C'%20offset='0%25'/%3e%3cstop%20stop-color='%23042E7D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD955'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.ro.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E5253D'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230A3D9C'%20offset='0%25'/%3e%3cstop%20stop-color='%23042E7D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD955'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.rs{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2317508F'%20offset='0%25'/%3e%3cstop%20stop-color='%23114175'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E1444D'%20offset='0%25'/%3e%3cstop%20stop-color='%23C53840'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M.5%202.5C.5%201.826.874.485.874.485A.672.672%200%200%201%201.495%200h2.01c.273%200%20.552.214.621.481%200%200%20.374%201.33.374%202.019%200%20.645-.376%202.02-.376%202.02-.069.265-.269.654-.457.852%200%200-.417.628-1.167.628s-1.167-.628-1.167-.628a2.428%202.428%200%200%201-.46-.86S.5%203.162.5%202.5z'%20id='d'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%2010h21v5H0z'/%3e%3cg%20transform='translate(4%205)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23d'/%3e%3cpath%20fill='%23C43840'%20fill-rule='nonzero'%20mask='url(%23e)'%20d='M4.422-.203L-.203%205.578l.781.625L5.203.422z'/%3e%3cpath%20fill='%23C43840'%20fill-rule='nonzero'%20mask='url(%23e)'%20d='M-.203.422l4.625%205.78.78-.624L.579-.202z'/%3e%3c/g%3e%3cellipse%20fill='%23FFF'%20cx='6.5'%20cy='7.5'%20rx='1'%20ry='1.5'/%3e%3cpath%20d='M5%204l-.5-1%201%20.5%201-.5%201%20.5%201-.5L8%204v.5c0%20.276-.216.5-.495.5h-2.01A.503.503%200%200%201%205%204.5V4z'%20fill='%23D1A43A'/%3e%3c/g%3e%3c/svg%3e")}.rs.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2317508F'%20offset='0%25'/%3e%3cstop%20stop-color='%23114175'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E1444D'%20offset='0%25'/%3e%3cstop%20stop-color='%23C53840'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M.5%202.5C.5%201.826.874.485.874.485A.672.672%200%200%201%201.495%200h2.01c.273%200%20.552.214.621.481%200%200%20.374%201.33.374%202.019%200%20.645-.376%202.02-.376%202.02-.069.265-.269.654-.457.852%200%200-.417.628-1.167.628s-1.167-.628-1.167-.628a2.428%202.428%200%200%201-.46-.86S.5%203.162.5%202.5z'%20id='d'/%3e%3cpath%20d='M.5%202.5C.5%201.826.874.485.874.485A.672.672%200%200%201%201.495%200h2.01c.273%200%20.552.214.621.481%200%200%20.374%201.33.374%202.019%200%20.645-.376%202.02-.376%202.02-.069.265-.269.654-.457.852%200%200-.417.628-1.167.628s-1.167-.628-1.167-.628a2.428%202.428%200%200%201-.46-.86S.5%203.162.5%202.5z'%20id='f'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20d='M.5%202.5C.5%201.826.874.485.874.485A.672.672%200%200%201%201.495%200h2.01c.273%200%20.552.214.621.481%200%200%20.374%201.33.374%202.019%200%20.645-.376%202.02-.376%202.02-.069.265-.269.654-.457.852%200%200-.417.628-1.167.628s-1.167-.628-1.167-.628a2.428%202.428%200%200%201-.46-.86S.5%203.162.5%202.5z'%20fill='url(%23c)'%20transform='translate(4%205)'/%3e%3cg%20transform='translate(4%205)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cpath%20fill='%23C43840'%20mask='url(%23e)'%20d='M4.422-.203L-.203%205.578l.781.625L5.203.422z'/%3e%3c/g%3e%3cg%20transform='translate(4%205)'%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23f'/%3e%3c/mask%3e%3cpath%20fill='%23C43840'%20mask='url(%23g)'%20d='M-.203.422l4.625%205.78.78-.624L.579-.202z'/%3e%3c/g%3e%3cellipse%20fill='%23FFF'%20cx='6.5'%20cy='7.5'%20rx='1'%20ry='1.5'/%3e%3cpath%20d='M5%204l-.5-1%201%20.5%201-.5%201%20.5%201-.5L8%204v.5c0%20.276-.216.5-.495.5h-2.01A.503.503%200%200%201%205%204.5V4z'%20fill='%23D1A43A'/%3e%3c/g%3e%3c/svg%3e")}.ru{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230C47B7'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA4'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E53B35'%20offset='0%25'/%3e%3cstop%20stop-color='%23D32E28'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.ru.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230C47B7'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA4'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E53B35'%20offset='0%25'/%3e%3cstop%20stop-color='%23D32E28'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.rw{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%232D754D'%20offset='0%25'/%3e%3cstop%20stop-color='%23235F3E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2325B1EB'%20offset='0%25'/%3e%3cstop%20stop-color='%231AA3DC'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FAD546'%20offset='0%25'/%3e%3cstop%20stop-color='%23FAD12F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EDC738'%20offset='0%25'/%3e%3cstop%20stop-color='%23E5BE2A'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%207h21v4H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M16%204.5l-.765.848.058-1.14-1.14.057L15%203.5l-.848-.765%201.14.058-.057-1.14L16%202.5l.765-.848-.058%201.14%201.14-.057L17%203.5l.848.765-1.14-.058.057%201.14z'/%3e%3c/g%3e%3c/svg%3e")}.rw.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%232D754D'%20offset='0%25'/%3e%3cstop%20stop-color='%23235F3E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2325B1EB'%20offset='0%25'/%3e%3cstop%20stop-color='%231AA3DC'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FAD546'%20offset='0%25'/%3e%3cstop%20stop-color='%23FAD12F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23EDC738'%20offset='0%25'/%3e%3cstop%20stop-color='%23E5BE2A'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%2011h15v4H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%207h15v4H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M11.998%204.5l-.765.848.058-1.14-1.14.057.847-.765-.848-.765%201.14.058-.057-1.14.765.847.765-.848-.058%201.14%201.14-.057-.847.765.848.765-1.14-.058.057%201.14z'/%3e%3c/g%3e%3c/svg%3e")}.sa{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23128C4B'%20offset='0%25'/%3e%3cstop%20stop-color='%230B6C38'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M5%209h8v-.992c0-.28.193-.412.453-.281L14%208v1h1.495c.279%200%20.505.214.505.505V10c0%20.552-.443%201-.999%201h-1.506a.503.503%200%200%201-.495-.5V10H6.503c-.278%200-.66-.156-.853-.35L5%209zm0-2.748c0-.139.078-.33.18-.433l.14-.138c.1-.1.102-.26%200-.362l-.14-.138A.69.69%200%200%201%205%204.748v-.496C5%204.113%205.107%204%205.252%204h.496c.139%200%20.252.107.252.252v.496c0%20.139.046.16.116.02l.268-.536A.459.459%200%200%201%206.748%204h1.004C7.89%204%208%204.116%208%204.25c0%20.138-.107.25-.252.25h-.496A.254.254%200%200%200%207%204.75c0%20.138.107.25.252.25h.496c.139%200%20.252.108.252.245v1.51A.245.245%200%200%201%207.748%207h-.496A.249.249%200%200%201%207%206.748v-.496C7%206.113%207.116%206%207.25%206c.138%200%20.25-.116.25-.25a.247.247%200%200%200-.252-.25h-.496a.255.255%200%200%200-.252.248v1.004A.251.251%200%200%201%206.25%207%20.247.247%200%200%201%206%206.748v-.496A.254.254%200%200%200%205.75%206a.247.247%200%200%200-.25.252v.496A.254.254%200%200%201%205.25%207%20.247.247%200%200%201%205%206.748v-.496zm8%200c0-.139.078-.33.18-.433l.14-.138c.1-.1.102-.26%200-.362l-.14-.138a.69.69%200%200%201-.18-.433v-.496c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496c0%20.139.046.16.116.02l.268-.536A.459.459%200%200%201%2014.748%204h1.004c.137%200%20.248.116.248.25%200%20.138-.107.25-.252.25h-.496a.254.254%200%200%200-.252.25c0%20.138.107.25.252.25h.496c.139%200%20.252.108.252.245v1.51a.245.245%200%200%201-.252.245h-.496A.249.249%200%200%201%2015%206.748v-.496c0-.139.116-.252.25-.252.138%200%20.25-.116.25-.25a.247.247%200%200%200-.252-.25h-.496a.255.255%200%200%200-.252.248v1.004a.251.251%200%200%201-.25.248.247.247%200%200%201-.25-.252v-.496A.254.254%200%200%200%2013.75%206a.247.247%200%200%200-.25.252v.496a.254.254%200%200%201-.25.252.247.247%200%200%201-.25-.252v-.496zm-1-1.504c0%20.139-.078.33-.18.433l-.14.138c-.1.1-.102.26%200%20.362l.14.138c.1.1.18.288.18.433v.496a.248.248%200%200%201-.252.252h-.496A.249.249%200%200%201%2011%206.748v-.496c0-.139-.046-.16-.116-.02l-.268.536a.459.459%200%200%201-.364.232H9.248A.251.251%200%200%201%209%206.75c0-.138.107-.25.252-.25h.496A.254.254%200%200%200%2010%206.25.247.247%200%200%200%209.748%206h-.496A.247.247%200%200%201%209%205.755v-1.51C9%204.11%209.107%204%209.252%204h.496c.139%200%20.252.107.252.252v.496A.254.254%200%200%201%209.75%205a.253.253%200%200%200-.25.25c0%20.138.107.25.252.25h.496a.255.255%200%200%200%20.252-.248V4.248c0-.137.116-.248.25-.248.138%200%20.25.107.25.252v.496c0%20.139.116.252.25.252.138%200%20.25-.107.25-.252v-.496c0-.139.116-.252.25-.252.138%200%20.25.107.25.252v.496z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.sa.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23128C4B'%20offset='0%25'/%3e%3cstop%20stop-color='%230B6C38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M4%208.571h5.818v-.708c0-.2.14-.294.33-.2l.397.194v.714h1.088c.203%200%20.367.153.367.361v.354a.719.719%200%200%201-.727.714h-1.095a.363.363%200%200%201-.36-.357v-.357H5.093c-.202%200-.48-.112-.62-.25L4%208.57zM4%206.61c0-.1.057-.236.13-.31l.103-.098a.18.18%200%200%200%200-.259l-.102-.098A.488.488%200%200%201%204%205.534V5.18c0-.1.078-.18.183-.18h.361a.18.18%200%200%201%20.183.18v.354c0%20.1.034.115.085.015l.195-.383A.334.334%200%200%201%205.27%205H6c.1%200%20.18.083.18.179a.178.178%200%200%201-.18.178h-.361c-.1%200-.182.08-.183.179%200%20.098.077.178.183.178h.36c.102%200%20.184.077.184.175v1.079c0%20.047-.02.092-.054.125a.18.18%200%200%201-.13.05h-.36a.183.183%200%200%201-.13-.052.176.176%200%200%201-.053-.128v-.354c0-.1.084-.18.181-.18.1%200%20.182-.083.182-.179a.175.175%200%200%200-.053-.127.181.181%200%200%200-.13-.052h-.36a.186.186%200%200%200-.184.178v.717a.181.181%200%200%201-.182.177.181.181%200%200%201-.13-.052.175.175%200%200%201-.052-.128v-.354a.183.183%200%200%200-.311-.128.175.175%200%200%200-.052.128v.354a.183.183%200%200%201-.312.128A.175.175%200%200%201%204%206.963v-.354zm5.818%200c0-.1.057-.236.131-.31l.102-.098a.18.18%200%200%200%200-.259l-.102-.098a.488.488%200%200%201-.13-.31V5.18c0-.1.077-.18.182-.18h.361a.18.18%200%200%201%20.183.18v.354c0%20.1.034.115.085.015l.195-.383A.334.334%200%200%201%2011.089%205h.73c.1%200%20.181.083.181.179a.178.178%200%200%201-.183.178h-.361c-.1%200-.182.08-.183.179%200%20.098.078.178.183.178h.36c.102%200%20.184.077.184.175v1.079c0%20.047-.02.092-.054.125a.18.18%200%200%201-.13.05h-.36a.183.183%200%200%201-.13-.052.176.176%200%200%201-.053-.128v-.354c0-.1.084-.18.182-.18.1%200%20.181-.083.181-.179a.175.175%200%200%200-.053-.127.181.181%200%200%200-.13-.052h-.36a.186.186%200%200%200-.184.178v.717a.181.181%200%200%201-.182.177.181.181%200%200%201-.13-.052.175.175%200%200%201-.052-.128v-.354a.183.183%200%200%200-.311-.128.175.175%200%200%200-.052.128v.354a.183.183%200%200%201-.312.128.175.175%200%200%201-.052-.128v-.354zm-.727-1.075c0%20.1-.057.236-.131.31l-.102.098a.18.18%200%200%200%200%20.259l.102.098c.073.072.13.206.13.31v.354a.176.176%200%200%201-.052.128.182.182%200%200%201-.13.052h-.361a.183.183%200%200%201-.13-.052.176.176%200%200%201-.053-.128V6.61c0-.1-.034-.115-.085-.015l-.195.383a.334.334%200%200%201-.264.166h-.73a.178.178%200%201%201%20.003-.357h.36c.1-.001.182-.08.183-.179a.175.175%200%200%200-.053-.127.181.181%200%200%200-.13-.051h-.36a.181.181%200%200%201-.13-.05.175.175%200%200%201-.054-.125v-1.08c0-.096.078-.175.183-.175h.361a.18.18%200%200%201%20.183.18v.354a.183.183%200%200%201-.181.18.182.182%200%200%200-.182.179c0%20.098.078.178.183.178h.36c.1%200%20.181-.079.184-.177v-.717C8%205.08%208.084%205%208.182%205c.1%200%20.182.076.182.18v.354c0%20.1.084.18.181.18.1%200%20.182-.076.182-.18V5.18c0-.1.085-.18.182-.18.1%200%20.182.076.182.18v.354z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.sb{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DBE4F'%20offset='0%25'/%3e%3cstop%20stop-color='%23159B3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230660D4'%20offset='0%25'/%3e%3cstop%20stop-color='%230051BB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%232C7442'%20offset='0%25'/%3e%3cstop%20stop-color='%23225B34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFD646'%20offset='0%25'/%3e%3cstop%20stop-color='%23FED02F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M5.92%205.812c0-.139.078-.33.18-.433l.14-.138c.1-.1.102-.26%200-.362l-.14-.138a.69.69%200%200%201-.18-.433v-.496c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496c0%20.139.046.16.116.02l.268-.536a.459.459%200%200%201%20.364-.232h1.004c.137%200%20.248.116.248.25%200%20.138-.107.25-.252.25h-.496a.254.254%200%200%200-.252.25c0%20.138.107.25.252.25h.496c.139%200%20.252.108.252.245v1.51a.245.245%200%200%201-.252.245h-.496a.249.249%200%200%201-.252-.252v-.496c0-.139.116-.252.25-.252.138%200%20.25-.116.25-.25a.247.247%200%200%200-.252-.25h-.496a.255.255%200%200%200-.252.248v1.004a.251.251%200%200%201-.25.248.247.247%200%200%201-.25-.252v-.496a.254.254%200%200%200-.25-.252.247.247%200%200%200-.25.252v.496a.254.254%200%200%201-.25.252.247.247%200%200%201-.25-.252v-.496z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23b)'%20d='M0-.003h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0-.003h21l-21%2015z'/%3e%3cpath%20fill='url(%23d)'%20transform='matrix(-1%200%200%201%2021%200)'%20d='M0-.003l21%2015H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M-4%206.497h29v2H-4z'/%3e%3cpath%20d='M2.25%202.872l-.734.387.14-.819-.595-.579.822-.12.367-.744.368.745.821.12-.594.578.14.819-.735-.387zm5%200l-.734.387.14-.819-.595-.579.822-.12.367-.744.368.745.821.12-.594.578.14.819-.735-.387zm0%203l-.734.387.14-.819-.595-.579.822-.12.367-.744.368.745.821.12-.594.578.14.819-.735-.387zm-5%200l-.734.387.14-.819-.595-.579.822-.12.367-.744.368.745.821.12-.594.578.14.819-.735-.387zm2.5-1.5l-.734.387.14-.819-.595-.579.822-.12.367-.744.368.745.821.12-.594.578.14.819-.735-.387z'%20fill='%23FFF'/%3e%3c/g%3e%3c/svg%3e")}.sb.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DBE4F'%20offset='0%25'/%3e%3cstop%20stop-color='%23159B3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230660D4'%20offset='0%25'/%3e%3cstop%20stop-color='%230051BB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%232C7442'%20offset='0%25'/%3e%3cstop%20stop-color='%23225B34'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFD646'%20offset='0%25'/%3e%3cstop%20stop-color='%23FED02F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h15L0%2015z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M15%200v15H0z'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23d)'%20d='M0%207h15v2H0z'/%3e%3cpath%20d='M2.806%202.925l-.498.294.095-.622L2%202.157l.557-.091.249-.566.25.566.556.092-.403.439.095.622-.498-.294zm3.388%200l-.497.294.095-.622-.404-.44.558-.091.248-.566.25.566.556.092-.403.439.095.622-.498-.294zm0%202.28l-.497.295.095-.623-.404-.44.558-.09.248-.566.25.566.556.091-.403.44.095.622-.498-.294zm-3.388%200l-.498.295.095-.623L2%204.437l.557-.09.249-.566.25.566.556.091-.403.44.095.622-.498-.294zM4.5%204.066l-.497.295.094-.623-.403-.44.557-.091.249-.566.25.567.556.09-.403.44.095.623-.498-.294z'%20fill='%23FFF'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.sc{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DBE4F'%20offset='0%25'/%3e%3cstop%20stop-color='%23159B3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230858B4'%20offset='0%25'/%3e%3cstop%20stop-color='%23013F87'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23ED3535'%20offset='0%25'/%3e%3cstop%20stop-color='%23D62828'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%2308964F'%20offset='0%25'/%3e%3cstop%20stop-color='%23017B3E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFDD67'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD856'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7L0%2015z'/%3e%3cpath%20fill='url(%23d)'%20d='M14%200h7v5L0%2015z'/%3e%3cpath%20fill='url(%23e)'%20d='M21%2015v-5L0%2015z'/%3e%3cpath%20fill='url(%23f)'%20d='M7%200h7L0%2015z'/%3e%3cpath%20fill='url(%23a)'%20d='M21%2010V5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.sc.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231DBE4F'%20offset='0%25'/%3e%3cstop%20stop-color='%23159B3F'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230858B4'%20offset='0%25'/%3e%3cstop%20stop-color='%23013F87'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23ED3535'%20offset='0%25'/%3e%3cstop%20stop-color='%23D62828'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%2308964F'%20offset='0%25'/%3e%3cstop%20stop-color='%23017B3E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FFDD67'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDD856'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h7L0%2015z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M14%200h7v5L0%2015z'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23d)'%20d='M21%2015v-5L0%2015z'/%3e%3cpath%20fill='url(%23g)'%20mask='url(%23d)'%20d='M7%200h7L0%2015z'/%3e%3cpath%20fill='url(%23h)'%20mask='url(%23d)'%20d='M21%2010V5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.sd{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EA1F44'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%2312933B'%20offset='0%25'/%3e%3cstop%20stop-color='%230D722D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l10%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.sd.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EA1F44'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%2312933B'%20offset='0%25'/%3e%3cstop%20stop-color='%230D722D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l7%207.5L0%2015z'/%3e%3c/g%3e%3c/svg%3e")}.se{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23157CBB'%20offset='0%25'/%3e%3cstop%20stop-color='%230E6CA5'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD34D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3c/g%3e%3c/svg%3e")}.se.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23157CBB'%20offset='0%25'/%3e%3cstop%20stop-color='%230E6CA5'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD34D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3c/g%3e%3c/svg%3e")}.sg{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E12237'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%208h21v7H0zm6.874-6.343a2.5%202.5%200%201%200%200%204.686%203%203%200%201%201%200-4.686zM5.5%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2-1.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'/%3e%3c/g%3e%3c/svg%3e")}.sg.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E12237'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1126'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v8H0z'/%3e%3cpath%20d='M0%208h15v7H0V8zm6.874-6.343a2.5%202.5%200%201%200%200%204.686%203%203%200%201%201%200-4.686zM5.5%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2-1.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.sh{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23A7D2FF'%20offset='0%25'/%3e%3cstop%20stop-color='%2391C6FD'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%203.5V.51C0%20.228.215%200%20.498%200h4.004C4.777%200%205%20.227%205%20.51V3.5C5%205.5%202.5%206%202.5%206S0%205.5%200%203.5z'%20id='c'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EE7B2D'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC621A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FFFC4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFFC38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cg%20transform='translate(13%206)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3cuse%20fill='url(%23d)'%20xlink:href='%23c'/%3e%3cpath%20d='M.5%206.5c.828%200%201-1.395%201-2.5s-.172-1.5-1-1.5C-.328%202.5-1%202.895-1%204S-.328%206.5.5%206.5z'%20fill='url(%23e)'%20mask='url(%23f)'/%3e%3cellipse%20fill='%23A75113'%20mask='url(%23f)'%20cx='2.5'%20cy='4.5'%20rx='1.5'%20ry='1'/%3e%3cellipse%20fill='%23FFF'%20mask='url(%23f)'%20cx='2.5'%20cy='3.5'%20rx='1'%20ry='1'/%3e%3cpath%20fill='url(%23g)'%20mask='url(%23f)'%20d='M0%200h5v2H0z'/%3e%3c/g%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23h)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23h)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3c/svg%3e")}.sh.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23A7D2FF'%20offset='0%25'/%3e%3cstop%20stop-color='%2391C6FD'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='e'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23EE7B2D'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC621A'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='h'/%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='j'/%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='l'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='m'%3e%3cstop%20stop-color='%23FFFC4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFFC38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='o'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='p'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20fill='url(%23d)'%20transform='translate(9%209)'/%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cpath%20d='M.4%205.417c.662%200%20.8-1.163.8-2.084%200-.92-.138-1.25-.8-1.25s-1.2.33-1.2%201.25c0%20.921.538%202.084%201.2%202.084z'%20fill='url(%23f)'%20mask='url(%23g)'/%3e%3c/g%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='i'%20fill='%23fff'%3e%3cuse%20xlink:href='%23h'/%3e%3c/mask%3e%3cellipse%20fill='%23A75113'%20mask='url(%23i)'%20cx='2'%20cy='3.75'%20rx='1.2'%20ry='1'/%3e%3c/g%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='k'%20fill='%23fff'%3e%3cuse%20xlink:href='%23j'/%3e%3c/mask%3e%3cellipse%20fill='%23FFF'%20mask='url(%23k)'%20cx='2'%20cy='2.917'%20rx='1'%20ry='1'/%3e%3c/g%3e%3cg%20transform='translate(9%209)'%3e%3cmask%20id='n'%20fill='%23fff'%3e%3cuse%20xlink:href='%23l'/%3e%3c/mask%3e%3cpath%20fill='url(%23m)'%20mask='url(%23n)'%20d='M0%200h4v1.667H0z'/%3e%3c/g%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M5%204.23L.648.5H2.66L6.16%203h.697L11.5.098V1.25c0%20.303-.167.627-.418.806L8%204.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L6.84%206h-.697L1.5%208.902v-1.66l3.5-2.5V4.23z'%20fill='url(%23o)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M5.5%204L2%201h.5L6%203.5h1L11%201v.25a.537.537%200%200%201-.208.399L7.5%204v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L7%205.5H6L2%208v-.5L5.5%205V4z'%20fill='url(%23p)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M2%203.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V5.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H7.5V1h-2v2.5H2z'%20fill='url(%23o)'%20transform='translate(-2%20-1)'/%3e%3cpath%20fill='url(%23p)'%20d='M2%204h4V1h1v3h4v1H7v3H6V5H2z'%20transform='translate(-2%20-1)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.si{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230C47B7'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA4'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E53B35'%20offset='0%25'/%3e%3cstop%20stop-color='%23D32E28'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%203h21v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20d='M0%205V0h21v5H6.933V4s-.705-.5-1.433-.5C4.772%203.5%204%204%204%204v1H0zm5.5%202a1%201%200%201%201%200-2%201%201%200%200%201%200%202z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.si.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230C47B7'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA4'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23E53B35'%20offset='0%25'/%3e%3cstop%20stop-color='%23D32E28'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%203h21v7H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20d='M0%205V0h21v5H6.933V4s-.705-.5-1.433-.5C4.772%203.5%204%204%204%204v1H0zm5.5%202a1%201%200%201%201%200-2%201%201%200%200%201%200%202z'%20fill='url(%23b)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.sj{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F14247'%20offset='0%25'/%3e%3cstop%20stop-color='%23ED2F35'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230A3A85'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.sj.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F14247'%20offset='0%25'/%3e%3cstop%20stop-color='%23ED2F35'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%230A3A85'%20offset='0%25'/%3e%3cstop%20stop-color='%23032A67'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%209h6v6h3V9h12V6H9V0H6v6H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%208h7v7h1V8h13V7H8V0H7v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.sk{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230C47B7'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA4'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E53B35'%20offset='0%25'/%3e%3cstop%20stop-color='%23D32E28'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23F73744'%20offset='0%25'/%3e%3cstop%20stop-color='%23EC212F'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M1.711%202.001A1.048%201.048%200%200%201%202.751%201H7.25c.553%200%201.018.447%201.04%201.001L8.46%206.5c.022.553-.297%201.289-.72%201.652L6.146%209.518c-.633.542-1.662.54-2.292%200L2.259%208.15c-.419-.36-.742-1.098-.72-1.652L1.71%202z'%20id='e'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v5H0z'/%3e%3cg%20transform='translate(2.5%202)'%3e%3cpath%20d='M2.751%200H7.25c1.09%200%201.997.872%202.039%201.963L9.46%206.46c.033.86-.415%201.89-1.07%202.45l-1.594%201.367c-1.007.863-2.589.861-3.594%200L1.61%208.91C.957%208.352.506%207.32.539%206.46l.173-4.497A2.048%202.048%200%200%201%202.752%200z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cuse%20fill='url(%23f)'%20xlink:href='%23e'/%3e%3cpath%20d='M4.5%206.245A.25.25%200%200%200%204.252%206H3.248A.246.246%200%200%201%203%205.748v-.496C3%205.113%203.118%205%203.248%205h1.004a.246.246%200%200%200%20.248-.252v-.496A.249.249%200%200%200%204.248%204h-.496a.249.249%200%200%201-.252-.252v-.496c0-.139.107-.252.252-.252h.496a.248.248%200%200%200%20.252-.252v-.496c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496c0%20.139.107.252.252.252h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%206.248%204h-.496a.249.249%200%200%200-.252.252v.496c0%20.139.118.252.248.252h1.004C6.89%205%207%205.107%207%205.252v.496A.255.255%200%200%201%206.752%206H5.748a.245.245%200%200%200-.248.245v1.51A.245.245%200%200%201%205.248%208h-.496a.247.247%200%200%201-.252-.245v-1.51z'%20fill='url(%23a)'%20mask='url(%23g)'/%3e%3cpath%20d='M4.097%208.07C2.882%208.26%202%208.828%202%209.5c0%20.828%201.343%201.5%203%201.5s3-.672%203-1.5c0-.671-.882-1.24-2.097-1.43a1%201%200%200%200-1.806%200z'%20fill='%231251A1'%20mask='url(%23g)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.sk.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230C47B7'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA4'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E53B35'%20offset='0%25'/%3e%3cstop%20stop-color='%23D32E28'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F73744'%20offset='0%25'/%3e%3cstop%20stop-color='%23EC212F'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M.711%201.001A1.048%201.048%200%200%201%201.751%200H6.25c.553%200%201.018.447%201.04%201.001L7.46%205.5c.022.553-.297%201.289-.72%201.652L5.146%208.518c-.633.542-1.662.54-2.292%200L1.259%207.15C.84%206.79.517%206.052.539%205.498L.71%201l.001.001z'%20id='e'/%3e%3cpath%20d='M.711%201.001A1.048%201.048%200%200%201%201.751%200H6.25c.553%200%201.018.447%201.04%201.001L7.46%205.5c.022.553-.297%201.289-.72%201.652L5.146%208.518c-.633.542-1.662.54-2.292%200L1.259%207.15C.84%206.79.517%206.052.539%205.498L.71%201l.001.001z'%20id='g'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h15v5H0z'/%3e%3cpath%20d='M2.751%200H7.25c1.09%200%201.997.872%202.039%201.963L9.46%206.46c.033.86-.415%201.89-1.07%202.45l-1.594%201.367c-1.007.863-2.589.861-3.594%200L1.61%208.91C.957%208.352.506%207.32.539%206.46l.173-4.497A2.048%202.048%200%200%201%202.752%200h-.001z'%20fill='url(%23c)'%20transform='translate(2.5%202)'/%3e%3cpath%20d='M.711%201.001A1.048%201.048%200%200%201%201.751%200H6.25c.553%200%201.018.447%201.04%201.001L7.46%205.5c.022.553-.297%201.289-.72%201.652L5.146%208.518c-.633.542-1.662.54-2.292%200L1.259%207.15C.84%206.79.517%206.052.539%205.498L.71%201l.001.001z'%20transform='translate(3.5%203)'%20fill='url(%23d)'/%3e%3cg%20transform='translate(3.5%203)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cpath%20d='M3.5%205.245A.25.25%200%200%200%203.252%205H2.248A.246.246%200%200%201%202%204.748v-.496C2%204.113%202.118%204%202.248%204h1.004a.246.246%200%200%200%20.248-.252v-.496A.249.249%200%200%200%203.248%203h-.496a.249.249%200%200%201-.252-.252v-.496c0-.139.107-.252.252-.252h.496a.248.248%200%200%200%20.252-.252v-.496c0-.139.107-.252.252-.252h.496c.139%200%20.252.107.252.252v.496c0%20.139.107.252.252.252h.496c.139%200%20.252.107.252.252v.496A.248.248%200%200%201%205.248%203h-.496a.249.249%200%200%200-.252.252v.496c0%20.139.118.252.248.252h1.004C5.89%204%206%204.107%206%204.252v.496A.255.255%200%200%201%205.752%205H4.748a.245.245%200%200%200-.248.245v1.51A.245.245%200%200%201%204.248%207h-.496a.247.247%200%200%201-.252-.245v-1.51z'%20fill='url(%23c)'%20mask='url(%23f)'/%3e%3c/g%3e%3cg%20transform='translate(3.5%203)'%3e%3cmask%20id='h'%20fill='%23fff'%3e%3cuse%20xlink:href='%23g'/%3e%3c/mask%3e%3cpath%20d='M3.097%207.07C1.882%207.26%201%207.828%201%208.5%201%209.328%202.343%2010%204%2010s3-.672%203-1.5c0-.671-.882-1.24-2.097-1.43a1%201%200%200%200-1.806%200z'%20fill='%231251A1'%20mask='url(%23h)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.sl{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2335CE4F'%20offset='0%25'/%3e%3cstop%20stop-color='%232AB441'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231C87DB'%20offset='0%25'/%3e%3cstop%20stop-color='%231175C4'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.sl.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2335CE4F'%20offset='0%25'/%3e%3cstop%20stop-color='%232AB441'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231C87DB'%20offset='0%25'/%3e%3cstop%20stop-color='%231175C4'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.sm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%237CCCF5'%20offset='0%25'/%3e%3cstop%20stop-color='%2362B7E3'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v7H0z'/%3e%3cpath%20d='M8%207a2.5%202.5%200%200%200%201.247%202.164.5.5%200%200%200%20.502-.865A1.499%201.499%200%200%201%209%207a.5.5%200%200%200-1%200zm3.846%202.107A2.498%202.498%200%200%200%2013%207a.5.5%200%201%200-1%200%201.5%201.5%200%200%201-.693%201.265.5.5%200%201%200%20.539.842z'%20fill='%23445F42'%20fill-rule='nonzero'/%3e%3cellipse%20fill='%23D89F3D'%20cx='10.5'%20cy='6.5'%20rx='1'%20ry='1.5'/%3e%3c/g%3e%3c/svg%3e")}.sm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%237CCCF5'%20offset='0%25'/%3e%3cstop%20stop-color='%2362B7E3'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v7H0z'/%3e%3cg%20transform='translate(5%205)'%3e%3cpath%20d='M0%202a2.5%202.5%200%200%200%201.247%202.164.5.5%200%200%200%20.502-.865A1.499%201.499%200%200%201%201%202a.5.5%200%200%200-1%200zm3.846%202.107A2.498%202.498%200%200%200%205%202a.5.5%200%200%200-1%200%201.5%201.5%200%200%201-.693%201.265.5.5%200%201%200%20.539.842z'%20fill='%23445F42'%20fill-rule='nonzero'/%3e%3cellipse%20fill='%23D89F3D'%20cx='2.5'%20cy='1.5'%20rx='1'%20ry='1.5'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.sn{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F13642'%20offset='0%25'/%3e%3cstop%20stop-color='%23E1202C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2317A052'%20offset='0%25'/%3e%3cstop%20stop-color='%23108442'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF166'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDEE54'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%200h7v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M10.5%208.525l-1.47.998.495-1.706-1.403-1.09%201.776-.056L10.5%205l.602%201.67%201.776.057-1.403%201.09.494%201.706z'/%3e%3c/g%3e%3c/svg%3e")}.sn.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23F13642'%20offset='0%25'/%3e%3cstop%20stop-color='%23E1202C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2317A052'%20offset='0%25'/%3e%3cstop%20stop-color='%23108442'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF166'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDEE54'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M5%200h5v15H5z'/%3e%3cpath%20fill='url(%23b)'%20d='M7.5%208.338L6.573%209l.312-1.132L6%207.145l1.12-.037L7.5%206l.38%201.108L9%207.145l-.885.723L8.427%209z'/%3e%3c/g%3e%3c/svg%3e")}.so{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%235D9FE9'%20offset='0%25'/%3e%3cstop%20stop-color='%23458BDB'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M10.5%209.255l-2.645%201.886.976-3.099L6.22%206.11l3.247-.029L10.5%203l1.032%203.08%203.248.03-2.61%201.932.975%203.099z'/%3e%3c/g%3e%3c/svg%3e")}.so.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%235D9FE9'%20offset='0%25'/%3e%3cstop%20stop-color='%23458BDB'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7.28%209.255l-2.645%201.886.976-3.099L3%206.11l3.247-.029L7.28%203l1.032%203.08%203.248.03-2.61%201.932.975%203.099z'/%3e%3c/g%3e%3c/svg%3e")}.sr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2343924C'%20offset='0%25'/%3e%3cstop%20stop-color='%233A7E42'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23CD153A'%20offset='0%25'/%3e%3cstop%20stop-color='%23B31031'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F5D24B'%20offset='0%25'/%3e%3cstop%20stop-color='%23ECC736'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v3H0zm0%2012h21v3H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h21v9H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M10.5%208.775l-1.47.998.495-1.706-1.403-1.09%201.776-.056.602-1.671.602%201.67%201.776.057-1.403%201.09.494%201.706z'/%3e%3c/g%3e%3c/svg%3e")}.sr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2343924C'%20offset='0%25'/%3e%3cstop%20stop-color='%233A7E42'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23CD153A'%20offset='0%25'/%3e%3cstop%20stop-color='%23B31031'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F5D24B'%20offset='0%25'/%3e%3cstop%20stop-color='%23ECC736'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h15v3H0V0zm0%2012h15v3H0v-3z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h15v9H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7.378%208.775l-1.47.998.495-1.706L5%206.977l1.776-.056.602-1.671.602%201.67%201.776.057-1.403%201.09.494%201.706z'/%3e%3c/g%3e%3c/svg%3e")}.ss{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E22A32'%20offset='0%25'/%3e%3cstop%20stop-color='%23D61C24'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%232CA244'%20offset='0%25'/%3e%3cstop%20stop-color='%23218736'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23185AC6'%20offset='0%25'/%3e%3cstop%20stop-color='%23104CAD'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FDE14A'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCDC34'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%204h21v1H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2011h21v4H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%2010h21v1H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%200l10%207.5L0%2015z'/%3e%3cpath%20fill='url(%23f)'%20d='M3.836%207.987l-.683%201.28-.205-1.437-1.429-.254%201.304-.639-.2-1.437%201.01%201.042%201.306-.634-.68%201.283%201.007%201.046z'/%3e%3c/g%3e%3c/svg%3e")}.ss.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E22A32'%20offset='0%25'/%3e%3cstop%20stop-color='%23D61C24'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%232CA244'%20offset='0%25'/%3e%3cstop%20stop-color='%23218736'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23185AC6'%20offset='0%25'/%3e%3cstop%20stop-color='%23104CAD'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FDE14A'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCDC34'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v4H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h15v1H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2011h15v4H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v1H0z'/%3e%3cpath%20fill='url(%23e)'%20d='M0%200l7%207.5L0%2015z'/%3e%3cpath%20fill='url(%23f)'%20d='M3.067%207.987l-.683%201.28-.205-1.437L.75%207.576l1.304-.639-.2-1.437%201.01%201.042%201.306-.634-.68%201.283%201.007%201.046z'/%3e%3c/g%3e%3c/svg%3e")}.st{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%232ACB41'%20offset='0%25'/%3e%3cstop%20stop-color='%2321AC35'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FDD043'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCD2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E71E43'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0zM0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l8%207.5L0%2015z'/%3e%3cpath%20fill='url(%23e)'%20d='M11%208.32l-1.176.798.396-1.365-1.122-.871%201.42-.045L11%205.5l.482%201.337%201.42.045-1.122.871.396%201.365zm5%200l-1.176.798.396-1.365-1.122-.871%201.42-.045L16%205.5l.482%201.337%201.42.045-1.122.871.396%201.365z'/%3e%3c/g%3e%3c/svg%3e")}.st.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%232ACB41'%20offset='0%25'/%3e%3cstop%20stop-color='%2321AC35'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FDD043'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCD2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E71E43'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%2010h15v5H0v-5zM0%200h15v5H0V0z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l6%207.5L0%2015z'/%3e%3cpath%20d='M8.512%208.338L7.577%209l.315-1.132L7%207.146l1.129-.037L8.512%206l.384%201.109%201.129.037-.893.722L9.447%209l-.935-.662zm3.976%200L11.553%209l.315-1.132-.893-.722%201.13-.037L12.487%206l.383%201.109%201.13.037-.892.722L13.423%209l-.935-.662z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.sv{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%231B57C4'%20offset='0%25'/%3e%3cstop%20stop-color='%23154BAD'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%233C7839'%20offset='0%25'/%3e%3cstop%20stop-color='%2331642E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0zm0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M9.3%205.9a2%202%200%201%200%202.4%200L11%208h-1l-.7-2.1z'%20fill='url(%23c)'/%3e%3cpath%20fill='%23F9C92E'%20d='M10.5%205.5L11%208h-1z'/%3e%3c/g%3e%3c/svg%3e")}.sv.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%231B57C4'%20offset='0%25'/%3e%3cstop%20stop-color='%23154BAD'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%233C7839'%20offset='0%25'/%3e%3cstop%20stop-color='%2331642E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%200h15v5H0V0zm0%2010h15v5H0v-5z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v5H0z'/%3e%3cpath%20d='M1.3.9a2%202%200%201%200%202.4%200L3%203H2L1.3.9z'%20fill='url(%23c)'%20transform='translate(5%205)'/%3e%3cpath%20fill='%23F9C92E'%20d='M7.5%205.5L8%208H7z'/%3e%3c/g%3e%3c/svg%3e")}.sx{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230740AA'%20offset='0%25'/%3e%3cstop%20stop-color='%23012F85'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F02C33'%20offset='0%25'/%3e%3cstop%20stop-color='%23D82027'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E72C33'%20offset='0%25'/%3e%3cstop%20stop-color='%23D82027'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%2378C1F0'%20offset='0%25'/%3e%3cstop%20stop-color='%2367B1E0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23F7E14B'%20offset='0%25'/%3e%3cstop%20stop-color='%23F7DF3E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%207h21v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v7H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200l10%207.5L0%2015z'/%3e%3cpath%20d='M1.5%207V5.506A.997.997%200%200%201%202.495%204.5h2.01c.55%200%20.995.457.995%201.006V7c0%20.845-.384%201.447-1.003%201.798a2.304%202.304%200%200%201-1.03.3%202.312%202.312%200%200%201-.964-.3C1.884%208.447%201.5%207.845%201.5%207z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3cpath%20d='M2%207V5.506c0-.28.216-.506.495-.506h2.01c.273%200%20.495.232.495.506V7c0%201.5-1.5%201.6-1.5%201.6S2%208.5%202%207z'%20fill='url(%23e)'/%3e%3cpath%20fill='%23FFF'%20d='M3%206.5l.5-.5.5.5v1H3z'/%3e%3cpath%20d='M1.001%209.368A3.389%203.389%200%200%200%203.5%2010.5c.948%200%201.915-.448%202.521-1.162a.5.5%200%200%200-.762-.647A2.395%202.395%200%200%201%203.5%209.5a2.39%202.39%200%200%201-1.743-.787.5.5%200%201%200-.756.655z'%20fill='%23F9D835'%20fill-rule='nonzero'/%3e%3ccircle%20fill='url(%23f)'%20cx='3.5'%20cy='4.5'%20r='1'/%3e%3c/g%3e%3c/svg%3e")}.sx.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230740AA'%20offset='0%25'/%3e%3cstop%20stop-color='%23012F85'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F02C33'%20offset='0%25'/%3e%3cstop%20stop-color='%23D82027'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23E72C33'%20offset='0%25'/%3e%3cstop%20stop-color='%23D82027'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%2378C1F0'%20offset='0%25'/%3e%3cstop%20stop-color='%2367B1E0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23F7E14B'%20offset='0%25'/%3e%3cstop%20stop-color='%23F7DF3E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%207h15v8H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v7H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l7%207.5L0%2015z'/%3e%3cg%20transform='translate(0%204)'%3e%3cpath%20d='M1.071%203V1.88a.768.768%200%200%201%20.206-.533.696.696%200%200%201%20.505-.222h1.436c.393%200%20.71.343.71.754V3c0%20.634-.274%201.085-.716%201.348a1.588%201.588%200%200%201-.736.226%201.596%201.596%200%200%201-.688-.226C1.346%204.085%201.07%203.634%201.07%203z'%20fill='url(%23d)'/%3e%3cpath%20d='M1.429%203V1.88c0-.21.154-.38.353-.38h1.436c.195%200%20.353.174.353.38V3c0%201.125-1.071%201.2-1.071%201.2S1.429%204.125%201.429%203z'%20fill='url(%23e)'/%3e%3cpath%20fill='%23FFF'%20d='M2.143%202.625L2.5%202.25l.357.375v.75h-.714z'/%3e%3cpath%20d='M.715%204.776a2.373%202.373%200%200%200%201.785.849c.677%200%201.368-.336%201.8-.872a.388.388%200%200%200-.047-.52.345.345%200%200%200-.497.035c-.318.38-.775.6-1.256.607a1.673%201.673%200%200%201-1.245-.59.348.348%200%200%200-.338-.123.363.363%200%200%200-.27.246.39.39%200%200%200%20.068.368z'%20fill='%23F9D835'/%3e%3cellipse%20fill='url(%23f)'%20cx='2.5'%20cy='1.125'%20rx='1'%20ry='1'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.sy{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E32139'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23128A49'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7A40'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%208.32l-1.176.798.396-1.365-1.122-.871%201.42-.045L7%205.5l.482%201.337%201.42.045-1.122.871.396%201.365zm7%200l-1.176.798.396-1.365-1.122-.871%201.42-.045L14%205.5l.482%201.337%201.42.045-1.122.871.396%201.365z'/%3e%3c/g%3e%3c/svg%3e")}.sy.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E32139'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23128A49'%20offset='0%25'/%3e%3cstop%20stop-color='%230F7A40'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20d='M3.902%208.32l-1.176.798.396-1.365L2%206.882l1.42-.045.482-1.337.482%201.337%201.42.045-1.122.871.396%201.365-1.176-.798zm7%200l-1.176.798.396-1.365L9%206.882l1.42-.045.482-1.337.482%201.337%201.42.045-1.122.871.396%201.365-1.176-.798z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.sz{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23486BCA'%20offset='0%25'/%3e%3cstop%20stop-color='%233E5FBA'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFDF20'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFDA00'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23CF1615'%20offset='0%25'/%3e%3cstop%20stop-color='%23B20D0C'%20offset='100%25'/%3e%3c/linearGradient%3e%3cellipse%20id='e'%20cx='4.5'%20cy='2.5'%20rx='4.5'%20ry='2.5'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v3H0zm0%2012h21v3H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%203h21v9H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%204h21v7H0z'/%3e%3cg%20transform='translate(6%205)'%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cuse%20fill='url(%23a)'%20xlink:href='%23e'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23g)'%20transform='matrix(-1%200%200%201%205%200)'%20d='M0%200h5v5H1z'/%3e%3ccircle%20fill='%231A1A1A'%20mask='url(%23g)'%20cx='5.5'%20cy='2.5'%20r='1'/%3e%3ccircle%20fill='%23F6F6F6'%20mask='url(%23g)'%20cx='3.5'%20cy='2.5'%20r='1'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.sz.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23486BCA'%20offset='0%25'/%3e%3cstop%20stop-color='%233E5FBA'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFDF20'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFDA00'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23CF1615'%20offset='0%25'/%3e%3cstop%20stop-color='%23B20D0C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cellipse%20id='e'%20cx='4.5'%20cy='2.5'%20rx='4.5'%20ry='2.5'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3cellipse%20id='h'%20cx='4.5'%20cy='2.5'%20rx='4.5'%20ry='2.5'/%3e%3cellipse%20id='j'%20cx='4.5'%20cy='2.5'%20rx='4.5'%20ry='2.5'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%200h15v3H0V0zm0%2012h15v3H0v-3z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%203h15v9H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%204h15v7H0z'/%3e%3cellipse%20cx='4.5'%20cy='2.5'%20rx='4.5'%20ry='2.5'%20fill='url(%23d)'%20transform='translate(3%205)'/%3e%3cg%20transform='translate(3%205)'%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cpath%20fill='url(%23f)'%20mask='url(%23g)'%20transform='matrix(-1%200%200%201%205%200)'%20d='M0%200h5v5H1z'/%3e%3c/g%3e%3cg%20transform='translate(3%205)'%3e%3cmask%20id='i'%20fill='%23fff'%3e%3cuse%20xlink:href='%23h'/%3e%3c/mask%3e%3ccircle%20fill='%231A1A1A'%20mask='url(%23i)'%20cx='5.5'%20cy='2.5'%20r='1'/%3e%3c/g%3e%3cg%20transform='translate(3%205)'%3e%3cmask%20id='k'%20fill='%23fff'%3e%3cuse%20xlink:href='%23j'/%3e%3c/mask%3e%3ccircle%20fill='%23F6F6F6'%20mask='url(%23k)'%20cx='3.5'%20cy='2.5'%20r='1'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.ta{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23A7D2FF'%20offset='0%25'/%3e%3cstop%20stop-color='%2391C6FD'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%203.5V.51C0%20.228.215%200%20.498%200h4.004C4.777%200%205%20.227%205%20.51V3.5C5%205.5%202.5%206%202.5%206S0%205.5%200%203.5z'%20id='c'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EE7B2D'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC621A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FFFC4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFFC38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23h)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23h)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3cpath%20fill='%232fadf5'%20d='M17,7.7c0,0.2,0,0.8,0,1c-0.1,0.9-0.6,1.8-1.6,2.2c-1.2-0.5-1.6-1.3-1.7-2.2c0-0.2,0-0.5,0-0.8l0-1.2H17%20L17,7.7z'/%3e%3cpath%20fill='%23FFFFFF'%20d='M16.9,8.7c0,0,0,0.1,0,0.1c-0.1,0.9-0.6,1.7-1.6,2.1c-1.1-0.4-1.5-1.2-1.7-2.1c0,0,0-0.1,0-0.1'/%3e%3cpolygon%20fill='%232fadf5'%20points='15.3,9.8%2014.7,8.7%2015.9,8.7'/%3e%3cpolygon%20fill='%23FFFFFF'%20points='15.3,7.6%2014.7,8.7%2015.9,8.7%20'/%3e%3cellipse%20fill='%23dc9f47'%20cx='17.6'%20cy='9.4'%20rx='0.4'%20ry='1.1'/%3e%3cellipse%20fill='%23dc9f47'%20cx='13'%20cy='9.4'%20rx='0.4'%20ry='1.1'/%3e%3cpolygon%20fill='%23FFFFFF'%20points='15.3,4.1%2014.4,5.2%2016.2,5.2%20'/%3e%3cpath%20fill='%23FFFFFF'%20d='M13.5,10.5c0,0,0.9,0.8,1.8,0.8c0.9,0,1.7-0.8,1.7-0.8l0.2,0.4c0,0-0.6,0.8-2,0.8c-1.4,0-2-0.8-2-0.8L13.5,10.5z'/%3e%3cellipse%20fill='%23A5A5A5'%20cx='15.3'%20cy='6'%20rx='0.9'%20ry='0.6'/%3e%3c/svg%3e")}.ta.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23A7D2FF'%20offset='0%25'/%3e%3cstop%20stop-color='%2391C6FD'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='e'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23EE7B2D'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC621A'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='h'/%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='j'/%3e%3cpath%20d='M0%202.917V.425C0%20.19.172%200%20.398%200h3.204C3.822%200%204%20.19%204%20.425v2.492C4%204.583%202%205%202%205s-2-.417-2-2.083z'%20id='l'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='m'%3e%3cstop%20stop-color='%23FFFC4B'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFFC38'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='o'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='p'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M5%204.23L.648.5H2.66L6.16%203h.697L11.5.098V1.25c0%20.303-.167.627-.418.806L8%204.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L6.84%206h-.697L1.5%208.902v-1.66l3.5-2.5V4.23z'%20fill='url(%23o)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M5.5%204L2%201h.5L6%203.5h1L11%201v.25a.537.537%200%200%201-.208.399L7.5%204v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L7%205.5H6L2%208v-.5L5.5%205V4z'%20fill='url(%23p)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M2%203.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V5.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H7.5V1h-2v2.5H2z'%20fill='url(%23o)'%20transform='translate(-2%20-1)'/%3e%3cpath%20fill='url(%23p)'%20d='M2%204h4V1h1v3h4v1H7v3H6V5H2z'%20transform='translate(-2%20-1)'/%3e%3c/g%3e%3c/g%3e%3cpath%20fill='%232fadf5'%20d='M12.6,10.3c0,0.2,0,0.7,0,1C12.5,12.2,12,13,11,13.4c-1.1-0.4-1.5-1.3-1.6-2.1c0-0.2,0-0.5,0-0.7l0-1.2h3.2%20L12.6,10.3z'/%3e%3cpath%20fill='%23FFFFFF'%20d='M12.6,11.3c0,0,0,0.1,0,0.1c-0.1,0.8-0.6,1.6-1.5,2c-1.1-0.4-1.5-1.2-1.6-2c0,0,0-0.1,0-0.1'/%3e%3cpolygon%20fill='%232fadf5'%20points='11,12.4%2010.5,11.3%2011.6,11.3'/%3e%3cpolygon%20fill='%23FFFFFF'%20points='11,10.2%2010.5,11.3%2011.6,11.3'/%3e%3cellipse%20fill='%23dc9f47'%20cx='13.2'%20cy='12'%20rx='0.4'%20ry='1.1'/%3e%3cellipse%20fill='%23dc9f47'%20cx='8.8'%20cy='12'%20rx='0.4'%20ry='1.1'/%3e%3cpolygon%20fill='%23FFFFFF'%20points='11,6.9%2010.2,8%2011.9,8'/%3e%3cpath%20fill='%23FFFFFF'%20d='M9.3,13.1c0,0,0.8,0.7,1.7,0.7s1.7-0.7,1.7-0.7l0.2,0.4c0,0-0.5,0.8-1.9,0.8s-1.9-0.8-1.9-0.8L9.3,13.1z'/%3e%3cellipse%20fill='%23A5A5A5'%20cx='11'%20cy='8.7'%20rx='0.9'%20ry='0.6'/%3e%3c/svg%3e")}.tc{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD033'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC403'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M13%207.5V5c0-.553.444-1%201-1h3c.552%200%201%20.441%201%201v2.5c0%202.5-2.5%203.5-2.5%203.5S13%2010%2013%207.5z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M15.644%2010.37c.263-.15.527-.334.772-.554C17.099%209.2%2017.5%208.439%2017.5%207.5V5c0-.28-.221-.5-.5-.5h-3c-.279%200-.5.222-.5.5v2.5c0%20.939.401%201.701%201.084%202.316a4.398%204.398%200%200%200%20.916.632c.043-.022.091-.048.144-.078z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3cellipse%20fill='%23BA5B1F'%20cx='16.5'%20cy='6'%20rx='1'%20ry='1'/%3e%3cellipse%20fill='%23FF9F3E'%20transform='rotate(-20%2014.312%206.03)'%20cx='14.312'%20cy='6.03'%20rx='1'%20ry='1'/%3e%3cellipse%20fill='%23FF937F'%20transform='rotate(25%2014.711%206.047)'%20cx='14.711'%20cy='6.047'%20rx='1'%20ry='1'/%3e%3cpath%20fill='%2301A827'%20d='M15%208l.5-1%20.5%201v1h-1z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23d)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23d)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3c/svg%3e")}.tc.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFD033'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC403'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cg%20transform='translate(9%209)'%3e%3cpath%20d='M0%202.5V.714C0%20.32.355%200%20.8%200h2.4c.442%200%20.8.315.8.714V2.5C4%204.286%202%205%202%205s-2-.714-2-2.5z'%20fill='url(%23d)'/%3e%3cpath%20d='M2.115%204.55c.21-.107.422-.239.618-.396.546-.44.867-.983.867-1.654V.714c0-.2-.177-.357-.4-.357H.8C.577.357.4.516.4.714V2.5c0%20.67.32%201.215.867%201.654.222.178.468.33.733.452l.115-.056z'%20fill='url(%23e)'/%3e%3cellipse%20fill='%23BA5B1F'%20cx='2.8'%20cy='1.429'%20rx='1'%20ry='1'/%3e%3cellipse%20fill='%23FF9F3E'%20transform='rotate(-20%201.05%201.45)'%20cx='1.05'%20cy='1.45'%20rx='1'%20ry='1'/%3e%3cellipse%20fill='%23FF937F'%20transform='rotate(25%201.369%201.462)'%20cx='1.369'%20cy='1.462'%20rx='1'%20ry='1'/%3e%3cpath%20fill='%2301A827'%20d='M1.6%202.857l.4-.714.4.714v.714h-.8z'/%3e%3c/g%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M5%204.23L.648.5H2.66L6.16%203h.697L11.5.098V1.25c0%20.303-.167.627-.418.806L8%204.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L6.84%206h-.697L1.5%208.902v-1.66l3.5-2.5V4.23z'%20fill='url(%23d)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M5.5%204L2%201h.5L6%203.5h1L11%201v.25a.537.537%200%200%201-.208.399L7.5%204v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L7%205.5H6L2%208v-.5L5.5%205V4z'%20fill='url(%23f)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M2%203.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V5.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H7.5V1h-2v2.5H2z'%20fill='url(%23d)'%20transform='translate(-2%20-1)'/%3e%3cpath%20fill='url(%23f)'%20d='M2%204h4V1h1v3h4v1H7v3H6V5H2z'%20transform='translate(-2%20-1)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.td{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DE1D42'%20offset='0%25'/%3e%3cstop%20stop-color='%23C51335'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23083780'%20offset='0%25'/%3e%3cstop%20stop-color='%23032862'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD147'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECA2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.td.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DE1D42'%20offset='0%25'/%3e%3cstop%20stop-color='%23C51335'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23083780'%20offset='0%25'/%3e%3cstop%20stop-color='%23032862'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD147'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECA2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.tf{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23073AB6'%20offset='0%25'/%3e%3cstop%20stop-color='%23002B93'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F44653'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%231035BB'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M0%200h9.5v7.25c0%20.138-.107.25-.254.25H0V0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M6%200h3v7H6z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h3v7H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M3%200h3v7H3z'/%3e%3cpath%20d='M13%206h5l-.5%201H16v.5h1l-.5%201H16V10h-1V7h-1.5L13%206zm4%202.5l1%201.5h-2l1-1.5zm-3%200l1%201.5h-2l1-1.5zm1.5%203l-1-1.5h2l-1%201.5zm3-3.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-6%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm4%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='%23FFF'/%3e%3c/g%3e%3c/svg%3e")}.tf.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23073AB6'%20offset='0%25'/%3e%3cstop%20stop-color='%23002B93'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F44653'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%231035BB'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h9.5v7.25c0%20.138-.107.25-.254.25H0V0z'%20fill='url(%23b)'/%3e%3cpath%20fill='url(%23c)'%20d='M6%200h3v7H6z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h3v7H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M3%200h3v7H3z'/%3e%3cpath%20d='M9.714%209h3.572l-.357.714h-1.072v.357h.714l-.357.715h-.357v1.071h-.714V9.714H10.07L9.714%209zm2.857%201.786l.715%201.071h-1.429l.714-1.071zm-2.142%200l.714%201.071H9.714l.715-1.071zm1.071%202.143l-.714-1.072h1.428L11.5%2012.93zm2.143-2.5a.357.357%200%201%201%200-.715.357.357%200%200%201%200%20.715zm-4.286%200a.357.357%200%201%201%200-.715.357.357%200%200%201%200%20.715zm.714%202.857a.357.357%200%201%201%200-.715.357.357%200%200%201%200%20.715zm2.858%200a.357.357%200%201%201%200-.715.357.357%200%200%201%200%20.715zM11.5%2014a.357.357%200%201%201%200-.714.357.357%200%200%201%200%20.714z'%20fill='%23FFF'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.tg{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFD44D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCD2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23159A74'%20offset='0%25'/%3e%3cstop%20stop-color='%230C6A4F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23ED1F45'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M9%200h12v3H9V0zm0%206h12v3H9V6zm-9%206h21v3H0v-3z'%20fill='url(%23c)'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h9v9H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M4.5%205.67L2.737%206.927l.65-2.065-1.74-1.29%202.165-.019L4.5%201.5l.688%202.053%202.165.02-1.74%201.289.65%202.065z'/%3e%3c/g%3e%3c/svg%3e")}.tg.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFD44D'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCD2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23159A74'%20offset='0%25'/%3e%3cstop%20stop-color='%230C6A4F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23ED1F45'%20offset='0%25'/%3e%3cstop%20stop-color='%23D01739'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M6.429%200H15v3H6.429V0zm0%206H15v3H6.429V6zM0%2012h15v3H0v-3z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h9v9H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M4.5%205.67L2.737%206.927l.65-2.065-1.74-1.29%202.165-.019L4.5%201.5l.688%202.053%202.165.02-1.74%201.289.65%202.065z'/%3e%3c/g%3e%3c/svg%3e")}.th{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F12532'%20offset='0%25'/%3e%3cstop%20stop-color='%23EB212E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23322B6C'%20offset='0%25'/%3e%3cstop%20stop-color='%23241F4E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v3H0zm0%2012h21v3H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h21v9H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.th.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F12532'%20offset='0%25'/%3e%3cstop%20stop-color='%23EB212E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23322B6C'%20offset='0%25'/%3e%3cstop%20stop-color='%23241F4E'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M0%200h15v3H0V0zm0%2012h15v3H0v-3z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23a)'%20d='M0%203h15v9H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.tj{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23D9101C'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA0814'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230F7811'%20offset='0%25'/%3e%3cstop%20stop-color='%230A650C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3cpath%20d='M10.066%208A3.266%203.266%200%200%201%2010%207.5a.5.5%200%201%201%201%200c0%20.09-.024.283-.066.5h.57c.274%200%20.496.232.496.5%200%20.276-.216.5-.495.5h-2.01A.503.503%200%200%201%209%208.5c0-.276.216-.5.495-.5h.571zM9.5%207a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-6%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='%23FAD14E'/%3e%3c/g%3e%3c/svg%3e")}.tj.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23D9101C'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA0814'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230F7811'%20offset='0%25'/%3e%3cstop%20stop-color='%230A650C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h15v5H0z'/%3e%3cpath%20d='M7.066%208A3.266%203.266%200%200%201%207%207.5a.5.5%200%200%201%201%200c0%20.09-.024.283-.066.5h.57c.274%200%20.496.232.496.5%200%20.276-.216.5-.495.5h-2.01A.503.503%200%200%201%206%208.5c0-.276.216-.5.495-.5h.571zM6.5%207a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-6%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='%23FAD14E'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.tk{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230637C5'%20offset='0%25'/%3e%3cstop%20stop-color='%23002CAA'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FDD33F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FED02F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M4%2012h15v1H3l1-1zm7.5-6c3-2%206.5-4%206.5-4s-1.643%203.073-1.5%204.5C16.69%208.407%2019%2011%2019%2011H5s3.5-3%206.5-5z'%20fill='url(%23c)'/%3e%3cpath%20fill='%23FFF'%20d='M4%209l-.707.207L3.5%208.5l-.207-.707L4%208l.707-.207L4.5%208.5l.207.707zm1-6.5l-.707.207L4.5%202l-.207-.707L5%201.5l.707-.207L5.5%202l.207.707zm2%203l-.707.207L6.5%205l-.207-.707L7%204.5l.707-.207L7.5%205l.207.707zm-5%200l-.707.207L1.5%205l-.207-.707L2%204.5l.707-.207L2.5%205l.207.707z'/%3e%3c/g%3e%3c/svg%3e")}.tk.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%230637C5'%20offset='0%25'/%3e%3cstop%20stop-color='%23002CAA'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FDD33F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FED02F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cg%20fill-rule='nonzero'%3e%3cpath%20d='M2.167%207.333H13V8H1.444l.723-.667zm5.416-4C9.75%202%2012.278.667%2012.278.667s-1.187%202.048-1.084%203c.138%201.271%201.806%203%201.806%203H2.889s2.528-2%204.694-3.334z'%20fill='url(%23b)'%20transform='translate(1%203)'/%3e%3cpath%20d='M3.167%208.333l-.51.138L2.805%208l-.15-.471.51.138.511-.138-.15.471.15.471-.51-.138zM3.889%204l-.51.138.149-.471-.15-.472.51.138.512-.138-.15.472.15.471L3.888%204zm1.444%202l-.51.138.15-.471-.15-.472.51.138.51-.138-.149.472.15.471L5.334%206zm-3.61%200l-.511.138.15-.471-.15-.472.51.138.51-.138-.149.472.15.471L1.723%206z'%20fill='%23FFF'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.tl{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FF323E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFCC51'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFC63C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l13%207.5L0%2015z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200l9%207.5L0%2015z'/%3e%3cpath%20fill='url(%23a)'%20transform='rotate(-30%203.92%207.187)'%20d='M3.92%208.262l-1.3.928.48-1.524-1.284-.951L3.413%206.7l.507-1.515.508%201.515%201.598.015-1.284.95.48%201.525z'/%3e%3c/g%3e%3c/svg%3e")}.tl.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FF323E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FD0D1B'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFCC51'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFC63C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200l9%207.5L0%2015z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200l6%207.5L0%2015z'/%3e%3cpath%20fill='url(%23d)'%20transform='rotate(-30%202.5%207.5)'%20d='M2.5%208.305L1.572%209l.342-1.142L1%207.146l1.138-.011L2.499%206l.362%201.135L4%207.146l-.915.712L3.427%209z'/%3e%3c/g%3e%3c/svg%3e")}.tm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2330C375'%20offset='0%25'/%3e%3cstop%20stop-color='%2328AE67'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DE414F'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA3745'%20offset='100%25'/%3e%3c/linearGradient%3e%3cellipse%20id='d'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3cellipse%20id='f'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3cellipse%20id='h'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3cellipse%20id='j'%20cx='1.5'%20cy='.5'%20rx='1.5'%20ry='1'/%3e%3cellipse%20id='k'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M3%200h3v15H3z'/%3e%3cg%20transform='translate(3%201)'%3e%3cmask%20id='e'%20fill='%23fff'%3e%3cuse%20xlink:href='%23d'/%3e%3c/mask%3e%3cuse%20fill='%23FFF'%20xlink:href='%23d'/%3e%3ccircle%20fill='%23DD404F'%20mask='url(%23e)'%20cx='1.5'%20cy='1'%20r='1'/%3e%3cpath%20fill='%23FBAF29'%20mask='url(%23e)'%20d='M0%200h1.5v1H0zm1.5%201H3v1H1.5z'/%3e%3c/g%3e%3cg%20transform='translate(3%2012)'%3e%3cmask%20id='g'%20fill='%23fff'%3e%3cuse%20xlink:href='%23f'/%3e%3c/mask%3e%3cuse%20fill='%23FFF'%20xlink:href='%23f'/%3e%3ccircle%20fill='%23DD404F'%20mask='url(%23g)'%20cx='1.5'%20cy='1'%20r='1'/%3e%3cpath%20fill='%23FBAF29'%20mask='url(%23g)'%20d='M0%200h1.5v1H0zm1.5%201H3v1H1.5z'/%3e%3c/g%3e%3cg%20transform='translate(3%207)'%3e%3cmask%20id='i'%20fill='%23fff'%3e%3cuse%20xlink:href='%23h'/%3e%3c/mask%3e%3cuse%20fill='%2328AE67'%20xlink:href='%23h'/%3e%3cellipse%20fill='%23DD404F'%20mask='url(%23i)'%20cx='1.5'%20cy='1'%20rx='1'%20ry='1'/%3e%3c/g%3e%3cuse%20fill='%2328AE67'%20xlink:href='%23j'%20transform='translate(3%2010)'/%3e%3cg%20transform='translate(3%204)'%3e%3cmask%20id='l'%20fill='%23fff'%3e%3cuse%20xlink:href='%23k'/%3e%3c/mask%3e%3cuse%20fill='%23FBAF29'%20xlink:href='%23k'/%3e%3ccircle%20fill='%23DD404F'%20mask='url(%23l)'%20cx='1.5'%20cy='1'%20r='1'/%3e%3cpath%20fill='%2328AE67'%20mask='url(%23l)'%20d='M0%200h1v2H0zm2%200h1v2H2z'/%3e%3c/g%3e%3cpath%20d='M11.117%203.179a.5.5%200%201%200%20.766.642.5.5%200%200%200-.766-.642zM9.821%205.117a.5.5%200%201%200-.642.766.5.5%200%200%200%20.642-.766zm-1-1a.5.5%200%201%200-.642.766.5.5%200%200%200%20.642-.766zm2-2a.5.5%200%201%200-.642.766.5.5%200%200%200%20.642-.766zm-.5%201.5a.5.5%200%201%200-.642.766.5.5%200%200%200%20.642-.766z'%20fill='url(%23a)'/%3e%3cpath%20d='M13.107%207.088a3.05%203.05%200%200%201-4.626-.366%203.05%203.05%200%200%200%204.26-4.26%203.05%203.05%200%200%201%20.366%204.626z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.tm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2330C375'%20offset='0%25'/%3e%3cstop%20stop-color='%2328AE67'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23DE414F'%20offset='0%25'/%3e%3cstop%20stop-color='%23CA3745'%20offset='100%25'/%3e%3c/linearGradient%3e%3cellipse%20id='c'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3cellipse%20id='e'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3cellipse%20id='g'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3cellipse%20id='i'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3cellipse%20id='k'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3cellipse%20id='m'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3cellipse%20id='o'%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='q'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M3%200h3v15H3z'/%3e%3cellipse%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'%20fill='%23FFF'%20transform='translate(3%201)'/%3e%3cg%20transform='translate(3%201)'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23c'/%3e%3c/mask%3e%3ccircle%20fill='%23DD404F'%20mask='url(%23d)'%20cx='1.5'%20cy='1'%20r='1'/%3e%3c/g%3e%3cg%20transform='translate(3%201)'%3e%3cmask%20id='f'%20fill='%23fff'%3e%3cuse%20xlink:href='%23e'/%3e%3c/mask%3e%3cpath%20d='M0%200h1.5v1H0V0zm1.5%201H3v1H1.5V1z'%20fill='%23FBAF29'%20fill-rule='nonzero'%20mask='url(%23f)'/%3e%3c/g%3e%3cellipse%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'%20fill='%23FFF'%20transform='translate(3%2012)'/%3e%3cg%20transform='translate(3%2012)'%3e%3cmask%20id='h'%20fill='%23fff'%3e%3cuse%20xlink:href='%23g'/%3e%3c/mask%3e%3ccircle%20fill='%23DD404F'%20mask='url(%23h)'%20cx='1.5'%20cy='1'%20r='1'/%3e%3c/g%3e%3cg%20transform='translate(3%2012)'%3e%3cmask%20id='j'%20fill='%23fff'%3e%3cuse%20xlink:href='%23i'/%3e%3c/mask%3e%3cpath%20d='M0%200h1.5v1H0V0zm1.5%201H3v1H1.5V1z'%20fill='%23FBAF29'%20fill-rule='nonzero'%20mask='url(%23j)'/%3e%3c/g%3e%3cg%20transform='translate(3%207)'%3e%3cellipse%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'%20fill='%2328AE67'/%3e%3cmask%20id='l'%20fill='%23fff'%3e%3cuse%20xlink:href='%23k'/%3e%3c/mask%3e%3ccircle%20fill='%23DD404F'%20mask='url(%23l)'%20cx='1.5'%20cy='1'%20r='1'/%3e%3c/g%3e%3cellipse%20cx='1.5'%20cy='1.5'%20rx='1.5'%20ry='1'%20transform='translate(3%209)'%20fill='%2328AE67'/%3e%3cg%20transform='translate(3%204)'%3e%3cellipse%20cx='1.5'%20cy='1'%20rx='1.5'%20ry='1'%20fill='%23FBAF29'/%3e%3cmask%20id='n'%20fill='%23fff'%3e%3cuse%20xlink:href='%23m'/%3e%3c/mask%3e%3ccircle%20fill='%23DD404F'%20mask='url(%23n)'%20cx='1.5'%20cy='1'%20r='1'/%3e%3cmask%20id='p'%20fill='%23fff'%3e%3cuse%20xlink:href='%23o'/%3e%3c/mask%3e%3cpath%20d='M0%200h1v2H0V0zm2%200h1v2H2V0z'%20fill='%2328AE67'%20fill-rule='nonzero'%20mask='url(%23p)'/%3e%3c/g%3e%3cg%20transform='translate(8%202)'%20fill='url(%23q)'%3e%3cpath%20d='M2.94%201.556a.357.357%200%201%200%20.533.477.357.357%200%200%200-.532-.477zm-.925%201.385a.357.357%200%201%200-.477.532.357.357%200%200%200%20.477-.532zm-.714-.715a.357.357%200%201%200-.477.532.357.357%200%200%200%20.477-.532zM2.729.798a.357.357%200%201%200-.476.532.357.357%200%200%200%20.476-.532zm-.357%201.071a.357.357%200%201%200-.476.532.357.357%200%200%200%20.476-.532z'%20fill-rule='nonzero'/%3e%3cpath%20d='M4.362%204.349a2.179%202.179%200%200%201-3.304-.262A2.179%202.179%200%200%200%204.1%201.044a2.179%202.179%200%200%201%20.261%203.305z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.tn{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E92434'%20offset='0%25'/%3e%3cstop%20stop-color='%23E11324'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M11.858%204.273a3.5%203.5%200%201%200%200%206.453%203.25%203.25%200%200%201%200-6.453zM10.5%2012a4.5%204.5%200%201%201%200-9%204.5%204.5%200%200%201%200%209zm1.766-3.622l1.352.505-.775-1.218.898-1.13-1.398.361-.797-1.204-.088%201.441-1.391.386%201.343.53-.063%201.442.919-1.113z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.tn.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E92434'%20offset='0%25'/%3e%3cstop%20stop-color='%23E11324'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M8.858%204.273a3.5%203.5%200%201%200%200%206.453%203.25%203.25%200%200%201%200-6.453zM7.5%2012a4.5%204.5%200%201%201%200-9%204.5%204.5%200%200%201%200%209zm1.766-3.622l1.352.505-.775-1.218.898-1.13-1.398.361-.797-1.204-.088%201.441-1.391.386%201.343.53-.063%201.442.919-1.113z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.to{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E20F1B'%20offset='0%25'/%3e%3cstop%20stop-color='%23C00711'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DF101B'%20offset='0%25'/%3e%3cstop%20stop-color='%23C00711'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%200h12v8H0z'/%3e%3cpath%20d='M7%203V1.258C7%201.104%206.89%201%206.755%201h-1.51A.25.25%200%200%200%205%201.258V3H3.258C3.104%203%203%203.11%203%203.245v1.51A.25.25%200%200%200%203.258%205H5v1.742c0%20.154.11.258.245.258h1.51A.25.25%200%200%200%207%206.742V5h1.742C8.896%205%209%204.89%209%204.755v-1.51A.25.25%200%200%200%208.742%203H7z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.to.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E20F1B'%20offset='0%25'/%3e%3cstop%20stop-color='%23C00711'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23DF101B'%20offset='0%25'/%3e%3cstop%20stop-color='%23C00711'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h12v8H0z'/%3e%3cpath%20d='M7%203V1.258C7%201.104%206.89%201%206.755%201h-1.51A.25.25%200%200%200%205%201.258V3H3.258C3.104%203%203%203.11%203%203.245v1.51A.25.25%200%200%200%203.258%205H5v1.742c0%20.154.11.258.245.258h1.51A.25.25%200%200%200%207%206.742V5h1.742C8.896%205%209%204.89%209%204.755v-1.51A.25.25%200%200%200%208.742%203H7z'%20fill='url(%23c)'/%3e%3c/g%3e%3c/svg%3e")}.tr{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E92434'%20offset='0%25'/%3e%3cstop%20stop-color='%23E11324'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M13.052%204.737A3.907%203.907%200%200%200%2010.75%204C8.679%204%207%205.567%207%207.5S8.679%2011%2010.75%2011c.868%200%201.667-.275%202.302-.737a4.5%204.5%200%201%201%200-5.526zm1.214%203.34l-.919%201.113.063-1.442-1.343-.53%201.39-.386.09-1.441.796%201.204%201.398-.361-.898%201.13.775%201.217-1.352-.505z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.tr.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E92434'%20offset='0%25'/%3e%3cstop%20stop-color='%23E11324'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M10.052%204.737A3.907%203.907%200%200%200%207.75%204C5.679%204%204%205.567%204%207.5S5.679%2011%207.75%2011c.868%200%201.667-.275%202.302-.737a4.5%204.5%200%201%201%200-5.526zm1.214%203.34l-.92%201.113.064-1.442-1.343-.53%201.39-.386.09-1.44.796%201.203%201.398-.36-.898%201.13.775%201.216-1.352-.505v.001z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.tt{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23ED233C'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M-.004.005h21v15h-21z'/%3e%3cpath%20fill='url(%23a)'%20transform='matrix(-1%200%200%201%2021.5%200)'%20d='M23-1l-7.144-3.06-15.1%2017.995L-1.5%2016l7.653%203.07L20.977%201.403z'/%3e%3cpath%20fill='url(%23c)'%20transform='matrix(-1%200%200%201%2020.991%200)'%20d='M3.09%2020.22L21.731-1.997l-3.83-3.214L-.74%2017.005l3.83%203.214z'/%3e%3c/g%3e%3c/svg%3e")}.tt.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23ED233C'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M-1.406-.938L5.29-3.805l14.157%2016.87L21.562%2015l-7.174%202.878L.49%201.315z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M16.782%2018.956L-.694-1.872l3.59-3.013%2017.477%2020.827-3.59%203.013z'/%3e%3c/g%3e%3c/svg%3e")}.tv{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2372AFC8'%20offset='0%25'/%3e%3cstop%20stop-color='%235D98B0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M9%2013l-.707.207.207-.707-.207-.707L9%2012l.707-.207-.207.707.207.707L9%2013zm3-1l-.707.207.207-.707-.207-.707L12%2011l.707-.207-.207.707.207.707L12%2012zm3%200l-.707.207.207-.707-.207-.707L15%2011l.707-.207-.207.707.207.707L15%2012zm2-2l-.707.207.207-.707-.207-.707L17%209l.707-.207-.207.707.207.707L17%2010zm2-2l-.707.207.207-.707-.207-.707L19%207l.707-.207-.207.707.207.707L19%208zm-6%201l-.707.207.207-.707-.207-.707L13%208l.707-.207-.207.707.207.707L13%209zm2-4l-.707.207.207-.707-.207-.707L15%204l.707-.207-.207.707.207.707L15%205zm2-1l-.707.207.207-.707-.207-.707L17%203l.707-.207-.207.707.207.707L17%204zm2-1l-.707.207.207-.707-.207-.707L19%202l.707-.207-.207.707.207.707L19%203z'%20fill='%23FFCD2F'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h9v7H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23d)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23d)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3c/svg%3e")}.tv.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2372AFC8'%20offset='0%25'/%3e%3cstop%20stop-color='%235D98B0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%230A17A7'%20offset='0%25'/%3e%3cstop%20stop-color='%23030E88'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20d='M6.434%2012.873L6%2013l.127-.434L6%2012.133l.434.127.433-.127-.127.433.127.434-.433-.127zm1.84-.613l-.434.127.127-.434-.127-.433.433.126.434-.126-.127.433.127.434-.434-.127zm1.84%200l-.434.127.127-.434-.127-.433.433.126.434-.126-.127.433.127.434-.434-.127zm1.226-1.227l-.434.127.127-.433-.127-.434.434.127.433-.127-.127.434.127.433-.433-.127zm1.226-1.226l-.433.127.127-.434-.127-.434.433.127.434-.127-.127.434.127.434-.434-.127zm-3.68.613l-.433.127.127-.434-.127-.433.434.127.433-.127-.127.433.127.434-.433-.127zm1.227-2.453l-.433.127.127-.434-.127-.433.433.127.434-.127-.127.433.127.434-.434-.127zm1.227-.613l-.434.126.127-.433-.127-.434.434.127.433-.127-.127.434.127.433-.433-.126zm1.226-.614l-.433.127.127-.433L12.133%206l.433.127L13%206l-.127.434.127.433-.434-.127z'%20fill='%23FFCD2F'%20fill-rule='nonzero'%20mask='url(%23c)'/%3e%3cpath%20fill='url(%23d)'%20mask='url(%23c)'%20d='M0%200h9v7H0z'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23e)'%20mask='url(%23c)'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23f)'%20mask='url(%23c)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23e)'%20mask='url(%23c)'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23c)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3c/svg%3e")}.tw{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='93.767%25'%20id='b'%3e%3cstop%20stop-color='%23FE3030'%20offset='0%25'/%3e%3cstop%20stop-color='red'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230909B6'%20offset='0%25'/%3e%3cstop%20stop-color='%23000096'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h11V0H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M5.5%205.25l-.957%201.06.073-1.426-1.426.073L4.25%204l-1.06-.957%201.426.073-.073-1.426.957%201.06.957-1.06-.073%201.426%201.426-.073L6.75%204l1.06.957-1.426-.073.073%201.426z'/%3e%3c/g%3e%3c/svg%3e")}.tw.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='93.767%25'%20id='a'%3e%3cstop%20stop-color='%23FE3030'%20offset='0%25'/%3e%3cstop%20stop-color='red'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230909B6'%20offset='0%25'/%3e%3cstop%20stop-color='%23000096'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%208h11V0H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M5.5%205.25l-.957%201.06.073-1.426-1.426.073L4.25%204l-1.06-.957%201.426.073-.073-1.426.957%201.06.957-1.06-.073%201.426%201.426-.073L6.75%204l1.06.957-1.426-.073.073%201.426z'/%3e%3c/g%3e%3c/svg%3e")}.tz{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2333CC4D'%20offset='0%25'/%3e%3cstop%20stop-color='%232AB441'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%232DAFE4'%20offset='0%25'/%3e%3cstop%20stop-color='%231BA4DC'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD84F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M.001%2010.004l21-10h-21z'/%3e%3cpath%20fill='url(%23c)'%20d='M.001%2015.004h21v-10z'/%3e%3cpath%20fill='url(%23d)'%20d='M2.313%2017.004L22.63%204.309l-3.94-6.305-20.317%2012.695z'/%3e%3cpath%20fill='url(%23e)'%20d='M-.47%2017.308L24.123%201.94l-2.65-4.24L-3.12%2013.068z'/%3e%3c/g%3e%3c/svg%3e")}.tz.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2333CC4D'%20offset='0%25'/%3e%3cstop%20stop-color='%232AB441'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%232DAFE4'%20offset='0%25'/%3e%3cstop%20stop-color='%231BA4DC'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFD84F'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M-1.999%2010.004l21-10h-21z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M-1.999%2015.004h21v-10z'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23d)'%20d='M.313%2017.004L20.63%204.309l-3.94-6.305-20.317%2012.695z'/%3e%3cpath%20fill='url(%23g)'%20mask='url(%23d)'%20d='M-2.47%2017.308L22.123%201.94l-2.65-4.24L-5.12%2013.068z'/%3e%3c/g%3e%3c/svg%3e")}.ua{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23156DD1'%20offset='0%25'/%3e%3cstop%20stop-color='%230D5EB9'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD948'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFD430'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h21v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.ua.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23156DD1'%20offset='0%25'/%3e%3cstop%20stop-color='%230D5EB9'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD948'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFD430'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v8H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h15v7H0z'/%3e%3c/g%3e%3c/svg%3e")}.ug{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23ED1623'%20offset='0%25'/%3e%3cstop%20stop-color='%23D70915'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FEE044'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCDB32'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v2H0zm0%208h21v2H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%205h21v3H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%202h21v3H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2013h21v2H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2010h21v3H0z'/%3e%3ccircle%20fill='url(%23a)'%20cx='10.5'%20cy='7.5'%20r='3.5'/%3e%3cpath%20d='M9.68%205.68a.253.253%200%200%201%200-.36l.14-.14c.1-.1.252-.27.338-.362l.122-.099c.122.017.317-.036.442-.012l.119.092a.424.424%200%200%201%20.043.433l-.268.536a1.298%201.298%200%200%200-.116.482c0%20.138.092.296.232.366l.536.268c.128.064.31.194.406.29l.652.652a.36.36%200%200%201%20.058.406l-.268.536c-.064.128-.194.154-.297.051l-.138-.138a.253.253%200%200%200-.362%200l-.138.138A.71.71%200%200%200%2011%209.25a.69.69%200%200%200%20.18.43l.14.14c.1.1.062.18-.068.18h-1.004c-.137%200-.17-.078-.067-.18l.138-.14c.1-.1.181-.296.181-.43a.253.253%200%200%200-.25-.25.691.691%200%200%200-.43.18l-.14.14c-.1.1-.258.102-.36%200l-.14-.14a.253.253%200%200%201%200-.36l.14-.14c.1-.1.287-.18.432-.18h.496c.139%200%20.171-.08.08-.172L9.172%207.172a.245.245%200%200%201%20.002-.346l.652-.652a.249.249%200%200%200-.007-.355l-.138-.138z'%20fill='url(%23b)'/%3e%3c/g%3e%3c/svg%3e")}.ug.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23ED1623'%20offset='0%25'/%3e%3cstop%20stop-color='%23D70915'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FEE044'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCDB32'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M0%200h15v2H0V0zm0%208h15v2H0V8z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h15v3H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%202h15v3H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2013h15v2H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v3H0z'/%3e%3ccircle%20fill='url(%23d)'%20cx='7.5'%20cy='7.5'%20r='3.5'/%3e%3cpath%20d='M6.579%205.98a.253.253%200%200%201%200-.36l.14-.14c.1-.1.252-.27.338-.363l.122-.099c.122.017.317-.036.442-.012l.119.092a.427.427%200%200%201%20.043.433l-.268.536c-.07.152-.11.316-.116.482%200%20.138.092.296.232.366l.536.268c.128.064.31.194.406.29l.652.652a.36.36%200%200%201%20.058.406l-.268.536c-.064.128-.194.154-.297.051L8.58%208.98a.253.253%200%200%200-.362%200l-.138.138a.71.71%200%200%200-.181.431.69.69%200%200%200%20.18.43l.14.14c.1.1.062.18-.068.18H7.147c-.137%200-.17-.078-.067-.18l.138-.14c.1-.1.18-.296.18-.43a.253.253%200%200%200-.25-.25.691.691%200%200%200-.43.18l-.14.14c-.1.1-.257.102-.36%200l-.14-.14a.253.253%200%200%201%200-.36l.14-.14c.1-.1.288-.18.433-.18h.496c.139%200%20.17-.08.08-.172L6.07%207.471a.245.245%200%200%201%20.002-.346l.652-.652a.249.249%200%200%200-.007-.355L6.58%205.98h-.001z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.um{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23D02F44'%20offset='0%25'/%3e%3cstop%20stop-color='%23B12537'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2346467F'%20offset='0%25'/%3e%3cstop%20stop-color='%233C3C6D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M0%200h21v1H0V0zm0%202h21v1H0V2zm0%202h21v1H0V4zm0%202h21v1H0V6zm0%202h21v1H0V8zm0%202h21v1H0v-1zm0%202h21v1H0v-1zm0%202h21v1H0v-1z'%20fill='url(%23b)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h9v7H0z'/%3e%3cpath%20d='M1.5%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-5%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.um.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23D02F44'%20offset='0%25'/%3e%3cstop%20stop-color='%23B12537'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%2346467F'%20offset='0%25'/%3e%3cstop%20stop-color='%233C3C6D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20d='M0%200h21v1H0V0zm0%202h21v1H0V2zm0%202h21v1H0V4zm0%202h21v1H0V6zm0%202h21v1H0V8zm0%202h21v1H0v-1zm0%202h21v1H0v-1zm0%202h21v1H0v-1z'%20fill='url(%23c)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%200h9v7H0z'/%3e%3cpath%20d='M1.5%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-5%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23b)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.us{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23D02F44'%20offset='0%25'/%3e%3cstop%20stop-color='%23B12537'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2346467F'%20offset='0%25'/%3e%3cstop%20stop-color='%233C3C6D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M0%200h21v1H0V0zm0%202h21v1H0V2zm0%202h21v1H0V4zm0%202h21v1H0V6zm0%202h21v1H0V8zm0%202h21v1H0v-1zm0%202h21v1H0v-1zm0%202h21v1H0v-1z'%20fill='url(%23b)'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h9v7H0z'/%3e%3cpath%20d='M1.5%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-5%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.us.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23D02F44'%20offset='0%25'/%3e%3cstop%20stop-color='%23B12537'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%2346467F'%20offset='0%25'/%3e%3cstop%20stop-color='%233C3C6D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20d='M0%200h21v1H0V0zm0%202h21v1H0V2zm0%202h21v1H0V4zm0%202h21v1H0V6zm0%202h21v1H0V8zm0%202h21v1H0v-1zm0%202h21v1H0v-1zm0%202h21v1H0v-1z'%20fill='url(%23c)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%200h9v7H0z'/%3e%3cpath%20d='M1.5%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-5%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm1%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23b)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.uy{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230E4DC5'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FED443'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M10%200h11v2H10V0zm0%204h11v2H10V4zm0%204h11v2H10V8zM0%2012h21v2H0v-2zM0%200h10v10H0V0z'%20fill='url(%23a)'/%3e%3cpath%20d='M5%206.991l-.668.996L4.163%206.8l-1.033.608.362-1.143-1.195.1.823-.873L2%205.062l1.12-.428-.823-.873%201.195.1-.362-1.144%201.033.608.17-1.187.667.996.668-.996.169%201.187%201.033-.608-.362%201.143%201.195-.099-.823.873L8%205.063l-1.12.429.823.872-1.195-.099.362%201.143L5.837%206.8l-.17%201.187L5%206.991zm0-.02a1.91%201.91%200%201%200%200-3.817%201.91%201.91%200%200%200%200%203.818zM5%206.5a1.5%201.5%200%201%201%200-3%201.5%201.5%200%200%201%200%203z'%20fill='url(%23c)'/%3e%3cpath%20d='M4.125%205a.125.125%200%200%201%20.25%200A.622.622%200%200%200%205%205.625c.243%200%20.46-.14.564-.355l.038-.07.014-.023c.048-.08.062-.119.062-.177a.125.125%200%200%201%20.25%200%20.534.534%200%200%201-.097.304l-.013.022-.028.052A.875.875%200%200%201%204.125%205zM5.5%204.75a.25.25%200%201%201%200-.5.25.25%200%200%201%200%20.5zm-1%200a.25.25%200%201%201%200-.5.25.25%200%200%201%200%20.5z'%20fill='%23C6A326'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.uy.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230E4DC5'%20offset='0%25'/%3e%3cstop%20stop-color='%23073DA6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FED443'%20offset='0%25'/%3e%3cstop%20stop-color='%23FCD036'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M10%200h11v2H10V0zm0%204h11v2H10V4zm0%204h11v2H10V8zM0%2012h21v2H0v-2zM0%200h10v10H0V0z'%20fill='url(%23b)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cpath%20d='M5%206.991l-.668.996L4.163%206.8l-1.033.608.362-1.143-1.195.1.823-.873L2%205.062l1.12-.428-.823-.873%201.195.1-.362-1.144%201.033.608.17-1.187.667.996.668-.996.169%201.187%201.033-.608-.362%201.143%201.195-.099-.823.873L8%205.063l-1.12.429.823.872-1.195-.099.362%201.143L5.837%206.8l-.17%201.187L5%206.991zm0-.02a1.91%201.91%200%201%200%200-3.817%201.91%201.91%200%200%200%200%203.818v-.001zM5%206.5a1.5%201.5%200%201%201%200-3%201.5%201.5%200%200%201%200%203z'%20fill='url(%23e)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cpath%20d='M4.125%205a.125.125%200%200%201%20.25%200A.622.622%200%200%200%205%205.625c.243%200%20.46-.14.564-.355l.038-.07.014-.023c.048-.08.062-.119.062-.177a.125.125%200%200%201%20.25%200%20.534.534%200%200%201-.097.304l-.013.022-.028.052A.875.875%200%200%201%204.125%205zM5.5%204.75a.25.25%200%201%201%200-.5.25.25%200%200%201%200%20.5zm-1%200a.25.25%200%201%201%200-.5.25.25%200%200%201%200%20.5z'%20fill='%23C6A326'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.uz{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2304AAC8'%20offset='0%25'/%3e%3cstop%20stop-color='%23009AB6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2323C840'%20offset='0%25'/%3e%3cstop%20stop-color='%231EB639'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0zm4.334-3.747a1.5%201.5%200%201%200%200%202.495%201.25%201.25%200%201%201%200-2.495zM5.5%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'/%3e%3c/g%3e%3c/svg%3e")}.uz.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2304AAC8'%20offset='0%25'/%3e%3cstop%20stop-color='%23009AB6'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%2323C840'%20offset='0%25'/%3e%3cstop%20stop-color='%231EB639'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20d='M0%205h21v5H0V5zm4.334-3.747a1.5%201.5%200%201%200%200%202.495%201.25%201.25%200%201%201%200-2.495zM5.5%204a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2-2a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%202a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23b)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.va{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FDE048'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFDF32'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23CDCCCC'%20offset='0%25'/%3e%3cstop%20stop-color='%23E4E4E4'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23CD9D25'%20offset='0%25'/%3e%3cstop%20stop-color='%23EBB93A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F5252C'%20offset='0%25'/%3e%3cstop%20stop-color='%23F6151C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M10%200h11v15H10z'/%3e%3cpath%20d='M18.682%208.025a1.5%201.5%200%201%200-2.415-.414l-2.181%202.182-.354-.354-.353-.353-.707.707.353.353.707.708.354.353.353-.353%202.536-2.536a1.5%201.5%200%200%200%201.707-.293z'%20fill='url(%23c)'%20transform='matrix(1%200%200%20-1%200%2016.672)'/%3e%3cpath%20d='M14.025%208.318a1.5%201.5%200%201%201%20.708-.707l2.181%202.182.354-.354.353-.353.707.707-.353.353-.707.708-.354.353-.353-.353-2.536-2.536z'%20fill='url(%23d)'%20transform='matrix(1%200%200%20-1%200%2016.672)'/%3e%3cpath%20d='M15.5%205c-.828%200-1.5-.224-1.5-.5s.672-.5%201.5-.5%201.5.224%201.5.5-.672.5-1.5.5zm0-2.5c-.414%200-.75-.112-.75-.25s.336-.25.75-.25.75.112.75.25-.336.25-.75.25zm0%201.167c-.552%200-1-.15-1-.334%200-.184.448-.333%201-.333s1%20.15%201%20.333c0%20.184-.448.334-1%20.334z'%20fill='url(%23d)'/%3e%3cpath%20d='M13.026%2010.658c.08.242.247.576.527.912.48.576%201.13.93%201.947.93.817%200%201.467-.354%201.947-.93.28-.336.447-.67.527-.912a.5.5%200%201%200-.948-.316%201.98%201.98%200%200%201-.348.588c-.301.362-.683.57-1.178.57-.495%200-.877-.208-1.178-.57a1.98%201.98%200%200%201-.348-.588.5.5%200%201%200-.948.316z'%20fill='url(%23e)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.va.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FDE048'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFDF32'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23CDCCCC'%20offset='0%25'/%3e%3cstop%20stop-color='%23E4E4E4'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23CD9D25'%20offset='0%25'/%3e%3cstop%20stop-color='%23EBB93A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23F5252C'%20offset='0%25'/%3e%3cstop%20stop-color='%23F6151C'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20mask='url(%23d)'%20d='M4%200h11v15H4z'/%3e%3cpath%20d='M12.682%208.025a1.5%201.5%200%201%200-2.415-.414L8.086%209.793l-.354-.354-.353-.353-.707.707.353.353.707.708.354.353.353-.353%202.536-2.536a1.5%201.5%200%200%200%201.707-.293z'%20fill='url(%23e)'%20mask='url(%23d)'%20transform='matrix(1%200%200%20-1%200%2016.672)'/%3e%3cpath%20d='M8.025%208.32a1.5%201.5%200%201%201%20.708-.708l2.181%202.182.354-.354.353-.353.707.707-.353.353-.707.708-.354.353-.353-.353L8.025%208.32z'%20fill='url(%23f)'%20mask='url(%23d)'%20transform='matrix(1%200%200%20-1%200%2016.673)'/%3e%3cpath%20d='M9.5%205C8.672%205%208%204.776%208%204.5S8.672%204%209.5%204s1.5.224%201.5.5-.672.5-1.5.5zm0-2.5c-.414%200-.75-.112-.75-.25S9.086%202%209.5%202s.75.112.75.25-.336.25-.75.25zm0%201.167c-.552%200-1-.15-1-.334%200-.184.448-.333%201-.333s1%20.15%201%20.333c0%20.184-.448.334-1%20.334z'%20fill='url(%23f)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3cpath%20d='M7.026%2010.658c.08.242.247.576.527.912.48.576%201.13.93%201.947.93.817%200%201.467-.354%201.947-.93.28-.336.447-.67.527-.912a.5.5%200%201%200-.948-.316%201.98%201.98%200%200%201-.348.588c-.301.362-.683.57-1.178.57-.495%200-.877-.208-1.178-.57a1.98%201.98%200%200%201-.348-.588.5.5%200%201%200-.948.316z'%20fill='url(%23g)'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.vc{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2308C47A'%20offset='0%25'/%3e%3cstop%20stop-color='%23009F60'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%230C87E1'%20offset='0%25'/%3e%3cstop%20stop-color='%230073C7'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD147'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECA2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%2300C778'%20offset='0%25'/%3e%3cstop%20stop-color='%23009F60'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M6%200h9v15H6z'/%3e%3cpath%20d='M11%206l1.5-3L14%206l-1.5%203L11%206zM7%206l1.5-3L10%206%208.5%209%207%206zm2%204l1.5-3%201.5%203-1.5%203L9%2010z'%20fill='url(%23e)'/%3e%3c/g%3e%3c/svg%3e")}.vc.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%2308C47A'%20offset='0%25'/%3e%3cstop%20stop-color='%23009F60'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%230C87E1'%20offset='0%25'/%3e%3cstop%20stop-color='%230073C7'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD147'%20offset='0%25'/%3e%3cstop%20stop-color='%23FECA2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%2300C778'%20offset='0%25'/%3e%3cstop%20stop-color='%23009F60'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M11%200h4v15h-4z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h4v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M4%200h7v15H4z'/%3e%3cpath%20d='M7.857%206.1L8.93%204%2010%206.1%208.929%208.2%207.857%206.1zM5%206.1L6.071%204l1.072%202.1L6.07%208.2%205%206.1zm1.429%202.8L7.5%206.8l1.071%202.1L7.5%2011%206.429%208.9z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.ve{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23063191'%20offset='0%25'/%3e%3cstop%20stop-color='%2303287C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E2213B'%20offset='0%25'/%3e%3cstop%20stop-color='%23CD1931'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD044'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%205h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20d='M10.5%207a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%20.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm4%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM7.5%209a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm6%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.ve.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23063191'%20offset='0%25'/%3e%3cstop%20stop-color='%2303287C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E2213B'%20offset='0%25'/%3e%3cstop%20stop-color='%23CD1931'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD044'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFCB2F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20d='M7.5%207a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm-2%20.5a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm4%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zM4.5%209a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm6%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23d)'%20d='M0%200h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.vg{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23008339'%20offset='0%25'/%3e%3cstop%20stop-color='%2300612A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD033'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC403'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M13%207.5V5c0-.553.444-1%201-1h3c.552%200%201%20.441%201%201v2.5c0%202.5-2.5%203.5-2.5%203.5S13%2010%2013%207.5z'%20fill='url(%23c)'/%3e%3cpath%20d='M14.5%206a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0%201a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm2%200a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-1a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-1a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201zm0-1a.5.5%200%201%201%200-1%20.5.5%200%200%201%200%201z'%20fill='url(%23d)'/%3e%3cellipse%20fill='url(%23a)'%20cx='15.5'%20cy='7'%20rx='1'%20ry='1.5'/%3e%3cpath%20d='M12.5%2010c0%20.954%201.366%201.5%203%201.5s3-.546%203-1.5a.5.5%200%201%200-1%200c0%20.01-.121.124-.418.243-.403.161-.97.257-1.582.257-.612%200-1.18-.096-1.582-.257-.297-.119-.418-.233-.418-.243a.5.5%200%201%200-1%200z'%20fill='url(%23d)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3%203.23L-1.352-.5H.66L4.16%202h.697L9.5-.902V.25c0%20.303-.167.627-.418.806L6%203.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L4.84%205h-.697L-.5%207.902v-1.66l3.5-2.5V3.23z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20d='M3.5%203L0%200h.5L4%202.5h1L9%200v.25a.537.537%200%200%201-.208.399L5.5%203v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L5%204.5H4L0%207v-.5L3.5%204V3z'%20fill='url(%23e)'/%3e%3cpath%20d='M0%202.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V4.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H5.5V0h-2v2.5H0z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23e)'%20d='M0%203h4V0h1v3h4v1H5v3H4V4H0z'/%3e%3c/g%3e%3c/svg%3e")}.vg.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2307319C'%20offset='0%25'/%3e%3cstop%20stop-color='%2300247E'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23008339'%20offset='0%25'/%3e%3cstop%20stop-color='%2300612A'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFD033'%20offset='0%25'/%3e%3cstop%20stop-color='%23FEC403'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23DB1E36'%20offset='0%25'/%3e%3cstop%20stop-color='%23D51931'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cg%20mask='url(%23c)'%3e%3cg%20transform='translate(9%209.25)'%3e%3cpath%20d='M.595%202.188V.625C.595.279.86%200%201.19%200h1.786c.329%200%20.595.276.595.625v1.563c0%201.562-1.488%202.187-1.488%202.187S.595%203.75.595%202.187z'%20fill='url(%23d)'/%3e%3cpath%20d='M1.488%201.25A.305.305%200%200%201%201.19.937c0-.172.134-.312.298-.312.164%200%20.298.14.298.313a.305.305%200%200%201-.298.312zm0%20.625a.305.305%200%200%201-.298-.313c0-.172.134-.312.298-.312.164%200%20.298.14.298.313a.305.305%200%200%201-.298.312zm0%20.625a.305.305%200%200%201-.298-.313c0-.172.134-.312.298-.312.164%200%20.298.14.298.313a.305.305%200%200%201-.298.312zm0%20.625a.305.305%200%200%201-.298-.313c0-.172.134-.312.298-.312.164%200%20.298.14.298.313a.305.305%200%200%201-.298.312zm1.19%200a.305.305%200%200%201-.297-.313c0-.172.133-.312.298-.312.164%200%20.297.14.297.313a.305.305%200%200%201-.297.312zm0-.625a.305.305%200%200%201-.297-.313c0-.172.133-.312.298-.312.164%200%20.297.14.297.313a.305.305%200%200%201-.297.312zm0-.625a.305.305%200%200%201-.297-.313c0-.172.133-.312.298-.312.164%200%20.297.14.297.313a.305.305%200%200%201-.297.312zm0-.625a.305.305%200%200%201-.297-.313c0-.172.133-.312.298-.312.164%200%20.297.14.297.313a.305.305%200%200%201-.297.312z'%20fill='url(%23e)'%20fill-rule='nonzero'/%3e%3cellipse%20fill='url(%23f)'%20cx='2.083'%20cy='1.875'%20rx='1'%20ry='1'/%3e%3cpath%20d='M.298%203.75c0%20.596.813.938%201.785.938.973%200%201.786-.342%201.786-.938a.305.305%200%200%200-.298-.313.305.305%200%200%200-.297.313c0%20.006-.072.078-.249.152-.24.1-.577.16-.942.16-.364%200-.702-.06-.941-.16-.177-.075-.25-.146-.25-.152a.305.305%200%200%200-.297-.313.305.305%200%200%200-.297.313z'%20fill='url(%23e)'/%3e%3c/g%3e%3c/g%3e%3cg%20mask='url(%23c)'%3e%3cpath%20d='M5%204.23L.648.5H2.66L6.16%203h.697L11.5.098V1.25c0%20.303-.167.627-.418.806L8%204.257v.513l3.137%202.69c.462.395.204%201.04-.387%201.04-.245%200-.545-.096-.75-.242L6.84%206h-.697L1.5%208.902v-1.66l3.5-2.5V4.23z'%20fill='url(%23f)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M5.5%204L2%201h.5L6%203.5h1L11%201v.25a.537.537%200%200%201-.208.399L7.5%204v1l3.312%202.839c.104.089.072.161-.062.161a.898.898%200%200%201-.458-.149L7%205.5H6L2%208v-.5L5.5%205V4z'%20fill='url(%23g)'%20transform='translate(-2%20-1)'/%3e%3cpath%20d='M2%203.5v2h3.5v2.505c0%20.273.214.495.505.495h.99a.496.496%200%200%200%20.505-.495V5.5h3.51a.49.49%200%200%200%20.49-.505v-.99a.495.495%200%200%200-.49-.505H7.5V1h-2v2.5H2z'%20fill='url(%23f)'%20transform='translate(-2%20-1)'/%3e%3cpath%20fill='url(%23g)'%20d='M2%204h4V1h1v3h4v1H7v3H6V5H2z'%20transform='translate(-2%20-1)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e")}.vi{background-image:url("/assets/vi-BCxByKRo.svg")}.vi.fp-square{background-image:url("/assets/vi-B-zXOgFY.svg")}.vn{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EA403F'%20offset='0%25'/%3e%3cstop%20stop-color='%23D82827'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFFE4E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFFE38'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M10.5%209.255l-2.645%201.886.976-3.099L6.22%206.11l3.247-.029L10.5%203l1.032%203.08%203.248.03-2.61%201.932.975%203.099z'/%3e%3c/g%3e%3c/svg%3e")}.vn.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23EA403F'%20offset='0%25'/%3e%3cstop%20stop-color='%23D82827'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFFE4E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFFE38'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7.28%209.255l-2.645%201.886.976-3.099L3%206.11l3.247-.029L7.28%203l1.032%203.08%203.248.03-2.61%201.932.975%203.099z'/%3e%3c/g%3e%3c/svg%3e")}.vu{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2327AB53'%20offset='0%25'/%3e%3cstop%20stop-color='%23219447'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EC2547'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFD449'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDCD34'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M.2%209h21v6H.2z'/%3e%3cpath%20fill='url(%23c)'%20d='M.2%200h21v6H.2z'/%3e%3cpath%20d='M8.2%206h13v3h-13l-8%206V0l8%206z'%20fill='url(%23d)'/%3e%3cpath%20d='M6.867%207.5L-.6%201.9l-.4-.3.6-.8.4.3L7.867%207H21.2v1H7.7l.3-.1-8%206-.4.3-.6-.8.4-.3%207.467-5.6z'%20fill='url(%23e)'%20fill-rule='nonzero'/%3e%3cpath%20d='M2.7%209a1.5%201.5%200%201%201%201.5-1.5c0%20.727-.813%202.363-1.5%202.5-.096.02.101-1%200-1zm0-.75c.276.25.5-.474.5-.75a.5.5%200%200%200-1%200c0%20.276.224%201%20.5.75z'%20fill='url(%23e)'/%3e%3c/g%3e%3c/svg%3e")}.vu.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2327AB53'%20offset='0%25'/%3e%3cstop%20stop-color='%23219447'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EC2547'%20offset='0%25'/%3e%3cstop%20stop-color='%23CE1A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23FFD449'%20offset='0%25'/%3e%3cstop%20stop-color='%23FDCD34'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%209h15v6H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%200h21v6H0z'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23d)'%20d='M8%206h13v3H8l-8%206V0z'/%3e%3cpath%20fill='url(%23g)'%20mask='url(%23d)'%20d='M6.867%207.5L-.6%201.9l-.4-.3.6-.8.4.3L7.867%207H15v1H7.867L0%2013.9l-.4.3-.6-.8.4-.3z'/%3e%3cpath%20d='M2.5%208.5A1.5%201.5%200%201%201%204%207c0%20.727-.813%202.363-1.5%202.5-.096.02.101-1%200-1zm0-.75C2.776%208%203%207.276%203%207a.5.5%200%200%200-1%200c0%20.276.224%201%20.5.75z'%20fill='url(%23g)'%20fill-rule='nonzero'%20mask='url(%23d)'/%3e%3c/g%3e%3c/svg%3e")}.wf{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F44653'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231035BB'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M10%200h11v15H10z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h7v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M7%200h7v15H7z'/%3e%3c/g%3e%3c/svg%3e")}.wf.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23F44653'%20offset='0%25'/%3e%3cstop%20stop-color='%23EE2A39'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%231035BB'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M7%200h8v15H7z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%200h5v15H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M5%200h5v15H5z'/%3e%3c/g%3e%3c/svg%3e")}.ws{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E31F37'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23083B9A'%20offset='0%25'/%3e%3cstop%20stop-color='%23042E7D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%208h11V0H0z'/%3e%3cpath%20d='M5%207l-.707.207L4.5%206.5l-.207-.707L5%206l.707-.207L5.5%206.5l.207.707L5%207zm0-5l-.707.207L4.5%201.5%204.293.793%205%201l.707-.207L5.5%201.5l.207.707L5%202zM3%204.5l-.707.207L2.5%204l-.207-.707L3%203.5l.707-.207L3.5%204l.207.707L3%204.5zM7.5%204l-.707.207L7%203.5l-.207-.707L7.5%203l.707-.207L8%203.5l.207.707L7.5%204zM6.25%205.5a.25.25%200%201%201%200-.5.25.25%200%200%201%200%20.5z'%20fill='url(%23a)'/%3e%3c/g%3e%3c/svg%3e")}.ws.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23E31F37'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23083B9A'%20offset='0%25'/%3e%3cstop%20stop-color='%23042E7D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%208h11V0H0z'/%3e%3cpath%20d='M5%207l-.707.207L4.5%206.5l-.207-.707L5%206l.707-.207L5.5%206.5l.207.707L5%207zm0-5l-.707.207L4.5%201.5%204.293.793%205%201l.707-.207L5.5%201.5l.207.707L5%202zM3%204.5l-.707.207L2.5%204l-.207-.707L3%203.5l.707-.207L3.5%204l.207.707L3%204.5zM7.5%204l-.707.207L7%203.5l-.207-.707L7.5%203l.707-.207L8%203.5l.207.707L7.5%204zM6.25%205.5a.25.25%200%201%201%200-.5.25.25%200%200%201%200%20.5z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3c/g%3e%3c/svg%3e")}.xk{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%232F5FBF'%20offset='0%25'/%3e%3cstop%20stop-color='%23244EA3'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E9C072'%20offset='0%25'/%3e%3cstop%20stop-color='%23CFA557'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M9%203.5l-.707.207L8.5%203l-.207-.707L9%202.5l.707-.207L9.5%203l.207.707L9%203.5zm3%200l-.707.207L11.5%203l-.207-.707L12%202.5l.707-.207L12.5%203l.207.707L12%203.5zm3%201l-.707.207L14.5%204l-.207-.707L15%203.5l.707-.207L15.5%204l.207.707L15%204.5zm2%202l-.707.207L16.5%206l-.207-.707L17%205.5l.707-.207L17.5%206l.207.707L17%206.5zm-13%200l-.707.207L3.5%206l-.207-.707L4%205.5l.707-.207L4.5%206l.207.707L4%206.5zm2-2l-.707.207L5.5%204l-.207-.707L6%203.5l.707-.207L6.5%204l.207.707L6%204.5z'%20fill='url(%23a)'/%3e%3cpath%20fill='url(%23c)'%20d='M9%2010l-1-.5-1-2h1l1-1%20.5-1%201-.5.5.5%201%20.5v.5l.5.5L14%208l-.5%201.5L12%2011l-.5-1-1.5%201v1l-.5-.5z'/%3e%3c/g%3e%3c/svg%3e")}.xk.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%232F5FBF'%20offset='0%25'/%3e%3cstop%20stop-color='%23244EA3'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23E9C072'%20offset='0%25'/%3e%3cstop%20stop-color='%23CFA557'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M4.4%201.05l-.518.145L4.033.7%203.882.205%204.4.35l.518-.145L4.767.7l.151.495L4.4%201.05zm2.2%200l-.518.145L6.233.7%206.082.205%206.6.35l.518-.145L6.967.7l.151.495L6.6%201.05zm2.2.7l-.518.145.151-.495-.151-.495.518.145.518-.145-.151.495.151.495L8.8%201.75zm1.467%201.4l-.519.145L9.9%202.8l-.152-.495.519.145.518-.145-.152.495.152.495-.518-.145zm-9.534%200l-.518.145.152-.495-.152-.495.518.145.519-.145L1.1%202.8l.152.495-.519-.145zM2.2%201.75l-.518.145.151-.495-.151-.495.518.145.518-.145-.151.495.151.495L2.2%201.75z'%20fill='url(%23b)'%20fill-rule='nonzero'%20transform='translate(2%204)'/%3e%3cpath%20fill='url(%23c)'%20d='M4.4%205.6l-.733-.35-.734-1.4h.734l.733-.7.367-.7.733-.35.367.35.733.35v.35l.367.35%201.1.7L7.7%205.25%206.6%206.3l-.367-.7-1.1.7V7l-.366-.35z'%20transform='translate(2%204)'/%3e%3c/g%3e%3c/svg%3e")}.ye{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E32138'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h21v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h21v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.ye.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23E32138'%20offset='0%25'/%3e%3cstop%20stop-color='%23CC162C'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h15v5H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%2010h15v5H0z'/%3e%3cpath%20fill='url(%23a)'%20d='M0%205h15v5H0z'/%3e%3c/g%3e%3c/svg%3e")}.yt{background-image:url("/assets/yt-DeAkTO2W.svg")}.yt.fp-square{background-image:url("/assets/yt-D7WNzKBj.svg")}.za{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%2306A86E'%20offset='0%25'/%3e%3cstop%20stop-color='%23007A4E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFBF2E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFB612'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F44E46'%20offset='0%25'/%3e%3cstop%20stop-color='%23DF3931'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23072CB4'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%202l7%205.5L0%2013z'/%3e%3cpath%20fill='url(%23d)'%20d='M-1%202.25L5.75%207.5-1%2012.75z'/%3e%3cpath%20fill='%23FFF'%20d='M9%206L2%200h19v6z'/%3e%3cpath%20fill='url(%23e)'%20d='M9.25%205l-6-5H21v5z'/%3e%3cpath%20fill='%23FFF'%20d='M2%2015h19V9H9z'/%3e%3cpath%20fill='url(%23f)'%20d='M3.25%2015H21v-5H9.25z'/%3e%3c/g%3e%3c/svg%3e")}.za.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3cpath%20id='a'%20d='M0%200h15v15H0z'/%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%2306A86E'%20offset='0%25'/%3e%3cstop%20stop-color='%23007A4E'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23FFBF2E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFB612'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='g'%3e%3cstop%20stop-color='%23F44E46'%20offset='0%25'/%3e%3cstop%20stop-color='%23DF3931'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='h'%3e%3cstop%20stop-color='%23072CB4'%20offset='0%25'/%3e%3cstop%20stop-color='%23042396'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cmask%20id='d'%20fill='%23fff'%3e%3cuse%20xlink:href='%23a'/%3e%3c/mask%3e%3cuse%20fill='url(%23b)'%20xlink:href='%23a'/%3e%3cpath%20fill='url(%23c)'%20mask='url(%23d)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23e)'%20mask='url(%23d)'%20d='M0%202l7%205.5L0%2013z'/%3e%3cpath%20fill='url(%23f)'%20mask='url(%23d)'%20d='M-1%202.25L5.75%207.5-1%2012.75z'/%3e%3cpath%20fill='%23FFF'%20mask='url(%23d)'%20d='M9%206L2%200h19v6z'/%3e%3cpath%20fill='url(%23g)'%20mask='url(%23d)'%20d='M9.25%205l-6-5H21v5z'/%3e%3cpath%20fill='%23FFF'%20mask='url(%23d)'%20d='M2%2015h19V9H9z'/%3e%3cpath%20fill='url(%23h)'%20mask='url(%23d)'%20d='M3.25%2015H21v-5H9.25z'/%3e%3c/g%3e%3c/svg%3e")}.zm{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='100%25'%20x2='50%25'%20y2='0%25'%20id='b'%3e%3cstop%20stop-color='%232A8815'%20offset='0%25'/%3e%3cstop%20stop-color='%2335A51D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23EF8A34'%20offset='0%25'/%3e%3cstop%20stop-color='%23EC7E21'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23F48D36'%20offset='0%25'/%3e%3cstop%20stop-color='%23EC7E21'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='f'%3e%3cstop%20stop-color='%23EC322B'%20offset='0%25'/%3e%3cstop%20stop-color='%23DB261F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v15H0z'/%3e%3cpath%20d='M16.196%203.624s-.403.153-.834%200c-.342-.122-.687-.534-.97-.677-.164-.083.14-.478-.184-.371-.325.106-.855-.39-.855-.39s-.548-.667.259-.667%202.51.58%202.51.58.063-.3.202-.438.242-.265.47-.23c.227.034.353.355.353.355l-.354.135v.266s2.362-.724%202.92-.668c.558.056.109.669-.228%201.057-.13.15-.556.456-.815.21-.259-.245-.163.266-.43.43-.438.27-.602.516-.753.587-.15.072-.479%200-.479%200l.096.247s.027.296-.096.414-.208.202-.508.166c-.3-.035-.441.04-.541-.29-.1-.33.237-.716.237-.716zm.247-.342v.772l.339-.284-.34-.488z'%20fill='url(%23c)'/%3e%3cpath%20fill='url(%23d)'%20d='M18%206h3v9h-3z'/%3e%3cpath%20fill='url(%23e)'%20d='M15%206h3v9h-3z'/%3e%3cpath%20fill='url(%23f)'%20d='M12%206h3v9h-3z'/%3e%3c/g%3e%3c/svg%3e")}.zm.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='100%25'%20x2='50%25'%20y2='0%25'%20id='a'%3e%3cstop%20stop-color='%232A8815'%20offset='0%25'/%3e%3cstop%20stop-color='%2335A51D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23EF8A34'%20offset='0%25'/%3e%3cstop%20stop-color='%23EC7E21'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23F48D36'%20offset='0%25'/%3e%3cstop%20stop-color='%23EC7E21'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23EC322B'%20offset='0%25'/%3e%3cstop%20stop-color='%23DB261F'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h15v15H0z'/%3e%3cpath%20d='M10.196%203.624s-.403.153-.834%200c-.342-.122-.687-.534-.97-.677-.164-.083.14-.478-.184-.371-.325.106-.855-.39-.855-.39s-.548-.667.259-.667%202.51.58%202.51.58.063-.3.202-.438.242-.265.47-.23c.227.034.353.355.353.355l-.354.135v.266s2.362-.724%202.92-.668c.558.056.109.669-.228%201.057-.13.15-.556.456-.815.21-.259-.245-.163.266-.43.43-.438.27-.602.516-.753.587-.15.072-.479%200-.479%200l.096.247s.027.296-.096.414-.208.202-.508.166c-.3-.035-.441.04-.541-.29-.1-.33.237-.716.237-.716zm.247-.342v.772l.339-.284-.34-.488h.001z'%20fill='url(%23b)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23c)'%20d='M12%206h3v9h-3z'/%3e%3cpath%20fill='url(%23d)'%20d='M9%206h3v9H9z'/%3e%3cpath%20fill='url(%23e)'%20d='M6%206h3v9H6z'/%3e%3c/g%3e%3c/svg%3e")}.zw{background-image:url("data:image/svg+xml,%3csvg%20width='21'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23369D0C'%20offset='0%25'/%3e%3cstop%20stop-color='%23319209'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFD40E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFD201'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F12F1F'%20offset='0%25'/%3e%3cstop%20stop-color='%23DE2010'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20fill='url(%23a)'%20d='M0%200h21v15H0z'/%3e%3cpath%20fill='url(%23b)'%20d='M0%200h21v2H0zm0%2013h21v2H0zm0-9h21v2H0zm0%205h21v2H0z'/%3e%3cpath%20fill='url(%23c)'%20d='M0%206h21v3H0z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%202h21v2H0zm0%209h21v2H0z'/%3e%3cpath%20fill='url(%23c)'%20fill-rule='nonzero'%20d='M-1%2015V0h1l10%207.5L0%2015z'/%3e%3cpath%20fill='url(%23a)'%20fill-rule='nonzero'%20d='M0%2013.75L8.333%207.5%200%201.25z'/%3e%3cpath%20fill='url(%23e)'%20d='M3%208.475L1.53%209.523%202.074%207.8.623%206.727l1.804-.016L3%205l.573%201.711%201.805.016-1.45%201.074.541%201.722z'/%3e%3c/g%3e%3c/svg%3e")}.zw.fp-square{background-image:url("data:image/svg+xml,%3csvg%20width='15'%20height='15'%20xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='a'%3e%3cstop%20stop-color='%23369D0C'%20offset='0%25'/%3e%3cstop%20stop-color='%23319209'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='b'%3e%3cstop%20stop-color='%23262626'%20offset='0%25'/%3e%3cstop%20stop-color='%230D0D0D'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='c'%3e%3cstop%20stop-color='%23FFD40E'%20offset='0%25'/%3e%3cstop%20stop-color='%23FFD201'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='d'%3e%3cstop%20stop-color='%23FFF'%20offset='0%25'/%3e%3cstop%20stop-color='%23F0F0F0'%20offset='100%25'/%3e%3c/linearGradient%3e%3clinearGradient%20x1='50%25'%20y1='0%25'%20x2='50%25'%20y2='100%25'%20id='e'%3e%3cstop%20stop-color='%23F12F1F'%20offset='0%25'/%3e%3cstop%20stop-color='%23DE2010'%20offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cpath%20d='M1%200h14v2H1V0zm0%2013h14v2H1v-2zm0-9h14v2H1V4zm0%205h14v2H1V9z'%20fill='url(%23a)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M1%206h14v3H1z'/%3e%3cpath%20d='M1%202h14v2H1V2zm0%209h14v2H1v-2z'%20fill='url(%23c)'%20fill-rule='nonzero'/%3e%3cpath%20fill='url(%23b)'%20d='M0%2015V0h1l10%207.5L1%2015z'/%3e%3cpath%20fill='url(%23d)'%20d='M0%2013.75L8.333%207.5%200%201.25z'/%3e%3cpath%20fill='url(%23e)'%20d='M3%208.475L1.53%209.523%202.074%207.8.623%206.727l1.804-.016L3%205l.573%201.711%201.805.016-1.45%201.074.541%201.722z'/%3e%3c/g%3e%3c/svg%3e")}
:root {
  --p-text-color: var(--text-color);
  --p-text-muted-color: var(--text-muted-color);
  --p-content-border-radius: var(--p-content-border-radius);
  --p-primary-color: var(--primary-color);
  --p-primary-contrast-color: var(--primary-contrast-color);
  --p-surface-0: var(--surface-0);
  --p-surface-50: var(--surface-50);
  --p-surface-100: var(--surface-100);
  --p-surface-200: var(--surface-200);
  --p-surface-300: var(--surface-300);
  --p-surface-400: var(--surface-400);
  --p-surface-500: var(--surface-500);
  --p-surface-600: var(--surface-600);
  --p-surface-700: var(--surface-700);
  --p-surface-800: var(--surface-800);
  --p-surface-900: var(--surface-900);
  --p-blue-50: var(--blue-50);
  --p-blue-100: var(--blue-100);
  --p-blue-200: var(--blue-200);
  --p-blue-300: var(--blue-300);
  --p-blue-400: var(--blue-400);
  --p-blue-500: var(--blue-500);
  --p-blue-600: var(--blue-600);
  --p-blue-700: var(--blue-700);
  --p-blue-800: var(--blue-800);
  --p-blue-900: var(--blue-900);
  --p-green-50: var(--green-50);
  --p-green-100: var(--green-100);
  --p-green-200: var(--green-200);
  --p-green-300: var(--green-300);
  --p-green-400: var(--green-400);
  --p-green-500: var(--green-500);
  --p-green-600: var(--green-600);
  --p-green-700: var(--green-700);
  --p-green-800: var(--green-800);
  --p-green-900: var(--green-900);
  --p-yellow-50: var(--yellow-50);
  --p-yellow-100: var(--yellow-100);
  --p-yellow-200: var(--yellow-200);
  --p-yellow-300: var(--yellow-300);
  --p-yellow-400: var(--yellow-400);
  --p-yellow-500: var(--yellow-500);
  --p-yellow-600: var(--yellow-600);
  --p-yellow-700: var(--yellow-700);
  --p-yellow-800: var(--yellow-800);
  --p-yellow-900: var(--yellow-900);
  --p-cyan-50: var(--cyan-50);
  --p-cyan-100: var(--cyan-100);
  --p-cyan-200: var(--cyan-200);
  --p-cyan-300: var(--cyan-300);
  --p-cyan-400: var(--cyan-400);
  --p-cyan-500: var(--cyan-500);
  --p-cyan-600: var(--cyan-600);
  --p-cyan-700: var(--cyan-700);
  --p-cyan-800: var(--cyan-800);
  --p-cyan-900: var(--cyan-900);
  --p-pink-50: var(--pink-50);
  --p-pink-100: var(--pink-100);
  --p-pink-200: var(--pink-200);
  --p-pink-300: var(--pink-300);
  --p-pink-400: var(--pink-400);
  --p-pink-500: var(--pink-500);
  --p-pink-600: var(--pink-600);
  --p-pink-700: var(--pink-700);
  --p-pink-800: var(--pink-800);
  --p-pink-900: var(--pink-900);
  --p-indigo-50: var(--indigo-50);
  --p-indigo-100: var(--indigo-100);
  --p-indigo-200: var(--indigo-200);
  --p-indigo-300: var(--indigo-300);
  --p-indigo-400: var(--indigo-400);
  --p-indigo-500: var(--indigo-500);
  --p-indigo-600: var(--indigo-600);
  --p-indigo-700: var(--indigo-700);
  --p-indigo-800: var(--indigo-800);
  --p-indigo-900: var(--indigo-900);
  --p-teal-50: var(--teal-50);
  --p-teal-100: var(--teal-100);
  --p-teal-200: var(--teal-200);
  --p-teal-300: var(--teal-300);
  --p-teal-400: var(--teal-400);
  --p-teal-500: var(--teal-500);
  --p-teal-600: var(--teal-600);
  --p-teal-700: var(--teal-700);
  --p-teal-800: var(--teal-800);
  --p-teal-900: var(--teal-900);
  --p-orange-50: var(--orange-50);
  --p-orange-100: var(--orange-100);
  --p-orange-200: var(--orange-200);
  --p-orange-300: var(--orange-300);
  --p-orange-400: var(--orange-400);
  --p-orange-500: var(--orange-500);
  --p-orange-600: var(--orange-600);
  --p-orange-700: var(--orange-700);
  --p-orange-800: var(--orange-800);
  --p-orange-900: var(--orange-900);
  --p-bluegray-50: var(--bluegray-50);
  --p-bluegray-100: var(--bluegray-100);
  --p-bluegray-200: var(--bluegray-200);
  --p-bluegray-300: var(--bluegray-300);
  --p-bluegray-400: var(--bluegray-400);
  --p-bluegray-500: var(--bluegray-500);
  --p-bluegray-600: var(--bluegray-600);
  --p-bluegray-700: var(--bluegray-700);
  --p-bluegray-800: var(--bluegray-800);
  --p-bluegray-900: var(--bluegray-900);
  --p-purple-50: var(--purple-50);
  --p-purple-100: var(--purple-100);
  --p-purple-200: var(--purple-200);
  --p-purple-300: var(--purple-300);
  --p-purple-400: var(--purple-400);
  --p-purple-500: var(--purple-500);
  --p-purple-600: var(--purple-600);
  --p-purple-700: var(--purple-700);
  --p-purple-800: var(--purple-800);
  --p-purple-900: var(--purple-900);
  --p-red-50: var(--red-50);
  --p-red-100: var(--red-100);
  --p-red-200: var(--red-200);
  --p-red-300: var(--red-300);
  --p-red-400: var(--red-400);
  --p-red-500: var(--red-500);
  --p-red-600: var(--red-600);
  --p-red-700: var(--red-700);
  --p-red-800: var(--red-800);
  --p-red-900: var(--red-900);
  --p-primary-50: var(--primary-50);
  --p-primary-100: var(--primary-100);
  --p-primary-200: var(--primary-200);
  --p-primary-300: var(--primary-300);
  --p-primary-400: var(--primary-400);
  --p-primary-500: var(--primary-500);
  --p-primary-600: var(--primary-600);
  --p-primary-700: var(--primary-700);
  --p-primary-800: var(--primary-800);
  --p-primary-900: var(--primary-900);
  --p-gray-50: var(--gray-50);
  --p-gray-100: var(--gray-100);
  --p-gray-200: var(--gray-200);
  --p-gray-300: var(--gray-300);
  --p-gray-400: var(--gray-400);
  --p-gray-500: var(--gray-500);
  --p-gray-600: var(--gray-600);
  --p-gray-700: var(--gray-700);
  --p-gray-800: var(--gray-800);
  --p-gray-900: var(--gray-900);
  color-scheme: light;

/* 
--primary-color-500:#f59e0b;
--primary-color:#f59e0b; */
}

/* 
.p-button.p-component {
    background: var(--primary-color); 
     border: 1px solid var(--primary-color-500);
} */

.layout-topbar-orange {
    --topbar-bg: #374766;
    --topbar-start-bg: #313d55;
    --topbar-menu-button-bg: #d2cbcb;
    --topbar-menu-button-hover-bg: #ada7a7;
    --topbar-menu-button-text-color: #060505;
    --topbar-item-text-color: #212121;
    --topbar-item-hover-bg: rgba(0, 0, 0, .12);
}

.layout-menu-light {
    --menu-bg: #FDFEFF;
    --root-menuitem-text-color: #657380;
    --menuitem-text-color: #515C66;
    --menuitem-hover-bg: rgba(0, 0, 0, .04);
    --active-menuitem-text-color: var(--primary-500);
    --active-menuitem-bg: var(--primary-50);
    --inline-menu-border-color: #e4e4e4;
}

.panel-search-collapsed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.panel-search-expanded {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

/* 
.layout-topbar .layout-topbar-start .layout-menu-button {
    background-color: #44557a;
}

.diligentec-text-orange {
    color: var(--diligentec-orange) !important;
}

.diligentec-bg-orange {
    background-color: var(--diligentec-orange) !important;
}

.diligentec-border-orange {
    border-color: var(--diligentec-orange) !important;
}

.diligentec-text-blue {
    color: var(--diligentec-blue) !important;
}

.diligentec-bg-blue {
    background-color: var(--diligentec-blue) !important;
}

.diligentec-border-blue {
    border-color: var(--diligentec-blue) !important;
}

@media (max-width: 1200px) {
    .main-content {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .main-content {
        width: 95%;
    }
}
.layout-content {
    animation: slideUp 0.1s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px); 
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.layout-sidebar .layout-menu li.active-menuitem > a {
    color: #154270;
    background-color: var(--active-menuitem-bg);
}

.layout-sidebar .layout-menu li.active-menuitem > a .layout-menuitem-icon {
    color: #154270;
}

.layout-topbar .layout-topbar-start .layout-menu-button {
    background-color: #a24900;
}

.p-picklist .p-picklist-buttons .p-button.p-button-icon-only {
    background-color: #154270;
} */


.layout-content{
    width: 100% !important;
}


.p-input-icon-left .pi.pi-search{
        display: none;
}