@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block; /* Enable animation */

  background-color: var(--base-color);

  width: 100%;
  border-radius: 0.25rem;
  display: inline-flex;
  line-height: 1;

  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
}

.react-loading-skeleton::after {
  content: ' ';
  display: var(--pseudo-element-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-image: var(
    --custom-highlight-background,
    linear-gradient(
      90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%
    )
  );
  transform: translateX(-100%);

  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none; /* Disable animation */
  }
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --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-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-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --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);
  --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;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.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%);
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
}
.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%);
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    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 {
  --y: 0;
  position: relative;
  touch-action: none;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
  overflow: hidden;
}
.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-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1;
}
.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  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;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.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;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
  z-index: 1;
}
.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: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.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;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-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);
  }
}

/*# sourceMappingURL=ReactToastify.css.map */
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(/_next/static/media/ajax-loader.0b80f665.gif) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/_next/static/media/slick.25572f22.eot);
    src: url(/_next/static/media/slick.25572f22.eot?#iefix) format('embedded-opentype'), url(/_next/static/media/slick.653a4cbb.woff) format('woff'), url(/_next/static/media/slick.6aa1ee46.ttf) format('truetype'), url(/_next/static/media/slick.db61df16.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}

@font-face {
  font-family: "icomoon";
  src: url("/fonts/icomoon.eot?n0g1wf");
  src: url("/fonts/icomoon.eot?n0g1wf#iefix") format("embedded-opentype"),ß
    url("/fonts/icomoon.woff?n0g1wf") format("woff"),
    url("/fonts/icomoon.woff2?n0g1wf") format("woff2"),
    url("/fonts/icomoon.svg?n0g1wf#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
  font-display: swap;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-star-2:before {
  content: "\ed0c";
}
.icon-help:before {
  content: "\ed08";
}
.icon-thumb-down:before {
  content: "\ed02";
}
.icon-thumb-up:before {
  content: "\ed03";
}
.icon-seemore:before {
  content: "\ea7a";
}
.icon-support-24:before {
  content: "\ed00";
}
.icon-simple-icons_x:before {
  content: "\ecff";
}
.icon-linkedin:before {
  content: "\ecfe";
}
.icon-heart-fill:before {
  content: "\ed0b";
}
.icon-arrow-up-right:before {
  content: "\ed0a";
}
.icon-data-base:before {
  content: "\ed09";
}
.icon-p-high:before {
  content: "\e91b";
}
.icon-p-low:before {
  content: "\ed06";
}
.icon-p-medium:before {
  content: "\ed07";
}
.icon-tick-double:before {
  content: "\ed04";
}
.icon-tick:before {
  content: "\ed05";
}
.icon-chatbot:before {
  content: "\ed01";
}
.icon-bug1:before {
  content: "\ecf9";
}
.icon-facebook .path1:before {
  content: "\e900";
  color: rgb(24, 119, 242);
}
.icon-facebook .path2:before {
  content: "\e901";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-google .path1:before {
  content: "\e902";
  color: rgb(66, 133, 244);
}
.icon-google .path2:before {
  content: "\e903";
  margin-left: -1em;
  color: rgb(52, 168, 83);
}
.icon-google .path3:before {
  content: "\e904";
  margin-left: -1em;
  color: rgb(251, 188, 5);
}
.icon-google .path4:before {
  content: "\e905";
  margin-left: -1em;
  color: rgb(235, 67, 53);
}
.icon-aave-aave:before {
  content: "\e906";
}
.icon-activity:before {
  content: "\e907";
}
.icon-airdrop:before {
  content: "\e908";
}
.icon-airpod:before {
  content: "\e909";
}
.icon-airpods:before {
  content: "\e90a";
}
.icon-android:before {
  content: "\e90b";
}
.icon-ankr-ankr:before {
  content: "\e90c";
}
.icon-apple:before {
  content: "\e90d";
}
.icon-aquarius:before {
  content: "\e90e";
}
.icon-archive-add:before {
  content: "\e90f";
}
.icon-archive-minus:before {
  content: "\e910";
}
.icon-archive-slash:before {
  content: "\e911";
}
.icon-archive-tick:before {
  content: "\e912";
}
.icon-archive:before {
  content: "\e913";
}
.icon-augur-rep:before {
  content: "\e914";
}
.icon-autonio-niox:before {
  content: "\e915";
}
.icon-avalanche-avax:before {
  content: "\e916";
}
.icon-bank:before {
  content: "\e917";
}
.icon-be:before {
  content: "\e918";
}
.icon-binance-usd-busd:before {
  content: "\e91a";
}
.icon-blogger:before {
  content: "\e91c";
}
.icon-bluetooth-2:before {
  content: "\e91d";
}
.icon-bluetooth-circle:before {
  content: "\e91e";
}
.icon-bluetooth-rectangle:before {
  content: "\e91f";
}
.icon-bluetooth:before {
  content: "\e920";
}
.icon-book-saved:before {
  content: "\e921";
}
.icon-book-square:before {
  content: "\e922";
}
.icon-bootstrap:before {
  content: "\e923";
}
.icon-bug:before {
  content: "\e924";
}
.icon-building-3:before {
  content: "\e925";
}
.icon-building-4:before {
  content: "\e926";
}
.icon-building:before {
  content: "\e927";
}
.icon-buildings-2:before {
  content: "\e928";
}
.icon-buildings:before {
  content: "\e929";
}
.icon-buliding:before {
  content: "\e92a";
}
.icon-calendar-1:before {
  content: "\e92b";
}
.icon-calendar-2:before {
  content: "\e92c";
}
.icon-calendar-add:before {
  content: "\e92d";
}
.icon-calendar-circle:before {
  content: "\e92e";
}
.icon-calendar-edit:before {
  content: "\e92f";
}
.icon-calendar-remove:before {
  content: "\e930";
}
.icon-calendar-search:before {
  content: "\e931";
}
.icon-calendar-tick:before {
  content: "\e932";
}
.icon-calendar:before {
  content: "\e933";
}
.icon-call-add:before {
  content: "\e934";
}
.icon-call-calling:before {
  content: "\e935";
}
.icon-call-incoming:before {
  content: "\e936";
}
.icon-call-minus:before {
  content: "\e937";
}
.icon-call-outgoing:before {
  content: "\e938";
}
.icon-call-received:before {
  content: "\e939";
}
.icon-call-remove:before {
  content: "\e93a";
}
.icon-call-slash:before {
  content: "\e93b";
}
.icon-call:before {
  content: "\e93c";
}
.icon-candle-2:before {
  content: "\e93d";
}
.icon-candle:before {
  content: "\e93e";
}
.icon-cardano-ada:before {
  content: "\e93f";
}
.icon-category-2:before {
  content: "\e940";
}
.icon-category:before {
  content: "\e941";
}
.icon-celo-celo:before {
  content: "\e942";
}
.icon-celsius-cel:before {
  content: "\e943";
}
.icon-chainlink-link:before {
  content: "\e944";
}
.icon-chart-1:before {
  content: "\e945";
}
.icon-chart-2:before {
  content: "\e946";
}
.icon-chart-21:before {
  content: "\e947";
}
.icon-chart-fail:before {
  content: "\e948";
}
.icon-chart-success:before {
  content: "\e949";
}
.icon-chart:before {
  content: "\e94a";
}
.icon-civic-cvc:before {
  content: "\e94b";
}
.icon-clock-1:before {
  content: "\e94c";
}
.icon-clock:before {
  content: "\e94d";
}
.icon-cloud-add:before {
  content: "\e94e";
}
.icon-cloud-change:before {
  content: "\e94f";
}
.icon-cloud-connection:before {
  content: "\e950";
}
.icon-cloud-remove:before {
  content: "\e951";
}
.icon-courthouse:before {
  content: "\e952";
}
.icon-cpu-charge:before {
  content: "\e953";
}
.icon-cpu-setting:before {
  content: "\e954";
}
.icon-cpu:before {
  content: "\e955";
}
.icon-dai-dai:before {
  content: "\e956";
}
.icon-dash-dash:before {
  content: "\e957";
}
.icon-decred-dcr:before {
  content: "\e958";
}
.icon-dent-dent:before {
  content: "\e959";
}
.icon-devices:before {
  content: "\e95a";
}
.icon-diagram:before {
  content: "\e95b";
}
.icon-dribbble:before {
  content: "\e95c";
}
.icon-driver-2:before {
  content: "\e95d";
}
.icon-driver-refresh:before {
  content: "\e95e";
}
.icon-driver:before {
  content: "\e95f";
}
.icon-dropbox:before {
  content: "\e960";
}
.icon-educare-ekt:before {
  content: "\e961";
}
.icon-electricity:before {
  content: "\e962";
}
.icon-emercoin-emc:before {
  content: "\e963";
}
.icon-enjin-coin-enj:before {
  content: "\e964";
}
.icon-eos-eos:before {
  content: "\e965";
}
.icon-ethereum-eth:before {
  content: "\e966";
}
.icon-ethereum-classic-etc:before {
  content: "\e967";
}
.icon-external-drive:before {
  content: "\e968";
}
.icon-facebook1:before {
  content: "\e969";
}
.icon-favorite-chart:before {
  content: "\e96a";
}
.icon-figma-1:before {
  content: "\e96b";
}
.icon-figma:before {
  content: "\e96c";
}
.icon-folder-connection:before {
  content: "\e96d";
}
.icon-framer:before {
  content: "\e96e";
}
.icon-ftx-token-ftt:before {
  content: "\e96f";
}
.icon-game:before {
  content: "\e970";
}
.icon-gameboy:before {
  content: "\e971";
}
.icon-gemini-2:before {
  content: "\e972";
}
.icon-gemini:before {
  content: "\e973";
}
.icon-google-drive:before {
  content: "\e974";
}
.icon-google-paly:before {
  content: "\e975";
}
.icon-google1:before {
  content: "\e976";
}
.icon-graph:before {
  content: "\e977";
}
.icon-harmony-one:before {
  content: "\e978";
}
.icon-hashtag:before {
  content: "\e979";
}
.icon-headphone:before {
  content: "\e97a";
}
.icon-headphones:before {
  content: "\e97b";
}
.icon-health:before {
  content: "\e97c";
}
.icon-hedera-hashgraph-hbar:before {
  content: "\e97d";
}
.icon-hex-hex:before {
  content: "\e97e";
}
.icon-home-hashtag:before {
  content: "\e97f";
}
.icon-home-trend-down:before {
  content: "\e980";
}
.icon-home-trend-up:before {
  content: "\e981";
}
.icon-hospital:before {
  content: "\e982";
}
.icon-house-2:before {
  content: "\e983";
}
.icon-house:before {
  content: "\e984";
}
.icon-html-3:before {
  content: "\e985";
}
.icon-html-5:before {
  content: "\e986";
}
.icon-huobi-token-ht:before {
  content: "\e987";
}
.icon-icon-icx:before {
  content: "\e988";
}
.icon-icon-1:before {
  content: "\e989";
}
.icon-icon:before {
  content: "\e98a";
}
.icon-illustrator:before {
  content: "\e98b";
}
.icon-iost-iost:before {
  content: "\e98c";
}
.icon-java-script:before {
  content: "\e98d";
}
.icon-js:before {
  content: "\e98e";
}
.icon-keyboard-open:before {
  content: "\e98f";
}
.icon-keyboard:before {
  content: "\e990";
}
.icon-kyber-network-knc:before {
  content: "\e991";
}
.icon-lamp-charge:before {
  content: "\e992";
}
.icon-lamp-on:before {
  content: "\e993";
}
.icon-lamp-slash:before {
  content: "\e994";
}
.icon-lamp:before {
  content: "\e995";
}
.icon-litecoinltc:before {
  content: "\e996";
}
.icon-maker-mkr:before {
  content: "\e997";
}
.icon-man:before {
  content: "\e998";
}
.icon-menu:before {
  content: "\e999";
}
.icon-messenger:before {
  content: "\e99a";
}
.icon-microscope:before {
  content: "\e99b";
}
.icon-mirroring-screen:before {
  content: "\e99c";
}
.icon-mobile:before {
  content: "\e99d";
}
.icon-monero-xmr:before {
  content: "\e99e";
}
.icon-monitor-mobbile:before {
  content: "\e99f";
}
.icon-monitor-recorder:before {
  content: "\e9a0";
}
.icon-monitor:before {
  content: "\e9a1";
}
.icon-more-2-1:before {
  content: "\e9a2";
}
.icon-more-2:before {
  content: "\e9a3";
}
.icon-more-3:before {
  content: "\e9a4";
}
.icon-more:before {
  content: "\e9a5";
}
.icon-mouse:before {
  content: "\e9a6";
}
.icon-music-play:before {
  content: "\e9a7";
}
.icon-nebulas-nas:before {
  content: "\e9a8";
}
.icon-nem-xem:before {
  content: "\e9a9";
}
.icon-nexo-nexo:before {
  content: "\e9aa";
}
.icon-notification-1:before {
  content: "\e9ab";
}
.icon-notification-bing:before {
  content: "\e9ac";
}
.icon-notification-circle:before {
  content: "\e9ad";
}
.icon-notification-favorite:before {
  content: "\e9ae";
}
.icon-notification-status:before {
  content: "\e9af";
}
.icon-notification:before {
  content: "\e9b0";
}
.icon-ocean-protocol-ocean:before {
  content: "\e9b1";
}
.icon-okb-okb:before {
  content: "\e9b2";
}
.icon-ontology-ont:before {
  content: "\e9b3";
}
.icon-paypal:before {
  content: "\e9b4";
}
.icon-personalcard:before {
  content: "\e9b5";
}
.icon-photoshop:before {
  content: "\e9b6";
}
.icon-polkadot-dot:before {
  content: "\e9b7";
}
.icon-polygon-matic:before {
  content: "\e9b8";
}
.icon-polyswarm-nct:before {
  content: "\e9b9";
}
.icon-presention-chart:before {
  content: "\e9ba";
}
.icon-printer-slash:before {
  content: "\e9bb";
}
.icon-printer:before {
  content: "\e9bc";
}
.icon-python:before {
  content: "\e9bd";
}
.icon-quant-qnt:before {
  content: "\e9be";
}
.icon-ram-2:before {
  content: "\e9bf";
}
.icon-ram:before {
  content: "\e9c0";
}
.icon-receipt-square:before {
  content: "\e9c1";
}
.icon-sagittarius:before {
  content: "\e9c2";
}
.icon-save-2:before {
  content: "\e9c3";
}
.icon-save-add:before {
  content: "\e9c4";
}
.icon-save-minus:before {
  content: "\e9c5";
}
.icon-save-remove:before {
  content: "\e9c6";
}
.icon-search-favorite-1:before {
  content: "\e9c7";
}
.icon-search-favorite:before {
  content: "\e9c8";
}
.icon-search-normal-1:before {
  content: "\e9c9";
}
.icon-search-normal:before {
  content: "\e9ca";
}
.icon-search-status-1:before {
  content: "\e9cb";
}
.icon-search-status:before {
  content: "\e9cc";
}
.icon-search-zoom-in-1:before {
  content: "\e9cd";
}
.icon-search-zoom-in:before {
  content: "\e9ce";
}
.icon-search-zoom-out-1:before {
  content: "\e9cf";
}
.icon-search-zoom-out:before {
  content: "\e9d0";
}
.icon-security-time:before {
  content: "\e9d1";
}
.icon-setting-2:before {
  content: "\e9d2";
}
.icon-setting-3:before {
  content: "\e9d3";
}
.icon-setting-4:before {
  content: "\e9d4";
}
.icon-setting-5:before {
  content: "\e9d5";
}
.icon-setting:before {
  content: "\e9d6";
}
.icon-settings:before {
  content: "\e9d7";
}
.icon-siacoin-sc:before {
  content: "\e9d8";
}
.icon-simcard-1:before {
  content: "\e9d9";
}
.icon-simcard-2:before {
  content: "\e9da";
}
.icon-simcard:before {
  content: "\e9db";
}
.icon-slack:before {
  content: "\e9dc";
}
.icon-snapchat:before {
  content: "\e9dd";
}
.icon-solana-sol:before {
  content: "\e9de";
}
.icon-speaker:before {
  content: "\e9df";
}
.icon-spotify:before {
  content: "\e9e0";
}
.icon-stacks-stx:before {
  content: "\e9e1";
}
.icon-status-up:before {
  content: "\e9e2";
}
.icon-stellar-xlm:before {
  content: "\e9e3";
}
.icon-tenx-pay:before {
  content: "\e9e4";
}
.icon-tether-usdt:before {
  content: "\e9e5";
}
.icon-the-graph-grt:before {
  content: "\e9e6";
}
.icon-theta-theta:before {
  content: "\e9e7";
}
.icon-thorchain-rune:before {
  content: "\e9e8";
}
.icon-timer-1:before {
  content: "\e9e9";
}
.icon-timer-pause:before {
  content: "\e9ea";
}
.icon-timer-start:before {
  content: "\e9eb";
}
.icon-timer:before {
  content: "\e9ec";
}
.icon-toggle-off-circle:before {
  content: "\e9ed";
}
.icon-toggle-off:before {
  content: "\e9ee";
}
.icon-toggle-on-circle:before {
  content: "\e9ef";
}
.icon-toggle-on:before {
  content: "\e9f0";
}
.icon-trello:before {
  content: "\e9f1";
}
.icon-trend-down:before {
  content: "\e9f2";
}
.icon-trend-up:before {
  content: "\e9f3";
}
.icon-triangle:before {
  content: "\e9f4";
}
.icon-trontron-trx:before {
  content: "\e9f5";
}
.icon-twitch:before {
  content: "\e9f6";
}
.icon-ui8:before {
  content: "\e9f7";
}
.icon-usd-coin-usdc:before {
  content: "\e9f8";
}
.icon-velas-vlx:before {
  content: "\e9f9";
}
.icon-vibe-vibe:before {
  content: "\e9fa";
}
.icon-vuesax:before {
  content: "\e9fb";
}
.icon-wanchain-wan-1:before {
  content: "\e9fc";
}
.icon-wanchain-wan:before {
  content: "\e9fd";
}
.icon-watch-status:before {
  content: "\e9fe";
}
.icon-watch:before {
  content: "\e9ff";
}
.icon-weight:before {
  content: "\ea00";
}
.icon-whatsapp:before {
  content: "\ea01";
}
.icon-windows:before {
  content: "\ea02";
}
.icon-wing-wing:before {
  content: "\ea03";
}
.icon-woman:before {
  content: "\ea04";
}
.icon-xd:before {
  content: "\ea05";
}
.icon-xiaomi:before {
  content: "\ea06";
}
.icon-xrp-xrp:before {
  content: "\ea07";
}
.icon-youtube:before {
  content: "\ea08";
}
.icon-zel-zel:before {
  content: "\ea09";
}
.icon-zoom:before {
  content: "\ea0a";
}
.icon-d-cube-scan:before {
  content: "\ea0b";
}
.icon-d-rotate:before {
  content: "\ea0c";
}
.icon-d-square:before {
  content: "\ea0d";
}
.icon-dcube:before {
  content: "\ea0e";
}
.icon-square:before {
  content: "\ea0f";
}
.icon-support:before {
  content: "\ea10";
}
.icon-add-circle:before {
  content: "\ea11";
}
.icon-add-square:before {
  content: "\ea12";
}
.icon-add:before {
  content: "\ea13";
}
.icon-additem:before {
  content: "\ea14";
}
.icon-alarm:before {
  content: "\ea15";
}
.icon-align-bottom:before {
  content: "\ea16";
}
.icon-align-horizontally:before {
  content: "\ea17";
}
.icon-align-left:before {
  content: "\ea18";
}
.icon-align-right:before {
  content: "\ea19";
}
.icon-align-vertically:before {
  content: "\ea1a";
}
.icon-archive-book:before {
  content: "\ea1b";
}
.icon-archive1:before {
  content: "\ea1c";
}
.icon-autobrightness:before {
  content: "\ea1f";
}
.icon-award:before {
  content: "\ea20";
}
.icon-backward-item:before {
  content: "\ea21";
}
.icon-bag-2:before {
  content: "\ea22";
}
.icon-bag-cross-1:before {
  content: "\ea23";
}
.icon-bag-cross:before {
  content: "\ea24";
}
.icon-bag-happy:before {
  content: "\ea25";
}
.icon-bag-tick-2:before {
  content: "\ea26";
}
.icon-bag-tick:before {
  content: "\ea27";
}
.icon-bag-timer:before {
  content: "\ea28";
}
.icon-bag:before {
  content: "\ea29";
}
.icon-barcode:before {
  content: "\ea2a";
}
.icon-battery-charging:before {
  content: "\ea2b";
}
.icon-battery-disable:before {
  content: "\ea2c";
}
.icon-battery-empty-1:before {
  content: "\ea2d";
}
.icon-battery-empty:before {
  content: "\ea2e";
}
.icon-battery-full:before {
  content: "\ea2f";
}
.icon-bezier:before {
  content: "\ea30";
}
.icon-bill:before {
  content: "\ea31";
}
.icon-bitcoin-card:before {
  content: "\ea32";
}
.icon-bitcoin-convert:before {
  content: "\ea33";
}
.icon-bitcoin-refresh:before {
  content: "\ea34";
}
.icon-blend-2:before {
  content: "\ea35";
}
.icon-blend:before {
  content: "\ea36";
}
.icon-blur:before {
  content: "\ea37";
}
.icon-book-1:before {
  content: "\ea38";
}
.icon-book:before {
  content: "\ea39";
}
.icon-bookmark-2:before {
  content: "\ea3a";
}
.icon-bookmark:before {
  content: "\ea3b";
}
.icon-box-1:before {
  content: "\ea3c";
}
.icon-box-2:before {
  content: "\ea3d";
}
.icon-box-add:before {
  content: "\ea3e";
}
.icon-box-remove:before {
  content: "\ea3f";
}
.icon-box-search:before {
  content: "\ea40";
}
.icon-box-tick:before {
  content: "\ea41";
}
.icon-box-time:before {
  content: "\ea42";
}
.icon-box:before {
  content: "\ea43";
}
.icon-briefcase:before {
  content: "\ea44";
}
.icon-brifecase-cross:before {
  content: "\ea45";
}
.icon-brifecase-tick:before {
  content: "\ea46";
}
.icon-brifecase-timer:before {
  content: "\ea47";
}
.icon-broom:before {
  content: "\ea48";
}
.icon-brush-1:before {
  content: "\ea49";
}
.icon-brush-2:before {
  content: "\ea4a";
}
.icon-brush-3:before {
  content: "\ea4b";
}
.icon-brush-4:before {
  content: "\ea4c";
}
.icon-brush:before {
  content: "\ea4d";
}
.icon-bubble:before {
  content: "\ea4e";
}
.icon-bucket-circle:before {
  content: "\ea4f";
}
.icon-bucket-square:before {
  content: "\ea50";
}
.icon-bucket:before {
  content: "\ea51";
}
.icon-buy-crypto:before {
  content: "\ea52";
}
.icon-cake:before {
  content: "\ea53";
}
.icon-calculator:before {
  content: "\ea54";
}
.icon-card-coin:before {
  content: "\ea55";
}
.icon-cd:before {
  content: "\ea56";
}
.icon-chart1:before {
  content: "\ea57";
}
.icon-check:before {
  content: "\ea58";
}
.icon-chrome:before {
  content: "\ea59";
}
.icon-clipboard-close:before {
  content: "\ea5a";
}
.icon-clipboard-export:before {
  content: "\ea5b";
}
.icon-clipboard-import:before {
  content: "\ea5c";
}
.icon-clipboard-text:before {
  content: "\ea5d";
}
.icon-clipboard-tick:before {
  content: "\ea5e";
}
.icon-clipboard:before {
  content: "\ea5f";
}
.icon-close-circle:before {
  content: "\ea60";
}
.icon-close-square:before {
  content: "\ea61";
}
.icon-close:before {
  content: "\ea62";
}
.icon-code-1:before {
  content: "\ea63";
}
.icon-code-circle:before {
  content: "\ea64";
}
.icon-code:before {
  content: "\ea65";
}
.icon-coffee:before {
  content: "\ea66";
}
.icon-color-swatch:before {
  content: "\ea67";
}
.icon-colorfilter:before {
  content: "\ea68";
}
.icon-colors-square:before {
  content: "\ea69";
}
.icon-command-square:before {
  content: "\ea6a";
}
.icon-command:before {
  content: "\ea6b";
}
.icon-component:before {
  content: "\ea6c";
}
.icon-computing:before {
  content: "\ea6d";
}
.icon-convert-3d-cube:before {
  content: "\ea6e";
}
.icon-convertshape-2:before {
  content: "\ea6f";
}
.icon-convertshape:before {
  content: "\ea70";
}
.icon-copy-success:before {
  content: "\ea71";
}
.icon-copy:before {
  content: "\ea72";
}
.icon-copyright:before {
  content: "\ea73";
}
.icon-creative-commons:before {
  content: "\ea74";
}
.icon-crop:before {
  content: "\ea75";
}
.icon-crown-1:before {
  content: "\ea76";
}
.icon-crown:before {
  content: "\ea77";
}
.icon-cup:before {
  content: "\ea78";
}
.icon-danger:before {
  content: "\ea79";
}
.icon-data:before {
  content: "\ea7b";
}
.icon-designtools:before {
  content: "\ea7c";
}
.icon-device-message:before {
  content: "\ea7d";
}
.icon-diamonds:before {
  content: "\ea7e";
}
.icon-direct-down:before {
  content: "\ea7f";
}
.icon-direct-inbox:before {
  content: "\ea80";
}
.icon-direct-left:before {
  content: "\ea81";
}
.icon-direct-normal:before {
  content: "\ea82";
}
.icon-direct-notification:before {
  content: "\ea83";
}
.icon-direct-right:before {
  content: "\ea84";
}
.icon-direct-send:before {
  content: "\ea85";
}
.icon-direct-up:before {
  content: "\ea86";
}
.icon-direct:before {
  content: "\ea87";
}
.icon-directbox-default:before {
  content: "\ea88";
}
.icon-directbox-notif:before {
  content: "\ea89";
}
.icon-directbox-receive:before {
  content: "\ea8a";
}
.icon-directbox-send:before {
  content: "\ea8b";
}
.icon-discover-1:before {
  content: "\ea8c";
}
.icon-discover:before {
  content: "\ea8d";
}
.icon-dislike:before {
  content: "\ea8e";
}
.icon-document-cloud:before {
  content: "\ea8f";
}
.icon-document-code-2:before {
  content: "\ea90";
}
.icon-document-code:before {
  content: "\ea91";
}
.icon-document-copy:before {
  content: "\ea92";
}
.icon-document-download:before {
  content: "\ea93";
}
.icon-document-favorite:before {
  content: "\ea94";
}
.icon-document-filter:before {
  content: "\ea95";
}
.icon-document-forward:before {
  content: "\ea96";
}
.icon-document-like:before {
  content: "\ea97";
}
.icon-document-normal:before {
  content: "\ea98";
}
.icon-document-previous:before {
  content: "\ea99";
}
.icon-document-sketch:before {
  content: "\ea9a";
}
.icon-document-text-1:before {
  content: "\ea9b";
}
.icon-document-text:before {
  content: "\ea9c";
}
.icon-document-upload:before {
  content: "\ea9d";
}
.icon-document:before {
  content: "\ea9e";
}
.icon-edit-2:before {
  content: "\ea9f";
}
.icon-edit:before {
  content: "\eaa0";
}
.icon-element-2:before {
  content: "\eaa1";
}
.icon-element-3:before {
  content: "\eaa2";
}
.icon-element-4:before {
  content: "\eaa3";
}
.icon-element-equal:before {
  content: "\eaa4";
}
.icon-element-plus:before {
  content: "\eaa5";
}
.icon-emoji-happy:before {
  content: "\eaa6";
}
.icon-emoji-normal:before {
  content: "\eaa7";
}
.icon-emoji-sad:before {
  content: "\eaa8";
}
.icon-eraser:before {
  content: "\eaa9";
}
.icon-eye-slash:before {
  content: "\eaaa";
}
.icon-eye:before {
  content: "\eaab";
}
.icon-fatrows:before {
  content: "\eaac";
}
.icon-filter-add:before {
  content: "\eaad";
}
.icon-filter-edit:before {
  content: "\eaae";
}
.icon-filter-remove:before {
  content: "\eaaf";
}
.icon-filter-search:before {
  content: "\eab0";
}
.icon-filter-square:before {
  content: "\eab1";
}
.icon-filter-tick:before {
  content: "\eab2";
}
.icon-filter:before {
  content: "\eab3";
}
.icon-finger-cricle:before {
  content: "\eab4";
}
.icon-finger-scan:before {
  content: "\eab5";
}
.icon-flag-2:before {
  content: "\eab6";
}
.icon-flag:before {
  content: "\eab7";
}
.icon-flash-circle-1:before {
  content: "\eab8";
}
.icon-flash-circle:before {
  content: "\eab9";
}
.icon-flash-slash:before {
  content: "\eaba";
}
.icon-flash:before {
  content: "\eabb";
}
.icon-forbidden-2:before {
  content: "\eabc";
}
.icon-forbidden:before {
  content: "\eabd";
}
.icon-format-circle:before {
  content: "\eabe";
}
.icon-format-square:before {
  content: "\eabf";
}
.icon-forward-item:before {
  content: "\eac0";
}
.icon-frame-1:before {
  content: "\eac1";
}
.icon-frame-2:before {
  content: "\eac2";
}
.icon-frame:before {
  content: "\eac3";
}
.icon-ghost:before {
  content: "\eac4";
}
.icon-gift:before {
  content: "\eac5";
}
.icon-glass-1:before {
  content: "\eac6";
}
.icon-glass:before {
  content: "\eac7";
}
.icon-global-edit:before {
  content: "\eac8";
}
.icon-global-refresh:before {
  content: "\eac9";
}
.icon-global-search:before {
  content: "\eaca";
}
.icon-global:before {
  content: "\eacb";
}
.icon-gps-slash:before {
  content: "\eacc";
}
.icon-gps:before {
  content: "\eacd";
}
.icon-grammerly:before {
  content: "\eace";
}
.icon-grid-1:before {
  content: "\eacf";
}
.icon-grid-2:before {
  content: "\ead0";
}
.icon-grid-3:before {
  content: "\ead1";
}
.icon-grid-4:before {
  content: "\ead2";
}
.icon-grid-5:before {
  content: "\ead3";
}
.icon-grid-6:before {
  content: "\ead4";
}
.icon-grid-7:before {
  content: "\ead5";
}
.icon-grid-8:before {
  content: "\ead6";
}
.icon-grid-9:before {
  content: "\ead7";
}
.icon-grid-edit:before {
  content: "\ead8";
}
.icon-grid-eraser:before {
  content: "\ead9";
}
.icon-grid-lock:before {
  content: "\eada";
}
.icon-happyemoji:before {
  content: "\eadb";
}
.icon-hashtag-down:before {
  content: "\eadc";
}
.icon-hashtag-up:before {
  content: "\eadd";
}
.icon-hashtag1:before {
  content: "\eade";
}
.icon-heart-add:before {
  content: "\eadf";
}
.icon-heart-circle:before {
  content: "\eae0";
}
.icon-heart-edit:before {
  content: "\eae1";
}
.icon-heart-remove:before {
  content: "\eae2";
}
.icon-heart-search:before {
  content: "\eae3";
}
.icon-heart-slash:before {
  content: "\eae4";
}
.icon-heart-tick:before {
  content: "\eae5";
}
.icon-heart:before {
  content: "\eae6";
}
.icon-hierarchy-2:before {
  content: "\eae7";
}
.icon-hierarchy-3:before {
  content: "\eae8";
}
.icon-hierarchy-square-2:before {
  content: "\eae9";
}
.icon-hierarchy-square-3:before {
  content: "\eaea";
}
.icon-hierarchy-square:before {
  content: "\eaeb";
}
.icon-hierarchy:before {
  content: "\eaec";
}
.icon-home-1:before {
  content: "\eaed";
}
.icon-home-2:before {
  content: "\eaee";
}
.icon-home-wifi:before {
  content: "\eaef";
}
.icon-home:before {
  content: "\eaf0";
}
.icon-info-circle-2:before {
  content: "\eaf1";
}
.icon-info-circle:before {
  content: "\eaf2";
}
.icon-information:before {
  content: "\eaf3";
}
.icon-instagram:before {
  content: "\eaf4";
}
.icon-judge:before {
  content: "\eaf5";
}
.icon-kanban:before {
  content: "\eaf6";
}
.icon-key-square:before {
  content: "\eaf7";
}
.icon-key:before {
  content: "\eaf8";
}
.icon-lamp1:before {
  content: "\eaf9";
}
.icon-layer:before {
  content: "\eafa";
}
.icon-level:before {
  content: "\eafb";
}
.icon-lifebuoy:before {
  content: "\eafc";
}
.icon-like-1:before {
  content: "\eafd";
}
.icon-like-dislike:before {
  content: "\eafe";
}
.icon-like-shapes:before {
  content: "\eaff";
}
.icon-like-tag:before {
  content: "\eb00";
}
.icon-like:before {
  content: "\eb01";
}
.icon-location-add:before {
  content: "\eb02";
}
.icon-location-cross:before {
  content: "\eb03";
}
.icon-location-minus:before {
  content: "\eb04";
}
.icon-location-slash:before {
  content: "\eb05";
}
.icon-location-tick:before {
  content: "\eb06";
}
.icon-location:before {
  content: "\eb07";
}
.icon-lock-1:before {
  content: "\eb08";
}
.icon-lock-circle:before {
  content: "\eb09";
}
.icon-lock-slash:before {
  content: "\eb0a";
}
.icon-lock:before {
  content: "\eb0b";
}
.icon-lovely:before {
  content: "\eb0c";
}
.icon-magic-star:before {
  content: "\eb0d";
}
.icon-magicpen:before {
  content: "\eb0e";
}
.icon-main-component:before {
  content: "\eb0f";
}
.icon-map-1:before {
  content: "\eb10";
}
.icon-map:before {
  content: "\eb11";
}
.icon-mask-1:before {
  content: "\eb12";
}
.icon-mask-2:before {
  content: "\eb13";
}
.icon-mask:before {
  content: "\eb14";
}
.icon-maximize-1:before {
  content: "\eb15";
}
.icon-maximize-2:before {
  content: "\eb16";
}
.icon-maximize-3:before {
  content: "\eb17";
}
.icon-maximize-4:before {
  content: "\eb18";
}
.icon-maximize:before {
  content: "\eb19";
}
.icon-medal-star:before {
  content: "\eb1a";
}
.icon-medal:before {
  content: "\eb1b";
}
.icon-menu-board:before {
  content: "\eb1c";
}
.icon-menu1:before {
  content: "\eb1d";
}
.icon-message-2:before {
  content: "\eb1e";
}
.icon-message-add-1:before {
  content: "\eb1f";
}
.icon-message-add:before {
  content: "\eb20";
}
.icon-message-circle:before {
  content: "\eb21";
}
.icon-message-edit:before {
  content: "\eb22";
}
.icon-message-favorite:before {
  content: "\eb23";
}
.icon-message-minus:before {
  content: "\eb24";
}
.icon-message-notif:before {
  content: "\eb25";
}
.icon-message-programming:before {
  content: "\eb26";
}
.icon-message-question:before {
  content: "\eb27";
}
.icon-message-remove:before {
  content: "\eb28";
}
.icon-message-search:before {
  content: "\eb29";
}
.icon-message-square:before {
  content: "\eb2a";
}
.icon-message-text-1:before {
  content: "\eb2b";
}
.icon-message-text:before {
  content: "\eb2c";
}
.icon-message-tick:before {
  content: "\eb2d";
}
.icon-message-time:before {
  content: "\eb2e";
}
.icon-message:before {
  content: "\eb2f";
}
.icon-messages-1:before {
  content: "\eb30";
}
.icon-messages-2:before {
  content: "\eb31";
}
.icon-messages-3:before {
  content: "\eb32";
}
.icon-messages:before {
  content: "\eb33";
}
.icon-milk:before {
  content: "\eb34";
}
.icon-minus-cirlce:before {
  content: "\eb35";
}
.icon-minus-square:before {
  content: "\eb36";
}
.icon-minus:before {
  content: "\eb37";
}
.icon-mirror:before {
  content: "\eb38";
}
.icon-mobile-programming:before {
  content: "\eb39";
}
.icon-more-circle:before {
  content: "\eb3a";
}
.icon-more-square:before {
  content: "\eb3b";
}
.icon-mouse-circle:before {
  content: "\eb3c";
}
.icon-mouse-square:before {
  content: "\eb3d";
}
.icon-mouse1:before {
  content: "\eb3e";
}
.icon-note-1:before {
  content: "\eb3f";
}
.icon-note-2:before {
  content: "\eb40";
}
.icon-note-21:before {
  content: "\eb41";
}
.icon-note-add:before {
  content: "\eb42";
}
.icon-note-favorite:before {
  content: "\eb43";
}
.icon-note-remove:before {
  content: "\eb44";
}
.icon-note-text:before {
  content: "\eb45";
}
.icon-note:before {
  content: "\eb46";
}
.icon-omega-circle:before {
  content: "\eb47";
}
.icon-omega-square:before {
  content: "\eb48";
}
.icon-paintbucket:before {
  content: "\eb49";
}
.icon-password-check:before {
  content: "\eb4a";
}
.icon-path-2:before {
  content: "\eb4b";
}
.icon-path-square:before {
  content: "\eb4c";
}
.icon-path:before {
  content: "\eb4d";
}
.icon-pen-add:before {
  content: "\eb4e";
}
.icon-pen-close:before {
  content: "\eb4f";
}
.icon-pen-remove:before {
  content: "\eb50";
}
.icon-pen-tool-2:before {
  content: "\eb51";
}
.icon-pen-tool:before {
  content: "\eb52";
}
.icon-pet:before {
  content: "\eb53";
}
.icon-picture-frame:before {
  content: "\eb54";
}
.icon-pin:before {
  content: "\eb55";
}
.icon-radar-1:before {
  content: "\eb58";
}
.icon-radar-2:before {
  content: "\eb59";
}
.icon-radar:before {
  content: "\eb5a";
}
.icon-ranking-1:before {
  content: "\eb5b";
}
.icon-ranking:before {
  content: "\eb5c";
}
.icon-recovery-convert:before {
  content: "\eb5d";
}
.icon-reserve:before {
  content: "\eb5e";
}
.icon-rotate-left:before {
  content: "\eb5f";
}
.icon-rotate-right:before {
  content: "\eb60";
}
.icon-route-square:before {
  content: "\eb61";
}
.icon-routing-2:before {
  content: "\eb62";
}
.icon-routing:before {
  content: "\eb63";
}
.icon-row-horizontal:before {
  content: "\eb64";
}
.icon-row-vertical:before {
  content: "\eb65";
}
.icon-ruler:before {
  content: "\eb66";
}
.icon-rulerpen:before {
  content: "\eb67";
}
.icon-safe-home:before {
  content: "\eb68";
}
.icon-scan-barcode:before {
  content: "\eb69";
}
.icon-scan:before {
  content: "\eb6a";
}
.icon-scanner:before {
  content: "\eb6b";
}
.icon-scanning:before {
  content: "\eb6c";
}
.icon-scissor:before {
  content: "\eb6d";
}
.icon-scroll:before {
  content: "\eb6e";
}
.icon-security-safe:before {
  content: "\eb6f";
}
.icon-security-user:before {
  content: "\eb70";
}
.icon-security:before {
  content: "\eb71";
}
.icon-send-2:before {
  content: "\eb72";
}
.icon-send:before {
  content: "\eb73";
}
.icon-shapes-1:before {
  content: "\eb74";
}
.icon-shapes:before {
  content: "\eb75";
}
.icon-share:before {
  content: "\eb76";
}
.icon-shield-cross:before {
  content: "\eb77";
}
.icon-shield-search:before {
  content: "\eb78";
}
.icon-shield-slash:before {
  content: "\eb79";
}
.icon-shield-tick:before {
  content: "\eb7a";
}
.icon-shield:before {
  content: "\eb7b";
}
.icon-shop-add:before {
  content: "\eb7c";
}
.icon-shop-remove:before {
  content: "\eb7d";
}
.icon-shop:before {
  content: "\eb7e";
}
.icon-shopping-bag:before {
  content: "\eb7f";
}
.icon-shopping-cart:before {
  content: "\eb80";
}
.icon-sidebar-bottom:before {
  content: "\eb81";
}
.icon-sidebar-left:before {
  content: "\eb82";
}
.icon-sidebar-right:before {
  content: "\eb83";
}
.icon-sidebar-top:before {
  content: "\eb84";
}
.icon-signpost:before {
  content: "\eb85";
}
.icon-size:before {
  content: "\eb86";
}
.icon-slash:before {
  content: "\eb87";
}
.icon-slider-horizontal-1:before {
  content: "\eb88";
}
.icon-slider-horizontal:before {
  content: "\eb89";
}
.icon-slider-vertical-1:before {
  content: "\eb8a";
}
.icon-slider-vertical:before {
  content: "\eb8b";
}
.icon-slider:before {
  content: "\eb8c";
}
.icon-smart-home:before {
  content: "\eb8d";
}
.icon-smileys:before {
  content: "\eb8e";
}
.icon-sms-edit:before {
  content: "\eb8f";
}
.icon-sms-notification:before {
  content: "\eb90";
}
.icon-sms-search:before {
  content: "\eb91";
}
.icon-sms-star:before {
  content: "\eb92";
}
.icon-sms-tracking:before {
  content: "\eb93";
}
.icon-sms:before {
  content: "\eb94";
}
.icon-sort:before {
  content: "\eb95";
}
.icon-sound:before {
  content: "\eb96";
}
.icon-speedometer:before {
  content: "\eb97";
}
.icon-star-1:before {
  content: "\eb98";
}
.icon-star-slash:before {
  content: "\eb99";
}
.icon-star:before {
  content: "\eb9a";
}
.icon-status:before {
  content: "\eb9b";
}
.icon-sticker:before {
  content: "\eb9c";
}
.icon-stickynote:before {
  content: "\eb9d";
}
.icon-story:before {
  content: "\eb9e";
}
.icon-tag-cross:before {
  content: "\eb9f";
}
.icon-tag-right:before {
  content: "\eba0";
}
.icon-task-square:before {
  content: "\eba1";
}
.icon-task:before {
  content: "\eba2";
}
.icon-teacher:before {
  content: "\eba3";
}
.icon-tick-circle:before {
  content: "\eba4";
}
.icon-tick-square:before {
  content: "\eba5";
}
.icon-trade:before {
  content: "\eba6";
}
.icon-trash:before {
  content: "\eba7";
}
.icon-tree:before {
  content: "\eba8";
}
.icon-triangle1:before {
  content: "\eba9";
}
.icon-truck-fast:before {
  content: "\ebaa";
}
.icon-truck-remove:before {
  content: "\ebab";
}
.icon-truck-tick:before {
  content: "\ebac";
}
.icon-truck-time:before {
  content: "\ebad";
}
.icon-truck:before {
  content: "\ebae";
}
.icon-trush-square:before {
  content: "\ebaf";
}
.icon-unlimited:before {
  content: "\ebb0";
}
.icon-unlock:before {
  content: "\ebb1";
}
.icon-verify:before {
  content: "\ebb2";
}
.icon-warning-2:before {
  content: "\ebb3";
}
.icon-weight1:before {
  content: "\ebb4";
}
.icon-wifi-square:before {
  content: "\ebb5";
}
.icon-wifi:before {
  content: "\ebb6";
}
.icon-full:before {
  content: "\ebb7";
}
.icon-airplane-square:before {
  content: "\ebb8";
}
.icon-airplane:before {
  content: "\ebb9";
}
.icon-bus:before {
  content: "\ebba";
}
.icon-car:before {
  content: "\ebbb";
}
.icon-driving:before {
  content: "\ebbc";
}
.icon-gas-station:before {
  content: "\ebbd";
}
.icon-ship:before {
  content: "\ebbe";
}
.icon-smart-car:before {
  content: "\ebbf";
}
.icon-frame1:before {
  content: "\ebc0";
}
.icon-people:before {
  content: "\ebc1";
}
.icon-profile-2user:before {
  content: "\ebc2";
}
.icon-profile-add:before {
  content: "\ebc3";
}
.icon-profile-circle:before {
  content: "\ebc4";
}
.icon-profile-delete:before {
  content: "\ebc5";
}
.icon-profile-remove:before {
  content: "\ebc6";
}
.icon-profile-tick:before {
  content: "\ebc7";
}
.icon-tag-user:before {
  content: "\ebc8";
}
.icon-user-add:before {
  content: "\ebc9";
}
.icon-user-cirlce-add:before {
  content: "\ebca";
}
.icon-user-edit:before {
  content: "\ebcb";
}
.icon-user-minus:before {
  content: "\ebcc";
}
.icon-user-octagon:before {
  content: "\ebcd";
}
.icon-user-remove:before {
  content: "\ebce";
}
.icon-user-search:before {
  content: "\ebcf";
}
.icon-user-square:before {
  content: "\ebd0";
}
.icon-user-tag:before {
  content: "\ebd1";
}
.icon-user-tick:before {
  content: "\ebd2";
}
.icon-user:before {
  content: "\ebd3";
}
.icon-arrange-circle-2:before {
  content: "\ebd4";
}
.icon-arrange-circle:before {
  content: "\ebd5";
}
.icon-arrange-square-2:before {
  content: "\ebd6";
}
.icon-arrange-square:before {
  content: "\ebd7";
}
.icon-back-square:before {
  content: "\ebfb";
}
.icon-convert:before {
  content: "\ebfc";
}
.icon-export-1:before {
  content: "\ebfd";
}
.icon-export-2:before {
  content: "\ebfe";
}
.icon-export-3:before {
  content: "\ebff";
}
.icon-export:before {
  content: "\ec00";
}
.icon-forward-square:before {
  content: "\ec01";
}
.icon-frame2:before {
  content: "\ec02";
}
.icon-import-1:before {
  content: "\ec03";
}
.icon-import-2:before {
  content: "\ec04";
}
.icon-import:before {
  content: "\ec05";
}
.icon-login-1:before {
  content: "\ec06";
}
.icon-login:before {
  content: "\ec07";
}
.icon-logout-1:before {
  content: "\ec08";
}
.icon-logout:before {
  content: "\ec09";
}
.icon-receive-square-2:before {
  content: "\ec0a";
}
.icon-receive-square:before {
  content: "\ec0b";
}
.icon-received:before {
  content: "\ec0c";
}
.icon-redo:before {
  content: "\ec0d";
}
.icon-refresh-2:before {
  content: "\ec0e";
}
.icon-refresh-circle:before {
  content: "\ec0f";
}
.icon-refresh-left-square:before {
  content: "\ec10";
}
.icon-refresh-right-square:before {
  content: "\ec11";
}
.icon-refresh-square-2:before {
  content: "\ec12";
}
.icon-refresh:before {
  content: "\ec13";
}
.icon-repeat-circle:before {
  content: "\ec14";
}
.icon-repeat:before {
  content: "\ec15";
}
.icon-reply:before {
  content: "\ec16";
}
.icon-rotate-left1:before {
  content: "\ec17";
}
.icon-rotate-right1:before {
  content: "\ec18";
}
.icon-send-sqaure-2:before {
  content: "\ec19";
}
.icon-send-square:before {
  content: "\ec1a";
}
.icon-send1:before {
  content: "\ec1b";
}
.icon-undo:before {
  content: "\ec1c";
}
.icon-audio-square:before {
  content: "\ec1d";
}
.icon-backward-5-seconds:before {
  content: "\ec1e";
}
.icon-backward-10-seconds:before {
  content: "\ec1f";
}
.icon-backward-15-seconds:before {
  content: "\ec20";
}
.icon-backward:before {
  content: "\ec21";
}
.icon-camera-slash:before {
  content: "\ec22";
}
.icon-camera:before {
  content: "\ec23";
}
.icon-devices1:before {
  content: "\ec24";
}
.icon-forward-5-seconds:before {
  content: "\ec25";
}
.icon-forward-10-seconds:before {
  content: "\ec26";
}
.icon-forward-15-seconds:before {
  content: "\ec27";
}
.icon-forward:before {
  content: "\ec28";
}
.icon-gallery-add:before {
  content: "\ec29";
}
.icon-gallery-edit:before {
  content: "\ec2a";
}
.icon-gallery-export:before {
  content: "\ec2b";
}
.icon-gallery-favorite:before {
  content: "\ec2c";
}
.icon-gallery-import:before {
  content: "\ec2d";
}
.icon-gallery-remove:before {
  content: "\ec2e";
}
.icon-gallery-slash:before {
  content: "\ec2f";
}
.icon-gallery-tick:before {
  content: "\ec30";
}
.icon-gallery:before {
  content: "\ec31";
}
.icon-image:before {
  content: "\ec32";
}
.icon-maximize-circle:before {
  content: "\ec33";
}
.icon-microphone-2:before {
  content: "\ec34";
}
.icon-microphone-slash-1:before {
  content: "\ec35";
}
.icon-microphone-slash:before {
  content: "\ec36";
}
.icon-microphone:before {
  content: "\ec37";
}
.icon-mini-music-sqaure:before {
  content: "\ec38";
}
.icon-music-circle:before {
  content: "\ec39";
}
.icon-music-dashboard:before {
  content: "\ec3a";
}
.icon-music-filter:before {
  content: "\ec3b";
}
.icon-music-library-2:before {
  content: "\ec3c";
}
.icon-music-playlist:before {
  content: "\ec3d";
}
.icon-music-square-add:before {
  content: "\ec3e";
}
.icon-music-square-remove:before {
  content: "\ec3f";
}
.icon-music-square-search:before {
  content: "\ec40";
}
.icon-music-square:before {
  content: "\ec41";
}
.icon-music:before {
  content: "\ec42";
}
.icon-musicnote:before {
  content: "\ec43";
}
.icon-next:before {
  content: "\ec44";
}
.icon-note-square:before {
  content: "\ec45";
}
.icon-pause-circle:before {
  content: "\ec46";
}
.icon-pause:before {
  content: "\ec47";
}
.icon-play-add:before {
  content: "\ec48";
}
.icon-play-circle:before {
  content: "\ec49";
}
.icon-play-cricle:before {
  content: "\ec4a";
}
.icon-play-remove:before {
  content: "\ec4b";
}
.icon-play:before {
  content: "\ec4c";
}
.icon-previous:before {
  content: "\ec4d";
}
.icon-radio:before {
  content: "\ec4e";
}
.icon-record-circle:before {
  content: "\ec4f";
}
.icon-record:before {
  content: "\ec50";
}
.icon-repeate-music:before {
  content: "\ec51";
}
.icon-repeate-one:before {
  content: "\ec52";
}
.icon-scissor1:before {
  content: "\ec53";
}
.icon-screenmirroring:before {
  content: "\ec54";
}
.icon-shuffle:before {
  content: "\ec55";
}
.icon-stop-circle:before {
  content: "\ec56";
}
.icon-stop:before {
  content: "\ec57";
}
.icon-subtitle:before {
  content: "\ec58";
}
.icon-video-add:before {
  content: "\ec59";
}
.icon-video-circle:before {
  content: "\ec5a";
}
.icon-video-horizontal:before {
  content: "\ec5b";
}
.icon-video-octagon:before {
  content: "\ec5c";
}
.icon-video-play:before {
  content: "\ec5d";
}
.icon-video-remove:before {
  content: "\ec5e";
}
.icon-video-slash:before {
  content: "\ec5f";
}
.icon-video-square:before {
  content: "\ec60";
}
.icon-video-tick:before {
  content: "\ec61";
}
.icon-video-time:before {
  content: "\ec62";
}
.icon-video-vertical:before {
  content: "\ec63";
}
.icon-video:before {
  content: "\ec64";
}
.icon-voice-cricle:before {
  content: "\ec65";
}
.icon-voice-square:before {
  content: "\ec66";
}
.icon-volume-cross:before {
  content: "\ec67";
}
.icon-volume-high:before {
  content: "\ec68";
}
.icon-volume-low-1:before {
  content: "\ec69";
}
.icon-volume-low:before {
  content: "\ec6a";
}
.icon-volume-mute:before {
  content: "\ec6b";
}
.icon-volume-slash:before {
  content: "\ec6c";
}
.icon-volume-up:before {
  content: "\ec6d";
}
.icon-folder-2:before {
  content: "\ec6e";
}
.icon-folder-add:before {
  content: "\ec6f";
}
.icon-folder-cloud:before {
  content: "\ec70";
}
.icon-folder-cross:before {
  content: "\ec71";
}
.icon-folder-favorite:before {
  content: "\ec72";
}
.icon-folder-minus:before {
  content: "\ec73";
}
.icon-folder-open:before {
  content: "\ec74";
}
.icon-folder:before {
  content: "\ec75";
}
.icon-cloud-cross:before {
  content: "\ec76";
}
.icon-cloud-drizzle:before {
  content: "\ec77";
}
.icon-cloud-fog:before {
  content: "\ec78";
}
.icon-cloud-lightning:before {
  content: "\ec79";
}
.icon-cloud-minus:before {
  content: "\ec7a";
}
.icon-cloud-notif:before {
  content: "\ec7b";
}
.icon-cloud-plus:before {
  content: "\ec7c";
}
.icon-cloud-snow:before {
  content: "\ec7d";
}
.icon-cloud-sunny:before {
  content: "\ec7e";
}
.icon-cloud:before {
  content: "\ec7f";
}
.icon-flash1:before {
  content: "\ec80";
}
.icon-icon1:before {
  content: "\ec81";
}
.icon-moon:before {
  content: "\ec82";
}
.icon-sun-1:before {
  content: "\ec83";
}
.icon-sun-fog:before {
  content: "\ec84";
}
.icon-sun:before {
  content: "\ec85";
}
.icon-wind-2:before {
  content: "\ec86";
}
.icon-wind:before {
  content: "\ec87";
}
.icon-attach-circle:before {
  content: "\ec88";
}
.icon-attach-square:before {
  content: "\ec89";
}
.icon-eraser1:before {
  content: "\ec8a";
}
.icon-firstline:before {
  content: "\ec8b";
}
.icon-language-circle:before {
  content: "\ec8c";
}
.icon-language-square:before {
  content: "\ec8d";
}
.icon-link-1:before {
  content: "\ec8e";
}
.icon-link-2:before {
  content: "\ec8f";
}
.icon-link-21:before {
  content: "\ec90";
}
.icon-link-circle:before {
  content: "\ec91";
}
.icon-link-square:before {
  content: "\ec92";
}
.icon-link:before {
  content: "\ec93";
}
.icon-maximize1:before {
  content: "\ec94";
}
.icon-paperclip-2:before {
  content: "\ec95";
}
.icon-paperclip:before {
  content: "\ec96";
}
.icon-pharagraphspacing:before {
  content: "\ec97";
}
.icon-quote-down-circle:before {
  content: "\ec98";
}
.icon-quote-down-square:before {
  content: "\ec99";
}
.icon-quote-down:before {
  content: "\ec9a";
}
.icon-quote-up-circle:before {
  content: "\ec9b";
}
.icon-quote-up-square:before {
  content: "\ec9c";
}
.icon-quote-up:before {
  content: "\ec9d";
}
.icon-smallcaps:before {
  content: "\ec9e";
}
.icon-text-block:before {
  content: "\ec9f";
}
.icon-text-bold:before {
  content: "\eca0";
}
.icon-text-italic:before {
  content: "\eca1";
}
.icon-text-underline:before {
  content: "\eca2";
}
.icon-text:before {
  content: "\eca3";
}
.icon-textalign-center:before {
  content: "\eca4";
}
.icon-textalign-justifycenter:before {
  content: "\eca5";
}
.icon-textalign-justifyleft:before {
  content: "\eca6";
}
.icon-textalign-justifyright:before {
  content: "\eca7";
}
.icon-textalign-left:before {
  content: "\eca8";
}
.icon-textalign-right:before {
  content: "\eca9";
}
.icon-translate:before {
  content: "\ecaa";
}
.icon-archive2:before {
  content: "\ecab";
}
.icon-card-add:before {
  content: "\ecac";
}
.icon-card-edit:before {
  content: "\ecad";
}
.icon-card-pos:before {
  content: "\ecae";
}
.icon-card-receive:before {
  content: "\ecaf";
}
.icon-card-remove-1:before {
  content: "\ecb0";
}
.icon-card-remove:before {
  content: "\ecb1";
}
.icon-card-send:before {
  content: "\ecb2";
}
.icon-card-slash:before {
  content: "\ecb3";
}
.icon-card-tick-1:before {
  content: "\ecb4";
}
.icon-card-tick:before {
  content: "\ecb5";
}
.icon-card:before {
  content: "\ecb6";
}
.icon-cards:before {
  content: "\ecb7";
}
.icon-chart-square:before {
  content: "\ecb8";
}
.icon-coin-1:before {
  content: "\ecb9";
}
.icon-coin:before {
  content: "\ecba";
}
.icon-convert-card:before {
  content: "\ecbb";
}
.icon-discount-circle:before {
  content: "\ecbc";
}
.icon-discount-shape:before {
  content: "\ecbd";
}
.icon-document1:before {
  content: "\ecbe";
}
.icon-dollar-circle:before {
  content: "\ecbf";
}
.icon-dollar-square:before {
  content: "\ecc0";
}
.icon-empty-wallet-add:before {
  content: "\ecc1";
}
.icon-empty-wallet-change:before {
  content: "\ecc2";
}
.icon-empty-wallet-remove:before {
  content: "\ecc3";
}
.icon-empty-wallet-tick:before {
  content: "\ecc4";
}
.icon-empty-wallet-time:before {
  content: "\ecc5";
}
.icon-empty-wallet:before {
  content: "\ecc6";
}
.icon-math:before {
  content: "\ecc7";
}
.icon-money-2:before {
  content: "\ecc8";
}
.icon-money-3:before {
  content: "\ecc9";
}
.icon-money-4:before {
  content: "\ecca";
}
.icon-money-add:before {
  content: "\eccb";
}
.icon-money-change:before {
  content: "\eccc";
}
.icon-money-forbidden:before {
  content: "\eccd";
}
.icon-money-recive:before {
  content: "\ecce";
}
.icon-money-remove:before {
  content: "\eccf";
}
.icon-money-send:before {
  content: "\ecd0";
}
.icon-money-tick:before {
  content: "\ecd1";
}
.icon-money-time:before {
  content: "\ecd2";
}
.icon-money:before {
  content: "\ecd3";
}
.icon-moneys:before {
  content: "\ecd4";
}
.icon-percentage-circle:before {
  content: "\ecd5";
}
.icon-percentage-square:before {
  content: "\ecd6";
}
.icon-receipt-1:before {
  content: "\ecd7";
}
.icon-receipt-2-1:before {
  content: "\ecd8";
}
.icon-receipt-2:before {
  content: "\ecd9";
}
.icon-receipt-add:before {
  content: "\ecda";
}
.icon-receipt-discount:before {
  content: "\ecdb";
}
.icon-receipt-disscount:before {
  content: "\ecdc";
}
.icon-receipt-edit:before {
  content: "\ecdd";
}
.icon-receipt-item:before {
  content: "\ecde";
}
.icon-receipt-minus:before {
  content: "\ecdf";
}
.icon-receipt-search:before {
  content: "\ece0";
}
.icon-receipt-text:before {
  content: "\ece1";
}
.icon-receipt:before {
  content: "\ece2";
}
.icon-security-card:before {
  content: "\ece3";
}
.icon-strongbox-2:before {
  content: "\ece4";
}
.icon-strongbox:before {
  content: "\ece5";
}
.icon-tag-2:before {
  content: "\ece6";
}
.icon-tag:before {
  content: "\ece7";
}
.icon-ticket-2:before {
  content: "\ece8";
}
.icon-ticket-discount:before {
  content: "\ece9";
}
.icon-ticket-expired:before {
  content: "\ecea";
}
.icon-ticket-star:before {
  content: "\eceb";
}
.icon-ticket:before {
  content: "\ecec";
}
.icon-transaction-minus:before {
  content: "\eced";
}
.icon-wallet-1:before {
  content: "\ecee";
}
.icon-wallet-2:before {
  content: "\ecef";
}
.icon-wallet-3:before {
  content: "\ecf0";
}
.icon-wallet-add-1:before {
  content: "\ecf1";
}
.icon-wallet-add:before {
  content: "\ecf2";
}
.icon-wallet-check:before {
  content: "\ecf3";
}
.icon-wallet-minus:before {
  content: "\ecf4";
}
.icon-wallet-money:before {
  content: "\ecf5";
}
.icon-wallet-remove:before {
  content: "\ecf6";
}
.icon-wallet-search:before {
  content: "\ecf7";
}
.icon-wallet:before {
  content: "\ecf8";
}
.icon-arrow-right1:before {
  content: "\ecfa";
}
.icon-arrow-left1:before {
  content: "\ecfb";
}
.icon-arrow-down1:before {
  content: "\ecfc";
}
.icon-arrow-up1:before {
  content: "\ecfd";
}
.icon-arrow-square:before {
  content: "\ea1d";
}
.icon-arrow:before {
  content: "\ea1e";
}
.icon-programming-arrow:before {
  content: "\eb56";
}
.icon-programming-arrows:before {
  content: "\eb57";
}
.icon-arrow-2:before {
  content: "\ebd8";
}
.icon-arrow-3:before {
  content: "\ebd9";
}
.icon-arrow-bottom:before {
  content: "\ebda";
}
.icon-arrow-circle-down:before {
  content: "\ebdb";
}
.icon-arrow-circle-left:before {
  content: "\ebdc";
}
.icon-arrow-circle-right:before {
  content: "\ebdd";
}
.icon-arrow-circle-up:before {
  content: "\ebde";
}
.icon-arrow-down-1:before {
  content: "\ebdf";
}
.icon-arrow-down-2:before {
  content: "\ebe0";
}
.icon-arrow-down:before {
  content: "\ebe1";
}
.icon-arrow-left-1:before {
  content: "\ebe2";
}
.icon-arrow-left-2:before {
  content: "\ebe3";
}
.icon-arrow-left-3:before {
  content: "\ebe4";
}
.icon-arrow-left-21:before {
  content: "\ebe5";
}
.icon-arrow-left:before {
  content: "\ebe6";
}
.icon-arrow-right-1:before {
  content: "\ebe7";
}
.icon-arrow-right-2-1:before {
  content: "\ebe8";
}
.icon-arrow-right-2:before {
  content: "\ebe9";
}
.icon-arrow-right-3:before {
  content: "\ebea";
}
.icon-arrow-right-4:before {
  content: "\ebeb";
}
.icon-arrow-right-21:before {
  content: "\ebec";
}
.icon-arrow-right:before {
  content: "\ebed";
}
.icon-arrow-square-down-2:before {
  content: "\ebee";
}
.icon-arrow-square-down:before {
  content: "\ebef";
}
.icon-arrow-square-left-2:before {
  content: "\ebf0";
}
.icon-arrow-square-left:before {
  content: "\ebf1";
}
.icon-arrow-square-up-down:before {
  content: "\ebf2";
}
.icon-arrow-square-up-2:before {
  content: "\ebf3";
}
.icon-arrow-square-up:before {
  content: "\ebf4";
}
.icon-arrow-swap-horizontal:before {
  content: "\ebf5";
}
.icon-arrow-swap:before {
  content: "\ebf6";
}
.icon-arrow-up-1:before {
  content: "\ebf7";
}
.icon-arrow-up-2:before {
  content: "\ebf8";
}
.icon-arrow-up-3:before {
  content: "\ebf9";
}
.icon-arrow-up:before {
  content: "\ebfa";
}
.icon-p-critical:before {
  content: "\e919";
}

.text-grey-50 {
    color: var(--grey-50);
}

.text-grey-100 {
    color: var(--grey-100);
}

.text-grey-200 {
    color: var(--grey-200);
}

.text-grey-300 {
    color: var(--grey-300);
}

.text-grey-400 {
    color: var(--grey-400);
}

.text-grey-500 {
    color: var(--grey-500);
}

.text-grey-600 {
    color: var(--grey-600);
}

.text-grey-700 {
    color: var(--grey-700);
}

.text-grey-800 {
    color: var(--grey-800);
}

.text-grey-900 {
    color: var(--grey-900);
}

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

.text-primary-dark {
    color: var(--primary);
}

.error-message {
    font-size: 0.75rem;
    color: var(--accent-red);
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

@font-face {
  font-family: "tahoma-regular";
  src:url("/fonts/tahoma/Tahoma-Regular-font.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Text";
  src: url("/fonts/HelveticaNowText-Regular.woff2") format("woff2"),
    url("/fonts/HelveticaNowText-Regular.woff") format("woff"),
    url("/fonts/HelveticaNowText-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

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

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

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

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

  .container {
    max-width: 1536px;
  }
}
.\!pointer-events-none {
  pointer-events: none !important;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.\!visible {
  visibility: visible !important;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.-left-\[40px\] {
  left: -40px;
}
.-right-1 {
  right: -0.25rem;
}
.-right-5 {
  right: -1.25rem;
}
.-top-1 {
  top: -0.25rem;
}
.-top-6 {
  top: -1.5rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-full {
  bottom: 100%;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-2 {
  left: 0.5rem;
}
.left-8 {
  left: 2rem;
}
.left-\[15\%\] {
  left: 15%;
}
.right-0 {
  right: 0px;
}
.right-1 {
  right: 0.25rem;
}
.right-2 {
  right: 0.5rem;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-10 {
  top: 2.5rem;
}
.top-2 {
  top: 0.5rem;
}
.top-20 {
  top: 5rem;
}
.top-4 {
  top: 1rem;
}
.top-\[50\%\] {
  top: 50%;
}
.top-\[56px\] {
  top: 56px;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}
.z-\[2\] {
  z-index: 2;
}
.order-\[-1\] {
  order: -1;
}
.col-span-12 {
  grid-column: span 12 / span 12;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.col-span-5 {
  grid-column: span 5 / span 5;
}
.col-span-6 {
  grid-column: span 6 / span 6;
}
.col-span-7 {
  grid-column: span 7 / span 7;
}
.col-span-full {
  grid-column: 1 / -1;
}
.m-4 {
  margin: 1rem;
}
.m-auto {
  margin: auto;
}
.\!mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.\!mb-0 {
  margin-bottom: 0px !important;
}
.\!mt-0 {
  margin-top: 0px !important;
}
.-mt-2 {
  margin-top: -0.5rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-\[10px\] {
  margin-bottom: 10px;
}
.mb-\[4\.5px\] {
  margin-bottom: 4.5px;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-\[10\%\] {
  margin-left: 10%;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-2\.5 {
  margin-right: 0.625rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-\[10px\] {
  margin-right: 10px;
}
.mr-\[24px\] {
  margin-right: 24px;
}
.mr-auto {
  margin-right: auto;
}
.ms-1 {
  margin-inline-start: 0.25rem;
}
.ms-2 {
  margin-inline-start: 0.5rem;
}
.ms-\[0\.5px\] {
  margin-inline-start: 0.5px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[2px\] {
  margin-top: 2px;
}
.mt-auto {
  margin-top: auto;
}
.\!line-clamp-2 {
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.\!block {
  display: block !important;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.\!flex {
  display: flex !important;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-\[1296\/400\] {
  aspect-ratio: 1296/400;
}
.aspect-\[16\/9\] {
  aspect-ratio: 16/9;
}
.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}
.aspect-\[512\/211\] {
  aspect-ratio: 512/211;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.size-14 {
  width: 3.5rem;
  height: 3.5rem;
}
.size-4 {
  width: 1rem;
  height: 1rem;
}
.size-6 {
  width: 1.5rem;
  height: 1.5rem;
}
.size-8 {
  width: 2rem;
  height: 2rem;
}
.\!h-\[700px\] {
  height: 700px !important;
}
.h-1\/2 {
  height: 50%;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-40 {
  height: 10rem;
}
.h-48 {
  height: 12rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[200px\] {
  height: 200px;
}
.h-\[20px\] {
  height: 20px;
}
.h-\[21px\] {
  height: 21px;
}
.h-\[263px\] {
  height: 263px;
}
.h-\[2px\] {
  height: 2px;
}
.h-\[302px\] {
  height: 302px;
}
.h-\[38px\] {
  height: 38px;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[450px\] {
  height: 450px;
}
.h-\[48px\] {
  height: 48px;
}
.h-\[555px\] {
  height: 555px;
}
.h-\[70px\] {
  height: 70px;
}
.h-\[85vh\] {
  height: 85vh;
}
.h-\[8px\] {
  height: 8px;
}
.h-\[97\.5px\] {
  height: 97.5px;
}
.h-auto {
  height: auto;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.max-h-0 {
  max-height: 0px;
}
.max-h-16 {
  max-height: 4rem;
}
.max-h-40 {
  max-height: 10rem;
}
.max-h-\[300px\] {
  max-height: 300px;
}
.max-h-\[313px\] {
  max-height: 313px;
}
.max-h-\[350px\] {
  max-height: 350px;
}
.max-h-\[384px\] {
  max-height: 384px;
}
.max-h-\[500px\] {
  max-height: 500px;
}
.max-h-\[540px\] {
  max-height: 540px;
}
.max-h-full {
  max-height: 100%;
}
.min-h-10 {
  min-height: 2.5rem;
}
.min-h-11 {
  min-height: 2.75rem;
}
.min-h-\[200px\] {
  min-height: 200px;
}
.min-h-\[45px\] {
  min-height: 45px;
}
.min-h-screen {
  min-height: 100vh;
}
.\!w-full {
  width: 100% !important;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-1\/4 {
  width: 25%;
}
.w-1\/5 {
  width: 20%;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-20 {
  width: 5rem;
}
.w-28 {
  width: 7rem;
}
.w-3 {
  width: 0.75rem;
}
.w-36 {
  width: 9rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-52 {
  width: 13rem;
}
.w-6 {
  width: 1.5rem;
}
.w-60 {
  width: 15rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-\[100px\] {
  width: 100px;
}
.w-\[118px\] {
  width: 118px;
}
.w-\[160px\] {
  width: 160px;
}
.w-\[180px\] {
  width: 180px;
}
.w-\[195px\] {
  width: 195px;
}
.w-\[1px\] {
  width: 1px;
}
.w-\[200px\] {
  width: 200px;
}
.w-\[20px\] {
  width: 20px;
}
.w-\[26px\] {
  width: 26px;
}
.w-\[300px\] {
  width: 300px;
}
.w-\[350px\] {
  width: 350px;
}
.w-\[38px\] {
  width: 38px;
}
.w-\[500px\] {
  width: 500px;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[80\%\] {
  width: 80%;
}
.w-\[80px\] {
  width: 80px;
}
.w-\[90\%\] {
  width: 90%;
}
.w-auto {
  width: auto;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-max {
  width: -moz-max-content;
  width: max-content;
}
.min-w-\[0px\] {
  min-width: 0px;
}
.min-w-\[100px\] {
  min-width: 100px;
}
.min-w-\[180px\] {
  min-width: 180px;
}
.min-w-\[30px\] {
  min-width: 30px;
}
.min-w-\[50\%\] {
  min-width: 50%;
}
.\!max-w-\[1050px\] {
  max-width: 1050px !important;
}
.\!max-w-\[1440px\] {
  max-width: 1440px !important;
}
.\!max-w-\[350px\] {
  max-width: 350px !important;
}
.\!max-w-\[720px\] {
  max-width: 720px !important;
}
.\!max-w-\[813px\] {
  max-width: 813px !important;
}
.\!max-w-none {
  max-width: none !important;
}
.max-w-14 {
  max-width: 3.5rem;
}
.max-w-16 {
  max-width: 4rem;
}
.max-w-28 {
  max-width: 7rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-40 {
  max-width: 10rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-\[100px\] {
  max-width: 100px;
}
.max-w-\[10rem\] {
  max-width: 10rem;
}
.max-w-\[1328px\] {
  max-width: 1328px;
}
.max-w-\[200px\] {
  max-width: 200px;
}
.max-w-\[230px\] {
  max-width: 230px;
}
.max-w-\[300px\] {
  max-width: 300px;
}
.max-w-\[319px\] {
  max-width: 319px;
}
.max-w-\[378px\] {
  max-width: 378px;
}
.max-w-\[400px\] {
  max-width: 400px;
}
.max-w-\[480px\] {
  max-width: 480px;
}
.max-w-\[500px\] {
  max-width: 500px;
}
.max-w-\[768px\] {
  max-width: 768px;
}
.max-w-\[780px\] {
  max-width: 780px;
}
.max-w-\[850px\] {
  max-width: 850px;
}
.max-w-\[900px\] {
  max-width: 900px;
}
.max-w-full {
  max-width: 100%;
}
.max-w-max {
  max-width: -moz-max-content;
  max-width: max-content;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-\[2\] {
  flex: 2;
}
.flex-none {
  flex: none;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-grow-0 {
  flex-grow: 0;
}
.grow {
  flex-grow: 1;
}
.basis-\[70px\] {
  flex-basis: 70px;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-\[50\%\] {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1\/2 {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[5px\] {
  --tw-translate-x: 5px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1 {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1\/2 {
  --tw-translate-y: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1\/4 {
  --tw-translate-y: 25%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-90 {
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[1\.05\] {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-scale-x-100 {
  --tw-scale-x: -1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-text {
  cursor: text;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize {
  resize: both;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-\[repeat\(2\2c _1fr\)_0\.5fr\] {
  grid-template-columns: repeat(2, 1fr) 0.5fr;
}
.grid-cols-\[repeat\(5\2c _1fr\)_0\.5fr\] {
  grid-template-columns: repeat(5, 1fr) 0.5fr;
}
.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
.grid-rows-\[1fr_0_0_0_0_0\] {
  grid-template-rows: 1fr 0 0 0 0 0;
}
.\!flex-row {
  flex-direction: row !important;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.\!flex-col {
  flex-direction: column !important;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.place-content-center {
  place-content: center;
}
.place-content-end {
  place-content: end;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-14 {
  gap: 3.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-28 {
  gap: 7rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-9 {
  gap: 2.25rem;
}
.gap-\[10px\] {
  gap: 10px;
}
.gap-\[2px\] {
  gap: 2px;
}
.gap-\[56px\] {
  gap: 56px;
}
.gap-\[70px\] {
  gap: 70px;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.gap-y-1 {
  row-gap: 0.25rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.gap-y-3 {
  row-gap: 0.75rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.gap-y-8 {
  row-gap: 2rem;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.self-center {
  align-self: center;
}
.overflow-auto {
  overflow: auto;
}
.\!overflow-hidden {
  overflow: hidden !important;
}
.overflow-hidden {
  overflow: hidden;
}
.\!overflow-visible {
  overflow: visible !important;
}
.overflow-visible {
  overflow: visible;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-x-visible {
  overflow-x: visible;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.overscroll-contain {
  overscroll-behavior: contain;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre-wrap {
  white-space: pre-wrap;
}
.text-wrap {
  text-wrap: wrap;
}
.text-nowrap {
  text-wrap: nowrap;
}
.\!rounded-none {
  border-radius: 0px !important;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-\[0\.25rem\] {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-none {
  border-radius: 0px;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-\[1px\] {
  border-width: 1px;
}
.border-\[4px\] {
  border-width: 4px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-\[1px\] {
  border-bottom-width: 1px;
}
.border-l {
  border-left-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-0 {
  border-top-width: 0px;
}
.border-t-\[6px\] {
  border-top-width: 6px;
}
.border-solid {
  border-style: solid;
}
.border-dashed {
  border-style: dashed;
}
.\!border-\[\#ffd976\] {
  --tw-border-opacity: 1 !important;
  border-color: rgb(255 217 118 / var(--tw-border-opacity, 1)) !important;
}
.\!border-transparent {
  border-color: transparent !important;
}
.border-\[\#0e0e0e2e\] {
  border-color: #0e0e0e2e;
}
.border-\[\#3E3E3E\] {
  --tw-border-opacity: 1;
  border-color: rgb(62 62 62 / var(--tw-border-opacity, 1));
}
.border-\[\#99999980\] {
  border-color: #99999980;
}
.border-\[\#D3D3D3\] {
  --tw-border-opacity: 1;
  border-color: rgb(211 211 211 / var(--tw-border-opacity, 1));
}
.border-\[\#F1F1F1\] {
  --tw-border-opacity: 1;
  border-color: rgb(241 241 241 / var(--tw-border-opacity, 1));
}
.border-\[\#dadce0\] {
  --tw-border-opacity: 1;
  border-color: rgb(218 220 224 / var(--tw-border-opacity, 1));
}
.border-\[\#e5e7eb\] {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-t-transparent {
  border-top-color: transparent;
}
.\!bg-\[\#e9e9e9\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(233 233 233 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-\[\#ffd976\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 217 118 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-\[unset\] {
  background-color: unset !important;
}
.\!bg-transparent {
  background-color: transparent !important;
}
.bg-\[\#00000050\] {
  background-color: #00000050;
}
.bg-\[\#002F47\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 47 71 / var(--tw-bg-opacity, 1));
}
.bg-\[\#D3D3D3\] {
  --tw-bg-opacity: 1;
  background-color: rgb(211 211 211 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F1F1F1\] {
  --tw-bg-opacity: 1;
  background-color: rgb(241 241 241 / var(--tw-bg-opacity, 1));
}
.bg-\[\#cccccc\] {
  --tw-bg-opacity: 1;
  background-color: rgb(204 204 204 / var(--tw-bg-opacity, 1));
}
.bg-\[\#e2e2e2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(226 226 226 / var(--tw-bg-opacity, 1));
}
.bg-\[\#e9e9e9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(233 233 233 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f1f1f1\] {
  --tw-bg-opacity: 1;
  background-color: rgb(241 241 241 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f5f5f5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f8f8f8\] {
  --tw-bg-opacity: 1;
  background-color: rgb(248 248 248 / var(--tw-bg-opacity, 1));
}
.bg-\[\#fbfbfb\] {
  --tw-bg-opacity: 1;
  background-color: rgb(251 251 251 / var(--tw-bg-opacity, 1));
}
.bg-\[\#ffd976\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 217 118 / var(--tw-bg-opacity, 1));
}
.bg-\[unset\] {
  background-color: unset;
}
.bg-amber-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-current {
  background-color: currentColor;
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-neutral-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
}
.bg-neutral-950\/70 {
  background-color: rgb(10 10 10 / 0.7);
}
.bg-orange-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-slate-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.bg-slate-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
}
.bg-slate-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-opacity-0 {
  --tw-bg-opacity: 0;
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
.bg-opacity-75 {
  --tw-bg-opacity: 0.75;
}
.bg-opacity-90 {
  --tw-bg-opacity: 0.9;
}
.bg-cover {
  background-size: cover;
}
.fill-\[--primary\] {
  fill: var(--primary);
}
.fill-\[white\] {
  fill: white;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center {
  -o-object-position: center;
     object-position: center;
}
.object-left {
  -o-object-position: left;
     object-position: left;
}
.\!p-0 {
  padding: 0px !important;
}
.\!p-1 {
  padding: 0.25rem !important;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.\!px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.\!px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.\!py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.\!py-\[10px\] {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[0\.625rem\] {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-\[18px\] {
  padding-left: 18px;
  padding-right: 18px;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-14 {
  padding-bottom: 3.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pr-\[24px\] {
  padding-right: 24px;
}
.pr-\[45px\] {
  padding-right: 45px;
}
.ps-2 {
  padding-inline-start: 0.5rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.\!text-\[15px\] {
  font-size: 15px !important;
}
.\!text-\[16px\] {
  font-size: 16px !important;
}
.\!text-\[18px\] {
  font-size: 18px !important;
}
.\!text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.\!text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}
.\!text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.\!text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-\[0\.875rem\] {
  font-size: 0.875rem;
}
.text-\[10\.5rem\] {
  font-size: 10.5rem;
}
.text-\[15px\] {
  font-size: 15px;
}
.text-\[1rem\] {
  font-size: 1rem;
}
.text-\[2\.5rem\] {
  font-size: 2.5rem;
}
.text-\[2rem\] {
  font-size: 2rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.\!font-bold {
  font-weight: 700 !important;
}
.\!font-normal {
  font-weight: 400 !important;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.\!leading-\[unset\] {
  line-height: unset !important;
}
.\!leading-none {
  line-height: 1 !important;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-8 {
  line-height: 2rem;
}
.leading-\[1\.2\] {
  line-height: 1.2;
}
.leading-\[18px\] {
  line-height: 18px;
}
.tracking-\[-0\.02em\] {
  letter-spacing: -0.02em;
}
.tracking-\[-0\.03em\] {
  letter-spacing: -0.03em;
}
.\!text-\[\#000000\] {
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1)) !important;
}
.\!text-black {
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1)) !important;
}
.\!text-blue-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1)) !important;
}
.\!text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#0F0F0F\] {
  --tw-text-opacity: 1;
  color: rgb(15 15 15 / var(--tw-text-opacity, 1));
}
.text-\[\#3E3E3E\] {
  --tw-text-opacity: 1;
  color: rgb(62 62 62 / var(--tw-text-opacity, 1));
}
.text-\[\#5F6368\] {
  --tw-text-opacity: 1;
  color: rgb(95 99 104 / var(--tw-text-opacity, 1));
}
.text-\[\#877d7d\] {
  --tw-text-opacity: 1;
  color: rgb(135 125 125 / var(--tw-text-opacity, 1));
}
.text-\[\#a5a5a5\] {
  --tw-text-opacity: 1;
  color: rgb(165 165 165 / var(--tw-text-opacity, 1));
}
.text-\[\#ffb3008\] {
  color: #ffb3008;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-50 {
  --tw-text-opacity: 1;
  color: rgb(249 250 251 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.line-through {
  text-decoration-line: line-through;
}
.\!opacity-100 {
  opacity: 1 !important;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-50 {
  opacity: 0.5;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.outline-transparent {
  outline-color: transparent;
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-75 {
  transition-duration: 75ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

:root {
    /* --primary: #6e0d25; */
    --primary: #eb5713;
    --primary-light: #d04b11;
    --secondary: #fff0f1;

    --grey-0: #ffffff;
    --grey-50: #f1f1f1;
    --grey-100: #d3d3d3;
    --grey-200: #bdbdbd;
    --grey-300: #9f9f9f;
    --grey-400: #8d8d8d;
    --grey-500: #707070;
    --grey-600: #666666;
    --grey-700: #505050;
    --grey-800: #3e3e3e;
    --grey-900: #2f2f2f;
    --grey-1000: #d9d9d9;
    --grey-1100: #f8f8f8;

    --accent-red: #e04d4d;
    --accent-green: #2fb53d;
    --accent-light-green: #d8edde;
    --accent-orange: #ffb125;
    --accent-yellow: #fcd354;
    --accent-blue: #4987ed;
    --accent-light-blue: #f4f8ff;
    --accent-violet: #673ce0;

    font-family: 'Helvetica Now Text', Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    --background: #fafafa;

    --border-color: var(--grey-50);
    --transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    --a-hover-color: var(--primary);
    --font-family: 'Helvetica Now Text', Arial, Helvetica, sans-serif;

    /* Sections */
    --header-bg: #0f0f0f;
    --header-color: var(--grey-0);
    --navigation-bg: #0f0f0f;
    --navigation-color: var(--grey-0);
    --navigation-menu-item-hover-bg: var(--primary);
    --navigation-menu-item-hover-color: var(--grey-0);
    --navigation-menu-item-text-transform: capitalize;
    --navigation-menu-item-badge-bg: var(--primary);
    --navigation-menu-item-badge-color: var(--grey-0);

    --promotion-banner-bg: var(--primary);
    --promotion-banner-color: var(--grey-0);

    --footer-bg: #0f0f0f;
    --footer-title-color: var(--grey-0);
    --footer-color: var(--grey-0);
    --footer-social-icon-color: var(--grey-0);

    --tab-inactive-color: var(--grey-300);
    --tab-active-color: var(--primary);
    --tab-indicator-color: var(--border-color);
    --tab-active-indicator-color: var(--primary);

    --input-height: 40px;
    --input-border-color: var(--grey-100);

    --collection-item-order-color: var(--grey-900);
    --collection-item-name-color: var(--grey-900);

    --breadcrumb-color: var(--grey-700);

    --profile-layout-sidebar-item: var(--grey-900);
    --profile-layout-sidebar-item-hover: var(--primary);

    --avatar-bg: var(--primary);
    --avatar-text-color: var(--grey-0);

    --order-item-bg: #f9f9f9;

    --google-btn-bg: #0f0f0f;
    --google-btn-color: var(--grey-0);

    --product-item-add-to-cart-bg: #0f0f0f;
    --product-item-add-to-cart-color: var(--grey-0);

    --hot-badge-bg: var(--accent-orange);
    --new-badge-bg: var(--accent-red);
    --bestseller-badge-bg: var(--accent-red);

    --section-title-font-weight: 800;
    --section-title-text-transform: capitalize;
    --section-title-divider-color: #0f0f0f;
    --section-title-font-size: 2rem;
    --section-title-mobile-font-size: 1rem;

    --btn-border-radius: 0.25rem;

    --featured-product-border-radius: 0.25rem;

    --category-radio-item-color: #0f0f0f;

    --selected-item-border-color: #0f0f0f;

    --favorite-icon-color: #0f0f0f;

    --banner-border-radius: 0;
}

html {
    font-size: 16px;
    scroll-padding-top: 40px;
    scroll-behavior: smooth;
    line-height: 1.4;
}

body {
    color: var(--grey-800);
}

html,
body {
    padding: 0;
    margin: 0;
    height: 100%;
}

p {
    margin-bottom: 1rem !important;
}

#nprogress .spinner {
    display: none !important;
}

#nprogress .peg {
    box-shadow: none !important;
}

.image-zoom-on-hover {
    overflow: hidden;
}

.image-zoom-on-hover img {
    transition: var(--transition);
}

.image-zoom-on-hover:hover img {
    transform: scale(1.05);
}

.dropdown-animation {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translateY(50px);
    visibility: hidden;
    pointer-events: none;
}

.dropdown-animation-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.slick-slider:hover .slick-prev,
.slick-slider:hover .slick-next {
    opacity: 1;
}

.slick-prev,
.slick-next {
    background: rgba(62, 62, 62, 0.6) !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    z-index: 20;
    opacity: 0;
    transition: var(--transition);
}

.slick-prev {
    left: 0 !important;
}

.slick-next {
    right: 0 !important;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

.slick-slide {
    padding: 0 5px;
}

.slick-track {
    display: flex;
    flex-wrap: nowrap;
}

.lightbox-container {
    z-index: 1000 !important;
    overflow: hidden;
}

.lightbox-image-pager {
    background-color: rgba(0, 0, 0, 0.8);
}

/* .slick-slider{
  margin-bottom: 20px;
} */
.slick-dots {
    bottom: -20px;
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
}

.slick-dots li {
    width: 10px;
    margin: 0;
}

.text-error {
    color: var(--accent-red);
}

.paypal-powered-by {
    display: none !important;
}

.fill {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.scrollbar-cs::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #f5f5f5;
}

.scrollbar-cs::-webkit-scrollbar-track {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px #cccccc;
    background-color: #f5f5f5;
}

.scrollbar-cs::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px #cccccc;
    background-color: #ccc;
}

@media only screen and (min-width: 300px) {
    .paypal-powered-by {
        display: none !important;
    }
}

@media only screen and (min-width: 1200px) {
    .paypal-powered-by {
        display: block;
    }
}

.cms-page {
    ul {
        display: block;
        list-style-type: disc;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        padding-inline-start: 40px;
        unicode-bidi: isolate;
    }

    ul>li {
        display: list-item;
        text-align: -webkit-match-parent;
        unicode-bidi: isolate;
    }
}

/* swiper */
.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
}

.swiper:hover .swiper-button-prev.swiper-button-disabled,
.swiper:hover .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: visible;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary) !important;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    background-color: #ffffff;
    box-shadow: 0px 1px 3px 0px #0000004d, 0px 4px 8px 3px #00000026;
    border-radius: 100%;
    width: 33px !important;
    height: 33px !important;
    transition: var(--transition);
    z-index: 11 !important;
    display: none;
    opacity: 0;
    visibility: hidden;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.5);
    transition: var(--transition);
}

.swiper-button-prev {
    background-image: url('/svgs/arrow-left-2.svg');
}

.swiper-button-next {
    background-image: url('/svgs/arrow-right-2.svg');
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

@media only screen and (min-width: 1024px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: block;
    }
}

div#cxgenie-chat-button .cxgenie-chat-button.open,
#cxgenie-chat-button .cxgenie-chat-modal.open {
    display: none !important;
    opacity: 0 !important;
}

@media only screen and (min-width: 769px) {
    .blog-base {
        font-size: 18px !important;
        line-height: 30px !important;
    }

    .blog-base .Text_body__xH0e9 {
        font-size: 18px !important;
        line-height: 30px !important;
    }
}

@media only screen and (max-width: 768px) {
    .blog-base {
        font-size: 16px !important;
        line-height: 30px !important;
    }

    .blog-base .Text_body__xH0e9 {
        font-size: 16px !important;
        line-height: 30px !important;
    }
}

.app-overlay {
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.show-overlay .app-overlay {
    opacity: 0.5;
    visibility: visible;
    transition: var(--transition);
}

#___ratingbadge_0 {
    position: relative !important;
    z-index: 2 !important;
}

div#___ratingbadge_0>iframe {
    width: 200px !important;
}

.responsive-img {
    max-width: 100%;
    height: auto;
}

.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:cursor-pointer:hover {
  cursor: pointer;
}

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

.hover\:border-blue-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.hover\:border-blue-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.hover\:bg-\[\#00000085\]:hover {
  background-color: #00000085;
}

.hover\:bg-\[\#f1f1f1\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(241 241 241 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#fff4e6\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 244 230 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
}

.hover\:bg-opacity-100:hover {
  --tw-bg-opacity: 1;
}

.hover\:text-black:hover {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.hover\:text-gray-300:hover {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:\!opacity-95:hover {
  opacity: 0.95 !important;
}

.hover\:opacity-60:hover {
  opacity: 0.6;
}

.hover\:opacity-80:hover {
  opacity: 0.8;
}

.group:hover .group-hover\:visible {
  visibility: visible;
}

.group\/item:hover .group-hover\/item\:translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:bg-opacity-10 {
  --tw-bg-opacity: 0.1;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

@media (min-width: 640px) {

  .sm\:h-\[112\.5px\] {
    height: 112.5px;
  }

  .sm\:w-\[calc\(\(100vw-68px\)\/3\.5\)\] {
    width: calc((100vw - 68px) / 3.5);
  }

  .sm\:w-\[fit-content\] {
    width: -moz-fit-content;
    width: fit-content;
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .sm\:justify-between {
    justify-content: space-between;
  }

  .sm\:gap-2 {
    gap: 0.5rem;
  }

  .sm\:gap-5 {
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {

  .md\:absolute {
    position: absolute;
  }

  .md\:sticky {
    position: sticky;
  }

  .md\:right-10 {
    right: 2.5rem;
  }

  .md\:right-2 {
    right: 0.5rem;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .md\:\!mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .md\:-mx-7 {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .md\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

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

  .md\:mb-0 {
    margin-bottom: 0px;
  }

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

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

  .md\:ml-14 {
    margin-left: 3.5rem;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:ms-2 {
    margin-inline-start: 0.5rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

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

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

  .md\:line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .md\:line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .md\:block {
    display: block;
  }

  .md\:inline-block {
    display: inline-block;
  }

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

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:aspect-\[547\/450\] {
    aspect-ratio: 547/450;
  }

  .md\:h-\[132\.5px\] {
    height: 132.5px;
  }

  .md\:h-\[47px\] {
    height: 47px;
  }

  .md\:h-\[auto\] {
    height: auto;
  }

  .md\:max-h-\[460px\] {
    max-height: 460px;
  }

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

  .md\:min-h-\[20vw\] {
    min-height: 20vw;
  }

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

  .md\:w-80 {
    width: 20rem;
  }

  .md\:w-\[300px\] {
    width: 300px;
  }

  .md\:w-\[400px\] {
    width: 400px;
  }

  .md\:w-\[47px\] {
    width: 47px;
  }

  .md\:w-\[480px\] {
    width: 480px;
  }

  .md\:w-\[calc\(\(100vw-68px\)\/4\.5\)\] {
    width: calc((100vw - 68px) / 4.5);
  }

  .md\:w-auto {
    width: auto;
  }

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

  .md\:max-w-\[131px\] {
    max-width: 131px;
  }

  .md\:max-w-\[175px\] {
    max-width: 175px;
  }

  .md\:max-w-\[200px\] {
    max-width: 200px;
  }

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

  .md\:-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:cursor-auto {
    cursor: auto;
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

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

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

  .md\:items-start {
    align-items: flex-start;
  }

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

  .md\:justify-normal {
    justify-content: normal;
  }

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

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-0 {
    gap: 0px;
  }

  .md\:gap-1 {
    gap: 0.25rem;
  }

  .md\:gap-2 {
    gap: 0.5rem;
  }

  .md\:gap-3 {
    gap: 0.75rem;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:gap-5 {
    gap: 1.25rem;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-y-4 {
    row-gap: 1rem;
  }

  .md\:rounded-\[10px\] {
    border-radius: 10px;
  }

  .md\:rounded-s-lg {
    border-start-start-radius: 0.5rem;
    border-end-start-radius: 0.5rem;
  }

  .md\:border-\[1px\] {
    border-width: 1px;
  }

  .md\:border-r-\[1px\] {
    border-right-width: 1px;
  }

  .md\:border-t-8 {
    border-top-width: 8px;
  }

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

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

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

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

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

  .md\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .md\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

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

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

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

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

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

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

  .md\:pt-2 {
    padding-top: 0.5rem;
  }

  .md\:text-center {
    text-align: center;
  }

  .md\:text-start {
    text-align: start;
  }

  .md\:\!text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }

  .md\:\!text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }

  .md\:\!text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .md\:text-\[4\.5rem\] {
    font-size: 4.5rem;
  }

  .md\:text-\[4rem\] {
    font-size: 4rem;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

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

  .md\:hover\:bg-slate-300\/80:hover {
    background-color: rgb(203 213 225 / 0.8);
  }
}

@media (min-width: 1024px) {

  .lg\:relative {
    position: relative;
  }

  .lg\:right-4 {
    right: 1rem;
  }

  .lg\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

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

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

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

  .lg\:hidden {
    display: none;
  }

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

  .lg\:h-\[300px\] {
    height: 300px;
  }

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

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

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

  .lg\:w-\[280px\] {
    width: 280px;
  }

  .lg\:w-\[80\%\] {
    width: 80%;
  }

  .lg\:w-\[calc\(\(100vw-104px\)\/6\.5\)\] {
    width: calc((100vw - 104px) / 6.5);
  }

  .lg\:min-w-52 {
    min-width: 13rem;
  }

  .lg\:min-w-\[40px\] {
    min-width: 40px;
  }

  .lg\:max-w-\[400px\] {
    max-width: 400px;
  }

  .lg\:max-w-\[50\%\] {
    max-width: 50%;
  }

  .lg\:max-w-none {
    max-width: none;
  }

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

  .lg\:basis-1\/2 {
    flex-basis: 50%;
  }

  .lg\:basis-\[400px\] {
    flex-basis: 400px;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

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

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

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

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

  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:gap-14 {
    gap: 3.5rem;
  }

  .lg\:gap-16 {
    gap: 4rem;
  }

  .lg\:gap-2 {
    gap: 0.5rem;
  }

  .lg\:gap-3 {
    gap: 0.75rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:gap-5 {
    gap: 1.25rem;
  }

  .lg\:gap-6 {
    gap: 1.5rem;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-y-16 {
    row-gap: 4rem;
  }

  .lg\:gap-y-8 {
    row-gap: 2rem;
  }

  .lg\:p-2 {
    padding: 0.5rem;
  }

  .lg\:p-20 {
    padding: 5rem;
  }

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

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

  .lg\:\!px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

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

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

  .lg\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

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

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

  .lg\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .lg\:px-\[1\.25rem\] {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

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

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

  .lg\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

  .lg\:pb-2 {
    padding-bottom: 0.5rem;
  }

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

  .lg\:pt-3 {
    padding-top: 0.75rem;
  }

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

  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-\[1\.2rem\] {
    font-size: 1.2rem;
  }

  .lg\:text-\[1\.5rem\] {
    font-size: 1.5rem;
  }

  .lg\:text-\[20\.5rem\] {
    font-size: 20.5rem;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .lg\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

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

  .lg\:leading-\[1\.5\] {
    line-height: 1.5;
  }
}

@media (min-width: 1280px) {

  .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .xl\:w-\[calc\(\(1296px-55px\)\/6\.5\)\] {
    width: calc((1296px - 55px) / 6.5);
  }

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:leading-\[1\.35\] {
    line-height: 1.35;
  }
}

@media (min-width: 1536px) {

  .\32xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .\32xl\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .\32xl\:block {
    display: block;
  }

  .\32xl\:hidden {
    display: none;
  }
}
.blocks {
    color: #5f6368;
    font-size: 16px;
    line-height: 30px;
}

.blocks h1 {
    font-weight: 700;
    font-size: 35px;
    line-height: 45px;
}
.blocks h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
}
.blocks h3 {
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
}

.blocks h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}

.blocks ol,
.blocks ul {
    list-style: revert;
    padding-left: 1rem;
    margin-left: 1rem;
}

.blocks label,
.blocks input,
.blocks textarea,
.blocks button {
    font-size: 16px !important;
    line-height: 30px !important;
}

@media (min-width: 1024px) {
    .blocks {
        font-size: 18px;
        line-height: 30px;
    }
    .blocks h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .blocks h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .blocks h3 {
        font-size: 28px;
        line-height: 38px;
    }
    .blocks h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .blocks label,
    .blocks input,
    .blocks textarea,
    .blocks button {
        font-size: 18px !important;
        line-height: 30px !important;
    }
}
@media (min-width: 768px) {
    .blocks {
        font-size: 18px;
        line-height: 30px;
    }
    .blocks h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .blocks h2 {
        font-size: 35px;
        line-height: 48px;
    }
    .blocks h3 {
        font-size: 24px;
        line-height: 28px;
    }
    .blocks h4 {
        font-size: 20px;
        line-height: 28px;
    }
}


/*# sourceMappingURL=f6c8dd89cc7cd957.css.map*/