@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
:root {
  --blue_200: #16ebc3;
  --blue_300: #1042f3;
  --gray_200: #1c1c1c;
  --montserrat_font: "Montserrat", sans-serif;
  --poppins_font: "Poppins", sans-serif;
  --kanit_font: "Kanit", sans-serif;
  --container-width-main: 87%;
  --container-width-sm-main: 90%;
  --container-width-inner: 70%;
  --main-title-font: 4vh;
  --card-title-font: 2.5vh;
  --card-desc-font: 1.5vh;
  --modal-text: 1.8vh;
}
* {
  box-sizing: border-box;
}
body {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat_font);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}
: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: #ffffffb3;
  --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(
    90deg,
    #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 {
  box-sizing: border-box;
  color: #fff;
  padding: 4px;
  position: fixed;
  -webkit-transform: translateZ(9999);
  -webkit-transform: translateZ(var(--toastify-z-index));
  width: 320px;
  width: var(--toastify-toast-width);
  z-index: 9999;
  z-index: var(--toastify-z-index);
}
.Toastify__toast-container--top-left {
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
}
.Toastify__toast-container--top-center {
  left: 50%;
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
}
.Toastify__toast-container--bottom-left {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
}
@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    left: env(safe-area-inset-left);
    margin: 0;
    padding: 0;
    width: 100vw;
  }
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    left: auto;
    right: env(safe-area-inset-right);
  }
}
.Toastify__toast {
  --y: 0;
  border-radius: 6px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0 4px 12px #0000001a;
  box-sizing: border-box;
  cursor: default;
  direction: ltr;
  display: flex;
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  justify-content: space-between;
  margin-bottom: 1rem;
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  overflow: hidden;
  padding: 8px;
  position: relative;
  touch-action: none;
  z-index: 0;
}
.Toastify__toast--stacked {
  position: absolute;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
  width: 100%;
}
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button,
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body {
  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 {
  bottom: 100%;
  content: "";
  height: calc(var(--g) * 1px);
  left: 0;
  position: absolute;
  right: 0;
}
.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 {
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleY(3);
  z-index: -1;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  margin: auto 0;
  padding: 6px;
}
.Toastify__toast-body > div:last-child {
  flex: 1 1;
  word-break: break-word;
}
.Toastify__toast-icon {
  display: flex;
  flex-shrink: 0;
  margin-inline-end: 10px;
  width: 20px;
}
.Toastify--animate {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.Toastify--animate-icon {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
@media only screen and (max-width: 480px) {
  .Toastify__toast {
    border-radius: 0;
    margin-bottom: 0;
  }
}
.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  background: #3498db;
  background: var(--toastify-color-info);
  color: #fff;
  color: var(--toastify-text-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  background: #07bc0c;
  background: var(--toastify-color-success);
  color: #fff;
  color: var(--toastify-text-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  background: #f1c40f;
  background: var(--toastify-color-warning);
  color: #fff;
  color: var(--toastify-text-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  background: #e74c3c;
  background: var(--toastify-color-error);
  color: #fff;
  color: var(--toastify-text-color-error);
}
.Toastify__progress-bar-theme--light {
  background: linear-gradient(
    90deg,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: #e74c3c;
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--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 {
  background: #ffffffb3;
  background: var(--toastify-color-transparent);
}
.Toastify__close-button {
  align-self: flex-start;
  background: #0000;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  outline: none;
  padding: 0;
  transition: 0.3s ease;
  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:focus,
.Toastify__close-button:hover {
  opacity: 1;
}
@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  border-bottom-left-radius: 6px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  transform-origin: left;
  width: 100%;
  z-index: 9999;
  z-index: var(--toastify-z-index);
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 6px;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
  left: auto;
  right: 0;
  transform-origin: right;
}
.Toastify__progress-bar--wrp {
  border-bottom-left-radius: 6px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  bottom: 0;
  height: 5px;
  left: 0;
  position: absolute;
  width: 100%;
}
.Toastify__progress-bar--wrp[data-hidden="true"] {
  opacity: 0;
}
.Toastify__progress-bar--bg {
  height: 100%;
  opacity: 0.2;
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
}
.Toastify__spinner {
  animation: Toastify__spin 0.65s linear infinite;
  border: 2px solid #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-radius: 100%;
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  box-sizing: border-box;
  height: 20px;
  width: 20px;
}
@keyframes Toastify__bounceInRight {
  0%,
  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__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}
@keyframes Toastify__bounceInLeft {
  0%,
  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 {
  0%,
  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, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(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 {
  0%,
  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--bottom-left,
.Toastify__bounce-enter--top-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-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--bottom-left,
.Toastify__bounce-exit--top-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-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 {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  0% {
    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 {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  0% {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    opacity: 1;
    transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(-20deg);
  }
  to {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(90deg);
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}
.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}
@keyframes Toastify__slideInRight {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInLeft {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInUp {
  0% {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInDown {
  0% {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideOutRight {
  0% {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    transform: translate3d(110%, var(--y), 0);
    visibility: hidden;
  }
}
@keyframes Toastify__slideOutLeft {
  0% {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    transform: translate3d(-110%, var(--y), 0);
    visibility: hidden;
  }
}
@keyframes Toastify__slideOutDown {
  0% {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    transform: translate3d(0, 500px, 0);
    visibility: hidden;
  }
}
@keyframes Toastify__slideOutUp {
  0% {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    transform: translate3d(0, -500px, 0);
    visibility: hidden;
  }
}
.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-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--bottom-left,
.Toastify__slide-exit--top-left {
  animation-duration: 0.3s;
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
}
.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
  animation-duration: 0.3s;
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
}
.Toastify__slide-exit--top-center {
  animation-duration: 0.3s;
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
}
.Toastify__slide-exit--bottom-center {
  animation-duration: 0.3s;
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
}
@keyframes Toastify__spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
:root {
  --bggradient_dark: #151515;
  --bggradient_secondry: #101111;
  --gradinet_left: #1042f3;
  --gradinet_right: #16ebc3;
  --white: #fff;
  --black: #000;
  --sidetab_bgdark: #15151580;
  --sidetab_bglight: #3a3a3a36;
  --sidetab_border: #00fdd632;
  --hrsmall: #00fdce;
  --nftcard_bgcolor: #282828;
  --dropdown_textcolor: #00fdd6;
  --activetoptab: #17937c;
  --greenbtn_bgcolor: #00fdd61f;
  --ntfcard_stakedark: #148c78;
  --ntfcard_stakelight: #137767;
  --ntfcard_withdrawdark: #642f8d;
  --ntfcard_withdrawlight: #5c347b;
  --bottombar_dark: #070707b2;
  --bottombar_light: #6060602b;
  --taber_bgcolor: #272727;
  --helonika_font: "Kanit", sans-serif;
  --poppins: "Poppins", sans-serif;
  --compact_font: "Compact";
  --inter_font: "Inter", sans-serif;
  --montserrat-font: "Montserrat", sans-serif;
  --font_twelve: 12px;
  --font-fifteen: 15px;
  --font-sixteen: 16px;
  --font_eighteen: 18px;
  --font_thirty: 30px;
  --font_thirteen: 13px;
  --font_fourteen: 14px;
  --higher_fontsize: 25px;
  --font_twenty: 20px;
  --countdown_fontsize: 45px;
  --font_sixty: 60px;
  --poster_fontsize: 130px;
  --lower_fontsize: 10px;
  --small_fontsize: 8px;
  --weight_six: 600;
  --weight_seven: 700;
  --weight_five: 500;
  --weight_three: 300;
  --weight_four: 400;
  --wrapper_dark: #050504;
  --wrapper_light: #050504a6;
  --placeholder_color: #89868c;
  --stepcard_border: #bebebe99;
  --stepcard_bg: #1d1d1d4f;
  --input_label: #6b6b6b;
  --input_bottomborder: #707070;
  --contact_black: #040403;
  --modalcontent_bg: #0b0b0b;
  --bg-color-1: #1c1c1c;
  --bg-color-2: #080808b2;
  --bg-color-3: #08080899;
  --bg-color-4: #5a5a5a;
  --bg-color-5: #111;
  --bg-color-6: #00000080;
  --border-color-1: #525252;
  --border-color-2: #ffffffa8;
  --text-color-1: #f84a4a;
  --text-color-2: #9a9a9a;
  --text-color-3: #aaa;
  --text-color-4: #af49ff;
}
@font-face {
  font-family: Helonika;
  src: url(/static/media/helonik-extended-bold-demo.5b7100c16ef80bfbdf63.otf);
}
@font-face {
  font-family: Compact;
  src: url(/static/media/MultiTypePixel%20DisplayNarrow.42680b3c0dc7816ad083.otf);
}
* {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  margin: 0;
  padding: 0;
}
body {
  background: #000;
  background: var(--black);
}
p {
  margin-bottom: 0;
  padding: 0;
}
.desc_txt,
.head_txt {
  margin-bottom: 2vh !important;
}
.btn_top {
  margin-top: 1vh;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0 !important;
}
.pb_3 {
  padding-bottom: 5vh;
}
::-webkit-scrollbar {
  height: 2px;
  width: 2px;
}
::-webkit-scrollbar-track {
  background-color: #6b6b6b;
  background-color: var(--input_label);
}
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
}
.bottom_content {
  position: relative;
  z-index: 5;
  margin-bottom: 3em;
}
.modal-backdrop {
  -webkit-backdrop-filter: blur(5px) !important;
  backdrop-filter: blur(5px) !important;
  background-color: #3c3c3c61 !important;
  opacity: 1 !important;
}
.nodata_found {
  align-items: center;
  color: #fff;
  color: var(--white);
  display: flex;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 2vh;
  font-weight: 500;
  height: 27vh;
  justify-content: center;
  text-align: center;
}
.homecube_header .primary_blueBtn:hover {
  background-image: linear-gradient(90deg, #1042f3, #16ebc3);
  background-image: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  color: #fff;
  color: var(--white);
}
.header_wallet {
  height: 2.5vh;
  margin-right: 0.8vh;
  object-fit: contain;
  width: 2.5vh;
}
.homecube_header .primary_blueBtn:hover .fa-user {
  color: #fff;
  color: var(--white);
}
.header_walletLottie {
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.header_gradientBtn {
  align-items: center;
  background-image: linear-gradient(90deg, #1042f3, #16ebc3);
  background-image: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  border: none;
  border-radius: 0.5vh;
  color: #fff;
  display: flex;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.6vh;
  font-weight: 700;
  max-height: 4vh;
  outline: none;
  overflow: hidden;
  padding: 1vh;
  position: relative;
  top: 0.2vh;
  white-space: nowrap;
}
.header_gradientBtn:hover {
  background-image: linear-gradient(90deg, #16ebc3, #1042f3);
  background-image: linear-gradient(
    to right,
    var(--gradinet_right),
    var(--gradinet_left)
  );
}
.homecube_header .logoMob {
  display: none;
}
.homecube_header .user_hvr_btn,
.offcanvas .user_hvr_btn {
  align-items: center;
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 3.7vh;
  justify-content: center;
  margin-right: 2vh;
  margin-top: 0.7vh;
  padding: 0;
  width: 3.7vh;
}
.homecube_header .user_hvr_btn img,
.offcanvas .user_hvr_btn img {
  border-radius: 50%;
  max-height: 3.8vh;
  max-width: 3.8vh;
  min-height: 3.8vh;
  min-width: 3.8vh;
  object-fit: cover;
}
.homecube_header a {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.8vh;
  line-height: 0;
  margin-right: 5vh;
  text-decoration: none;
}
.homecube_header .fa-user,
.offcanvas .fa-user {
  color: #000;
  color: var(--black);
}
.navLogo {
  width: 20vh;
}
.homecube_header a:hover {
  color: #16ebc3;
  color: var(--gradinet_right);
}
.droppadding {
  padding: 1.7vh;
}
.homecube_header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.bal,
.id_bal,
.metaaddress,
.metamask {
  font-size: 1.8vh;
}
.copymeta {
  width: 2.5vh !important;
}
.navbar {
  background-color: #000;
  background-color: var(--black);
  height: 9vh;
  padding: 1.6vh 0;
}
.mainLogo {
  width: 21vh;
}
.droptoggle,
.droptoggle:hover {
  background: #0000;
  border-color: #0000;
}
.droptoggle:after {
  display: none;
}
.dropmenu.dropdown-menu[data-bs-popper] {
  left: auto;
  right: 0;
}
.navbar-toggler {
  border: #0000;
  line-height: 0 !important;
  padding: 0 !important;
}
.navbar-toggler-icon {
  background: url(/static/media/menuss.696f6bf75cc9dc0e8fcf.svg) no-repeat !important;
  background-position: 50%;
  background-size: 100% 100% !important;
  padding: 0 !important;
}
.offcanvas {
  background-color: #151515;
  background-color: var(--bggradient_dark);
  z-index: 99999 !important;
}
.btn-close {
  filter: invert(1);
  opacity: 1 !important;
}
.walletbtn {
  background: #0000;
  border: #0000;
}
.dropmenu {
  background-color: #0b0b0b;
  background-color: var(--modalcontent_bg);
  border: 1px solid gray;
  color: #fff;
  color: var(--white);
  width: 30vh;
}
.dropmenu .id {
  color: #16ebc3;
  color: var(--gradinet_right);
}
.dropmenu .token {
  color: gray;
}
.dropmenu .fa-copy {
  color: #fff;
  color: var(--white);
  cursor: pointer;
}
.fa-right-from-bracket {
  margin-right: 0.6vh;
}
.btn.show,
.btn:first-child:active {
  background-color: initial !important;
  border-color: #0000 !important;
}
.modal-body .header_wallet.rewardswallet {
  height: 3vh;
  width: 3vh;
}
@media screen and (max-width: 991px) {
  .homecube_header .user_hvr_btn,
  .offcanvas .user_hvr_btn {
    margin-top: 0;
  }
  .homecube_header .dropmenu,
  .offcanvas-body .droptoggle,
  .offcanvas-body .hc-auth__button,
  .offcanvas-body .header_gradientBtn {
    display: none;
  }
  .gap_mobile {
    gap: 2.3vh;
  }
  .header_wallet {
    height: 4vh;
    width: 4vh;
  }
  .header_wallet.rewardswallet {
    height: 3vh;
    width: 3vh;
  }
  .navbar {
    height: 9vh;
  }
  .navbar-toggler-icon {
    height: 4vh !important;
    width: 4vh !important;
  }
  .logoMob {
    height: 5.5vh;
    width: 5.5vh;
  }
  .offcanvas a {
    margin-bottom: 3vh;
    text-decoration: none;
  }
  .logoutss,
  .offcanvas a {
    color: #fff;
    color: var(--white);
  }
  .logoutss {
    background-color: initial;
    border: none;
    line-height: 0;
    outline: none;
  }
  .logoutss .fa-right-from-bracket {
    font-size: 3vh;
  }
}
@media screen and (max-width: 575px) {
  .homecube_header .mainLogo {
    display: none;
  }
  .homecube_header .logoMob {
    display: block;
  }
}
.footer_all .container,
.homecube_header .container {
  max-width: var(--container-width-main);
  padding: 0;
}
.footer_sociallinks.youtubes {
  height: 3.4vh;
  width: 3.4vh;
}
.innercontent .container {
  max-width: 66%;
  padding: 0;
}
.footer {
  background: #000;
  background: var(--black);
  border-bottom: 1px solid #ffffffa8;
  border-bottom: 1px solid var(--border-color-2);
  border-top: 1px solid #ffffffa8;
  border-top: 1px solid var(--border-color-2);
}
.footer_logo {
  width: 21vh;
}
.mp_detailbrief {
  color: #fff;
  color: var(--white);
  font-size: 1.9vh;
  font-weight: 500;
  line-height: 4vh;
  margin: 0;
  word-spacing: 0.2vh;
}
.mp_detailbrief.homes {
  font-size: 2vh;
}
.footer_linkwrapper ul {
  padding-left: 0;
}
.footer_right_title {
  color: #fff;
  color: var(--white);
  font-family: Kanit, sans-serif;
  font-family: var(--helonika_font);
  font-size: 3vh;
  font-weight: 500;
  margin-bottom: 3.7vh;
}
.sidetab_link {
  text-decoration: none;
}
.footer_right {
  display: flex;
  justify-content: flex-end;
}
.footer_links:hover {
  color: #16ebc3;
  color: var(--gradinet_right);
}
.footer_links {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.8vh;
  font-weight: 500;
  list-style-type: none;
  margin-bottom: 1.5vh;
  text-decoration: none;
}
.footer_links.mb_list {
  margin-bottom: 0;
}
.footer_sociallinks:hover {
  cursor: pointer;
}
.footer_sociallinks {
  height: 2.5vh;
  margin-right: 2vh;
  width: 2.5vh;
}
.mp_detailbrief.hc-home__desc {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-weight: 500;
  padding: 0 !important;
}
@media screen and (max-width: 1199px) {
  .footer_all .container,
  .homecube_header .container {
    max-width: 90%;
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .innercontent .container .row {
    margin: 0;
  }
}
.footerpad {
  padding: 4vh 0;
}
.hc-footer__bottom {
  padding: 3vh 0 !important;
}
.footer_left,
.footer_right {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .footer_links {
    margin-bottom: 1.5vh;
  }
  .footer_right_title {
    margin-bottom: 2.6vh;
  }
  .footerpad {
    padding: 1.5vh 0;
  }
  .footer_left,
  .footer_right {
    margin-top: 3vh;
  }
  .innercontent .container {
    max-width: var(--container-width-sm-main);
  }
  .footer_all .container,
  .homecube_header .container {
    max-width: var(--container-width-sm-main);
    padding: 0;
  }
  .footer_right {
    display: inline;
    display: initial;
  }
  .mp_detailbrief {
    font-size: 1.7vh;
    line-height: 3.8vh;
    padding: 0;
  }
}
.bottomBar {
  background: #080808;
  border-top: 1px solid #525252;
  bottom: 0;
  padding: 1.4vh 0;
  position: fixed;
  width: 100%;
  z-index: 9999;
}
.bottomBar .container {
  max-width: 90%;
}
.bottomBar {
  display: none;
}
@media screen and (max-width: 1199px) {
  .footer_all {
    margin-bottom: 10vh;
  }
  .bottomBar {
    display: block;
  }
  .bottombar_single {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .bottombar_img {
    height: 2.5vh;
    margin-bottom: 0.3vh;
    width: 2.5vh;
  }
  .bottombar_label {
    color: #16ebc3;
    color: var(--gradinet_right);
    font-family: Poppins, sans-serif;
    font-family: var(--poppins);
    font-size: 1.2vh;
    font-weight: 400;
    margin: 0;
    text-align: center;
    word-break: break-word;
  }
  .bottombar_label.whites {
    color: #fff;
    color: var(--white);
  }
}
.innercontent {
  min-height: 80vh;
  overflow: hidden;
  position: relative;
}
.banner_section {
  background: linear-gradient(103.58deg, #240533 39.31%, #004448 95.31%);
  min-height: 100vh;
  padding-top: 34.5vh;
  position: relative;
  z-index: 5;
}
.nftcard_statuslabelblue_dark {
  background: #1042f3;
  background: var(--gradinet_left);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff !important;
  color: var(--white) !important;
}
.nftcard_statuslabelblue_dark .card_status {
  color: #fff;
  color: var(--white);
}
.banner_section:after {
  background: url(/static/media/bottomlayer.549281c35f1aabddba8b.png) no-repeat;
  background-size: 100% 100%;
  bottom: -0.2vh;
  content: "";
  height: 20vh;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.banner_section.market_sections,
.banner_section.nftinfo_section {
  padding-top: 24vh;
}
.home_titled {
  font-size: var(--main-title-font);
  font-weight: 600;
  margin-bottom: 0;
}
.home_titled.inner_title {
  font-size: 4.5vh;
}
.market_bot {
  margin-top: -18vh;
}
.nftinfo_bots {
  margin-top: -25vh;
}
.nftinfo_bot {
  margin-top: -14vh;
}
.nftinfo_bot2 {
  margin-top: -22vh;
}
.salesend_bot {
  margin-top: -26vh;
}
.hc-home__title.home_titled strong {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-family: Poppins, sans-serif;
  font-family: var(--poppins);
  font-weight: 300;
}
.hc-home__button--linear {
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
  background-image: linear-gradient(90deg, #1042f3, #16ebc3);
  background-image: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  border: none;
  border-radius: 0.6vh;
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.7vh;
  font-weight: 600;
  outline: none;
  padding: 1vh 4vh;
}
.hc-home__button--linear:hover {
  background: #16ebc3;
  background: var(--gradinet_right);
  color: #000;
  color: var(--black);
}
.sidetab_whole {
  background: #080808b2;
  background: var(--bg-color-2);
  border: 1px solid #525252;
  border: 1px solid var(--border-color-1);
  border-radius: 0.5vh;
  padding: 1.1vh 0.6vh;
  width: 13.1vh;
}
.sidetab_whole.active {
  position: sticky;
}
.singleTab {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidetab_logo {
  height: 2.9vh;
  width: 2.9vh;
}
.sidetab_laebl {
  font-size: 1.5vh;
}
.singleTab {
  padding: 1.6vh 0.4vh;
}
.sidetab_laebl {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  padding-top: 0.4vh;
}
.sidetab_whole.hc-sidetab .sidetab_link.active .sidetab_laebl {
  color: #fff;
  color: var(--white);
}
.side_left.fixed {
  left: 6.5%;
  position: fixed;
  top: 33.5vh;
  z-index: 7;
}
.side_left.sticky {
  display: none;
}
@media screen and (max-width: 1199px) {
  .sidetab_whole {
    display: none;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .sidetab_whole {
    left: 7vh;
  }
  .innercontent .container {
    max-width: 90%;
  }
}
@media screen and (max-width: 991px) {
  .banner_section {
    padding-top: 18vh;
  }
}
@media screen and (max-width: 767px) {
  .nftinfo_bot {
    margin-top: -28vh;
  }
  .nftinfo_bot2 {
    margin-top: -38vh;
  }
  .nftinfo_bots {
    margin-top: -40vh;
  }
}
@media screen and (max-width: 575px) {
  .footer_links.mb_list {
    font-size: 1.7vh;
  }
  .flexcut {
    flex-wrap: wrap;
  }
  .salesend_bot {
    margin-top: -20vh;
  }
}
.hc-home__title.home_titled .marker {
  color: #1042f3;
  color: var(--gradinet_left);
  font-weight: 400;
}
.primary_blueBtn {
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
  border: none;
  border-radius: 0.5vh;
  color: #000;
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.65vh;
  font-weight: 600;
  outline: none;
  padding: 1vh 2vh;
}
.primary_blueBtn:hover {
  background-image: linear-gradient(90deg, #1042f3, #16ebc3);
  background-image: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  color: #fff;
  color: var(--white);
}
.anim_div div[aria-label="animation"] {
  height: 30vh !important;
  min-height: 30vh !important;
  min-width: 30vh !important;
  width: 30vh !important;
}
.top_bottom {
  padding-bottom: 6vh;
  padding-top: 6vh;
}
.Typewriter {
  margin-bottom: 1.8vh;
}
.Typewriter .Typewriter__cursor,
.Typewriter .Typewriter__wrapper {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-family: Poppins, sans-serif;
  font-family: var(--poppins);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 1.5vh;
}
.video_set {
  height: 38vh;
  width: 100%;
}
.hc-home__threecube.home_threecube {
  height: 2.5vh;
  margin-top: 0.7vh;
  width: 2.5vh;
}
.home_investorList li {
  align-items: flex-start;
  display: flex;
  gap: 2vh;
  justify-content: flex-start;
  margin-bottom: 3vh;
}
.home_investorList {
  list-style-type: none;
  padding-left: 0;
}
.home_commitemtnCard {
  align-items: flex-start;
  background-color: #151515;
  border: 1px solid #525252;
  border: 1px solid var(--border-color-1);
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: 29vh;
  min-height: 29vh;
  padding: 1.5vh;
}
.home_investorli.hc-home_li--p p {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.7vh;
  font-weight: 500;
  line-height: 3.2vh;
  margin-top: 1.5vh;
}
.home_singleCommit {
  align-items: center;
  display: flex;
  gap: 1.5vh;
  justify-content: flex-start;
}
.home_singleCmtmnt {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-family: Poppins, sans-serif;
  font-family: var(--poppins);
  font-size: 2.6vh;
  font-weight: 300;
  margin: 0;
}
.home_commitCube {
  height: 2.5vh;
  width: 2.5vh;
}
.mt_5 {
  margin-top: 5vh;
}
.mt_4 {
  margin-top: 4vh;
}
.mt_3 {
  margin-top: 3vh;
}
.mt_2 {
  margin-top: 2vh;
}
.mt_1 {
  margin-top: 1vh;
}
.mb_4 {
  margin-bottom: 4vh;
}
.mb_3 {
  margin-bottom: 3vh;
}
.mb_2 {
  margin-bottom: 2vh;
}
.mb_1 {
  margin-bottom: 1vh;
}
.me_2 {
  margin-right: 1.5vh;
}
.home_investorli.hc-home_li--p {
  scrollbar-width: none;
}
.home_investorli {
  color: #fff;
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-family: var(--poppins);
  font-size: 1.7vh;
  font-weight: 400;
  line-height: 3.2vh;
  margin: 0;
  max-height: 21vh;
  overflow: auto;
  padding-right: 0.5vh;
  word-break: break-word;
}
.col_pad {
  padding-left: 2vh;
  padding-right: 2vh;
}
.colsspad {
  padding-left: 1vh;
  padding-right: 1vh;
}
.home_mailer {
  background-color: #151515;
  border-radius: 0.8vh;
}
.mtb {
  margin: 4.2vh 0;
}
.rounded_5 {
  border-radius: 50%;
}
.home_mailer .home_titled {
  font-size: 3vh;
}
.home__channelBtn {
  align-items: center;
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
  border: none;
  color: #000;
  color: var(--black);
  display: flex;
  height: 4.5vh;
  justify-content: center;
  outline: none;
  padding: 1vh;
  width: 4.5vh;
}
.home__channelLinkHolder {
  gap: 1.4vh;
  margin-top: 1vh;
}
.home__channelBtn svg {
  height: 3.2vh;
  width: 3.2vh;
}
.home__channelBtn:hover {
  background-color: #1042f3;
  background-color: var(--gradinet_left);
}
.home__channelBtn:hover svg {
  fill: #fff;
  fill: var(--white);
}
.home-grid {
  grid-gap: 2vw;
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(3, 1fr);
}
.wauto {
  margin: auto;
  width: 85%;
}
.home_top {
  margin-top: -12vh;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col_pad.commit_pad {
    padding-left: 1.3vh;
    padding-right: 1.3vh;
  }
  .home_commitemtnCard {
    max-height: 32vh;
    min-height: 32vh;
  }
  .home_investorli {
    max-height: 25vh;
  }
  .home_top {
    margin-top: -11vh;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col_pad.commit_pad {
    padding-left: 1.2vh;
    padding-right: 1.2vh;
  }
  .home_commitemtnCard {
    max-height: 35vh;
    min-height: 35vh;
  }
  .home_investorli {
    max-height: 28vh;
  }
  .home_top {
    margin-top: -8vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .col_pad.commit_pad {
    padding-left: 1.2vh;
    padding-right: 1.2vh;
  }
  .home_commitemtnCard {
    max-height: 35vh;
    min-height: 35vh;
  }
  .home_investorli {
    max-height: 28vh;
  }
}
@media screen and (min-width: 1200px) {
  .anim_div div[aria-label="animation"] {
    height: 40vh !important;
    min-height: 40vh !important;
    min-width: 40vh !important;
    width: 40vh !important;
  }
  .anim_div.first_lottie div[aria-label="animation"] {
    height: 45vh !important;
    margin: 0 0 0 auto !important;
    min-height: 45vh !important;
    min-width: 45vh !important;
    width: 45vh !important;
  }
}
@media screen and (max-width: 991px) {
  .home_mailer .home_titled {
    font-size: 2.5vh;
  }
  .home-grid {
    gap: 2vw;
    grid-template-columns: repeat(2, 1fr);
  }
  .top_bottom {
    padding-bottom: 5vh;
    padding-top: 5vh;
  }
  .home_titled {
    font-size: 2.7vh;
    font-weight: 500;
  }
  .home_titled.inner_title {
    font-size: 2.5vh;
  }
  .home__channelBtn {
    height: 3.7vh;
    padding: 0.8vh;
    width: 3.7vh;
  }
  .flexwrapreverse {
    flex-wrap: wrap-reverse;
  }
  .wauto {
    margin: 4vh auto auto;
  }
}
@media screen and (max-width: 767px) {
  .home-grid {
    gap: 4.5vw;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .home_titled.inner_title {
    font-size: 3vh;
  }
  .primary_blueBtn {
    font-weight: 600;
  }
  .col_pad,
  .colsspad {
    padding-left: 0.5vh;
    padding-right: 0.5vh;
  }
  .home_top {
    margin-top: -1.5vh;
  }
}
.hc-home__roadmap--content {
  margin-top: 8vh;
}
.hc-roadmap__new-col--center {
  height: 100%;
  position: relative;
}
.hc-roadmap__new-col--center img {
  left: 50.5%;
  position: absolute;
  right: 50%;
  top: -0.2vh;
  transform: translateX(-50%);
  width: 2.5vh;
  z-index: 2;
}
.hc-roadmap__new {
  height: 100%;
  position: relative;
}
.hc-roadmap__new:after {
  background: #16ebc3;
  background: var(--gradinet_right);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  right: 50%;
  top: 0;
  width: 0.2vh;
}
.roadmap_strokeText {
  -webkit-text-stroke: 1px #16ebc3;
  -webkit-text-stroke: 1px var(--gradinet_right);
  color: #0000;
  font-family: Kanit, sans-serif;
  font-family: var(--helonika_font);
  font-size: 2vh;
  font-weight: 500;
  margin: 0;
}
.hc-roadmap__new .roadmap_strokeText {
  font-size: 13vh;
  line-height: 4vh;
  margin-top: -2vh;
}
.hc-roadmap__new--themeText {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-family: Poppins, sans-serif;
  font-family: var(--poppins);
  font-size: 3.5vh;
  font-weight: 300;
  margin-bottom: 0 !important;
  margin-top: -1.5vh;
}
.hc-roadmap__new-col--left {
  gap: 12vh !important;
}
.colpad {
  padding-left: 1vh;
  padding-right: 1vh;
}
.hc-roadmap__new--whiteText {
  color: #fff;
  color: var(--white);
  font-size: 1.6vh;
  font-weight: 500;
  margin-top: 0.8vh;
  max-width: 19vh;
  min-width: 19vh;
}
.hc-roadmap__new-padding--top {
  padding-top: 9vh;
}
.hc-roadmap__new .gif_aligner,
.hc-roadmap__new div[aria-label="animation"] {
  border-radius: 0.6vh;
  height: 30vh !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: -12vh !important;
  max-height: 30vh;
  max-width: 30vh;
  min-height: 30vh;
  min-width: 30vh;
  width: 30vh !important;
}
.roadmap_flex {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .hc-roadmap__new .gif_aligner,
  .hc-roadmap__new div[aria-label="animation"] {
    border-radius: 0.6vh;
    height: 18vh !important;
    margin-top: -7vh !important;
    max-height: 18vh;
    max-width: 18vh;
    min-height: 18vh;
    min-width: 18vh;
    width: 18vh !important;
  }
  .hc-roadmap__new .roadmap_strokeText {
    display: none;
  }
  .hc-roadmap__new--themeText {
    font-size: 2vh;
    margin-top: -0.5vh;
  }
  .hc-roadmap__new--whiteText {
    font-size: 1.3vh;
    max-width: 15vh;
    min-width: 15vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .hc-roadmap__new-col--left {
    gap: 4vh !important;
  }
  .hc-roadmap__new--whiteText {
    max-width: 19vh;
    min-width: 19vh;
  }
}
@media screen and (max-width: 575px) {
  .hc-roadmap__new .gif_aligner,
  .hc-roadmap__new div[aria-label="animation"] {
    height: 16vh !important;
    margin-top: -7vh !important;
    max-height: 16vh;
    max-width: 16vh;
    min-height: 16vh;
    min-width: 16vh;
    width: 16vh !important;
  }
}
.hc-card__nft,
.hc-card__nft .projectcard_wrapper_sep {
  overflow: hidden;
}
.projectcard_wrapper_sep {
  position: relative;
}
.hc-card__nft .projectcard_wrapper_sep {
  border-radius: 0.8vh 0.8vh 0 0;
  height: 24vh;
  max-height: 24vh;
  max-width: 100%;
  min-height: 24vh;
  min-width: 100%;
  width: 100%;
}
.hc-card__nft .projectcard_wrapper_sep img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.hc-card__nft .nftcard_detailwrapper {
  background: #1c1c1c;
  background: var(--bg-color-1);
  border-radius: 0.6vh;
  padding: 1.5vh 1.8vh;
  position: relative;
  z-index: 3;
}
.hc-card__nft .nftcard_detailwrapper:before {
  background: #1c1c1c;
  background: var(--bg-color-1);
  top: -0.5vh;
  z-index: 2;
}
.hc-card__nft .nftcard_detailwrapper:after,
.hc-card__nft .nftcard_detailwrapper:before {
  border-top-left-radius: 0.7vh;
  border-top-right-radius: 0.7vh;
  content: "";
  height: 1vh;
  left: 0;
  position: absolute;
  width: 100%;
}
.hc-card__nft .nftcard_detailwrapper:after {
  background: #16ebc3;
  background: var(--gradinet_right);
  top: -1vh;
  z-index: 1;
}
.hc-nft__card-title {
  font-size: 2.3vh;
  line-height: 2vh;
  margin-bottom: 1.1vh !important;
}
.floor_prize,
.viewMore {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-family: Poppins, sans-serif;
  font-family: var(--poppins);
}
.nft_coinname {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
}
.floor_prize,
.nft_coinname {
  font-size: var(--card-desc-font);
  font-weight: 500;
  margin: 0;
}
.hc-mint__swiper-wrap {
  position: relative;
}
.hc-swiper__arrow--right {
  position: absolute;
  right: -4%;
  top: 40%;
  z-index: 2;
}
.hc-swiper__arrow--left img,
.hc-swiper__arrow--right img {
  height: 6.5vh;
  width: 6.5vh;
}
.swiper-wrapper {
  padding: 2vh 0 0;
}
.hc-mint__banner video {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.hc-min__banner-mobile video {
  object-fit: cover;
}
.hc-mint__swiper-wrap.swiptop {
  margin-top: 1vh;
}
.hc-min__banner-mobile :not(.simulator) {
  object-fit: cover;
}
.hc-swiper__arrow--left.swiper-button-disabled,
.hc-swiper__arrow--right.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.hc-swiper__arrow--left {
  left: -4%;
  position: absolute;
  top: 40%;
  z-index: 2;
}
.swiper-slide {
  margin-right: 0 !important;
}
.stack_searchbar {
  align-items: center;
  background: #080808b2;
  background: var(--bg-color-2);
  border: 0.2vh solid #525252;
  border: 0.2vh solid var(--border-color-1);
  border-radius: 0.6vh;
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  padding: 0.6vh 1.4vh;
  position: relative;
}
.projects_hr {
  background-color: gray;
  height: 0.2vh;
}
.mp_collectionDetail {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.cus-back-btn .fa-chevron-left {
  font-size: 1.8vh;
  margin-right: 0.5vh;
}
.mp_collectionLabel,
.mp_collectionValue {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.8vh;
  font-weight: 500;
}
.mp_collectionValue {
  color: #16ebc3;
  color: var(--gradinet_right);
  margin: 0 0 0 5px;
}
.mp_collectionLabel {
  color: #fff;
  color: var(--white);
  margin: 0;
  white-space: nowrap;
}
.stack_searchbar div {
  flex-direction: row !important;
}
.stack_searchbar input {
  background-color: initial;
  border: none;
  color: #fff;
  color: var(--white);
  font-size: 1.8vh;
  height: auto;
  outline: none;
  padding: 0.5vh;
}
input::placeholder {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-weight: 400;
}
.searchglass {
  height: 2vh;
  margin-right: 0.3vw;
  width: 2vh;
}
.mb_select_holder {
  display: flex;
  justify-content: flex-end;
}
.mp_accord_holder {
  background-color: #080808b2;
  background-color: var(--bg-color-2);
  border: 1px solid #525252;
  border: 1px solid var(--border-color-1);
  border-radius: 0.6vh;
  padding: 0.9vh 1.3vh;
}
.mp_accordion .accordion-header,
.mp_accordion .accordion-item {
  background-color: initial !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.mp_accordion .accordion-button.collapsed {
  color: #fff;
  color: var(--white);
}
.mp_accordion .accordion-button {
  align-items: center;
  background-color: initial !important;
  border: none !important;
  box-shadow: none !important;
  color: #16ebc3;
  color: var(--gradinet_right);
  display: flex;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 2.4vh;
  font-weight: 400;
  justify-content: space-between;
  outline: none !important;
  padding: 0.5vh 0;
  width: 100%;
}
.mp_accordion .accordion-button i {
  transform: rotate(-180deg);
  transition: all 0.3s ease;
}
.mp_accordion .accordion-button.collapsed i {
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
.accordion-button:after {
  display: none;
}
.mp_customCheck input {
  background-color: initial !important;
  border-color: #16ebc3 !important;
  border-color: var(--gradinet_right) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  height: 1.4vh;
  width: 1.4vh;
}
.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url(/static/media/rectagle.4a7b8bb944510bccbe27.svg);
  background-image: url(/static/media/rectagle.4a7b8bb944510bccbe27.svg);
  background-size: 0.94vh;
  box-shadow: none !important;
  cursor: pointer;
  margin-top: 0.2vh;
}
.mp_status {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6vh;
}
.mp_statusLabel {
  margin: 0;
}
.mb_pricetab,
.mp_statusLabel {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.8vh;
  font-weight: 500;
}
.mb_pricetab {
  background-color: #3a3a3a36;
  background-color: var(--sidetab_bglight);
  border: none;
  border-radius: 5px;
  outline: none;
  padding: 0.7vh 1.4vh;
}
.mb_pricetab.active {
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
}
.mb_priceInp,
.mb_priceInp::placeholder {
  color: #fff;
  color: var(--white);
}
.seconday_btn:hover {
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
  border-color: #16ebc3;
  border-color: var(--gradinet_right);
  color: #000;
  color: var(--black);
}
.mb_priceInp {
  font-weight: 600;
  max-width: 100%;
  text-align: center;
}
.mb_priceInp,
.seconday_btn {
  background-color: initial;
  border: 1px solid #525252;
  border: 1px solid var(--border-color-1);
  border-radius: 5px;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.8vh;
  outline: none;
  padding: 1vh;
}
.seconday_btn {
  color: #fff;
  color: var(--white);
  font-weight: 500;
  width: 100%;
}
.mp_accordion .accordion-body {
  padding: 0;
}
.mp_customCheck {
  position: relative;
}
.kycactivates .form-check .form-check-input {
  height: 3vh;
  width: 3vh;
}
.form-check .form-check-input {
  float: left;
  padding: 0.8vh;
}
.form-check {
  margin-bottom: 0.5vh !important;
}
.accordion-body input[type="number"]::-webkit-inner-spin-button,
.accordion-body input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.hc-card__nft-height.nft_card {
  background: #0000;
  border-radius: 0.7vh;
  overflow: hidden;
  padding: 0;
}
.nft_card {
  cursor: pointer;
  position: relative;
}
.mb_5 {
  margin-bottom: 5vh;
}
.search_closer {
  font-size: 1.6vh;
}
.hc-min__banner-mobile video::-webkit-media-controls {
  display: none !important;
  opacity: 0;
}
.hc-min__banner-mobile video::-webkit-media-controls-panel {
  display: none !important;
  opacity: 1 !important;
}
.hc-min__banner-mobile video::-webkit-media-controls-overlay-play-button {
  display: none;
}
.hc-min__banner-mobile video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.hc-min__banner-mobile video::slotted::-webkit-media-controls-container {
  -webkit-appearance: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.hc-card__nft-height.nft_card .nftImg {
  height: 34.7vh;
  max-width: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.market-grid {
  grid-column-gap: 0.7vw;
  grid-row-gap: 2.5vw;
  column-gap: 0.7vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2.5vw;
}
.market-grid .hc-card__nft-height.nft_card {
  border-radius: 0.4vw;
  max-width: 17.7vw;
  min-width: 17.7vw;
  overflow: hidden;
  width: 17.7vw;
}
.market-grid .nftcard_imgwrapper_sep {
  height: 17.7vw;
  max-height: 17.7vw;
  max-width: 17.7vw;
  min-height: 17.7vw;
  min-width: 17.7vw;
  width: 17.7vw;
}
.market-grid .hc-card__nft-height.nft_card .nftImg {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.hc-card__nft-height.nft_card .nftcard_detailwrapper {
  background: #1c1c1c;
  background: var(--bg-color-1);
  border-top-left-radius: 0.8vh;
  border-top-right-radius: 0.8vh;
  margin-top: -1vh;
  padding: 1.5vh 2vh;
  position: relative;
}
.hc-nft__card-title {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: var(--card-title-font);
  font-weight: 600;
  letter-spacing: inherit;
  line-height: 2.5vh;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 22vh;
}
.nft_coinImg {
  height: 2.2vh;
  margin-right: 0.5vw;
  width: 2.2vh;
}
.nftcard_coin {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-top: 1.5vh;
}
.hc-card__nft-height.nft_card .nft_coinname span {
  color: #16ebc3;
  color: var(--gradinet_right);
}
.nftcard_statuslabel .card_status {
  color: #fff;
  color: var(--white);
}
.card_status {
  color: #000;
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-family: var(--poppins);
  font-size: 1.5vh;
  font-weight: 450;
  margin: 0;
}
.cancelname {
  font-size: 2vh;
  font-weight: 600;
}
.nftcard_imgwrapper,
.nftcard_imgwrapper_sep {
  position: relative;
}
.nftcard_statuslabel {
  align-items: center;
  background: #af49ff;
  background: var(--text-color-4);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.4vh;
  box-shadow: 0 0.5vh 0.5vh 0 #00000040;
  display: flex;
  height: 3.4vh;
  justify-content: center;
  left: 0;
  padding-left: 2vh;
  padding-right: 2vh;
  position: absolute;
  top: 0;
  width: fit-content;
}
.nft_card:hover {
  transform: translateY(-10px);
  transition: all 0.5s ease;
}
.nftcard_statuslabelblue,
.nftcard_statuslabelblue_dark {
  align-items: center;
  border-radius: 0.4vh;
  box-shadow: 0 0.5vh 0.5vh 0 #00000040;
  display: flex;
  height: 3.4vh;
  justify-content: center;
  padding-left: 2vh;
  padding-right: 2vh;
  position: absolute;
  width: fit-content;
}
.nftcard_statuslabelblue {
  background: #16ebc3;
  background: var(--gradinet_right);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
}
.modal-body .react_select__control {
  width: 10vh !important;
}
.modal-body .pool_select .react_select__control {
  height: 4.2vh !important;
  min-height: 4.2vh !important;
  width: 100% !important;
}
.modal-body .duration .react_select__control {
  height: 4.4vh !important;
  width: 15vh !important;
}
.react_select__control {
  border-radius: 0.5vh !important;
  border-width: 0.2vh !important;
  height: 3.8vh !important;
  min-height: 3.8vh !important;
}
.select_bids .react_select__control {
  height: 4.4vh !important;
  min-height: 4.4vh !important;
}
.react_select__single-value {
  font-size: 1.5vh;
}
.react_select__value-container {
  border-radius: 0.5vh !important;
  font-size: 1.5vh !important;
  height: 3.8vh !important;
  padding: 0.4vh 1vh !important;
  width: 20vh !important;
}
.react_select__placeholder {
  margin-left: 0.5vh !important;
  margin-right: 0.5vh !important;
}
.react_select__single-value {
  margin-left: 0.3vh !important;
  margin-right: 0.3vh !important;
}
.react_select__input-container {
  margin: 0.2vh !important;
  padding-bottom: 0.2vh !important;
  padding-top: 0.2vh !important;
}
.react_select__input,
.react_select__input:after {
  min-width: 1vh !important;
}
.react_select__indicators {
  height: 3.8vh !important;
  width: 3.8vh !important;
}
.react_select__placeholder {
  color: #fff !important;
}
.react_select__input {
  color: #fff !important;
  color: var(--white) !important;
}
.react_select__indicator-separator {
  display: none;
}
.react_select__indicator {
  padding: 0.8vh !important;
}
.react_select__indicator svg {
  fill: #fff !important;
  fill: var(--white) !important;
  height: 2.5vh !important;
  width: 2.5vh !important;
}
.react_select__menu-list {
  max-height: 20vh !important;
}
.react_select__menu {
  background: #000 !important;
  background: var(--black) !important;
  border: 0.2vh solid #525252 !important;
  border: 0.2vh solid var(--border-color-1) !important;
  border-radius: 0.2vh !important;
  margin-bottom: 0.2vh !important;
  margin-top: 0.2vh !important;
}
.react_select__option {
  background: #0000 !important;
  color: #fff !important;
  color: var(--white) !important;
  cursor: pointer !important;
  font-size: 1.7vh !important;
  font-weight: 500 !important;
  padding: 0.5vh 1vh !important;
}
.react_select__option:hover {
  background: var(--blue_200) !important;
  color: #000 !important;
  color: var(--black) !important;
}
.react_select__option:active {
  background: var(--blue_300) !important;
  color: #fff !important;
  color: var(--white) !important;
}
.react_select__option--is-selected {
  background: var(--blue_200) !important;
  color: #fff !important;
  color: var(--white) !important;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .project_cardss .nftcard_detailwrapper.project-card__details {
    padding: 1.5vh 1vh !important;
  }
}
@media screen and (max-width: 991px) {
  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .market-grid .hc-card__nft-height.nft_card,
  .market-grid .nftcard_imgwrapper_sep {
    max-width: 27.7vw;
    min-width: 27.7vw;
    width: 27.7vw;
  }
  .market-grid .nftcard_imgwrapper_sep {
    height: 27.7vw;
    max-height: 27.7vw;
    min-height: 27.7vw;
  }
  .nft_card:hover {
    transform: none;
  }
  .nft_coinImg {
    margin-right: 1.4vw;
  }
  .content_bot {
    margin-top: -19vh;
  }
}
@media screen and (max-width: 767px) {
  .market-grid .hc-card__nft-height.nft_card,
  .market-grid .nftcard_imgwrapper_sep {
    max-width: 42vw;
    min-width: 42vw;
    width: 42vw;
  }
  .market-grid .nftcard_imgwrapper_sep {
    height: 42vw;
    max-height: 42vw;
    min-height: 42vw;
  }
  .market_bot {
    margin-top: -27vh;
  }
  .hc-swiper__arrow--left img,
  .hc-swiper__arrow--right img {
    height: 3.2vh;
    width: 3.2vh;
  }
  .hc-swiper__arrow--right {
    right: -5.5%;
  }
  .hc-swiper__arrow--left {
    left: -5%;
  }
  .hc-card__nft .projectcard_wrapper_sep {
    height: 15.5vh;
    max-height: 15.5vh;
    min-height: 15.5vh;
  }
  .cols {
    padding: 0 0.5vh;
  }
  .hc-card__nft .nftcard_detailwrapper {
    padding: 0.4vh 1vh 1.1vh;
  }
}
@media screen and (max-width: 575px) {
  .hc-nft__card-title {
    margin-bottom: 0.4vh !important;
    width: 17vh;
  }
  .mob_padding {
    padding: 0 2vh;
  }
  .select_bids .react_select__value-container {
    font-size: 1.8vh !important;
  }
  .select_bids .react_select__indicators {
    height: 4.6vh !important;
    width: 4.6vh !important;
  }
  .select_bids .react_select__control {
    height: 4.8vh !important;
    min-height: 4.8vh !important;
  }
  .hc-card__nft-height.nft_card .nftImg {
    height: 21vh;
  }
  .hc-nft__card-title {
    font-size: 1.8vh;
  }
  .mb_priceInp {
    min-width: 100%;
  }
  .floor_prize,
  .nft_coinname {
    font-size: 1.2vh;
  }
  .modal-body .duration .react_select__control {
    width: 100% !important;
  }
  .modal-dialog {
    margin: 2vh 2.6vh;
  }
}
.nftinfo_gradeientBtn {
  align-items: center;
  background-image: linear-gradient(90deg, #1042f3, #16ebc3);
  background-image: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  border: none;
  border-radius: 0.6vh;
  color: #fff;
  display: flex;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.9vh;
  font-weight: 700;
  justify-content: center;
  outline: none;
  padding: 0.9vh 1vh;
  width: 100%;
}
.nftinfo_gradeientBtn:hover {
  background-image: linear-gradient(90deg, #16ebc3, #1042f3);
  background-image: linear-gradient(
    to right,
    var(--gradinet_right),
    var(--gradinet_left)
  );
}
.nftInfo_topLeft.hc-info__left--image img {
  border-radius: 0.7vh;
  height: 35vh;
  max-height: 35vh;
  min-height: 35vh;
}
.nftInfo_img {
  border: 0.2vh solid gray;
  min-width: 35vh;
  object-fit: cover;
  width: 35vh;
}
.nftInfo_curPrice p,
.nftcard_ownedby {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 2.2vh;
  font-weight: 500;
}
.nft_ownerName {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-weight: 500;
}
.nftInfo_curPrice {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.hc-info__last-bid {
  background: #00000080;
  background: var(--bg-color-6);
  border: 0.3vh solid #16ebc3;
  border: 0.3vh solid var(--gradinet_right);
  border-radius: 1vh;
  margin-top: 2vh;
  padding: 2vh;
  width: 50vh;
}
.hc-info__last-bid--title,
.hc-info__last-bid--value {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-weight: 600;
  margin-bottom: 0;
}
.collection_top {
  margin-top: -38vh;
}
.nftInfo_iconsHolder,
.shareOptions_holder {
  align-items: center;
  display: flex;
  gap: 0.9vh;
  justify-content: flex-start;
}
.gap_3 {
  gap: 2vh;
}
.gap_4 {
  gap: 2.5vw;
}
.hc-info__last-bid--title {
  font-size: 2.4vh;
}
.hc-info__last-bid--value {
  font-size: 3vh;
}
.hc-info__name-title {
  font-size: 3.6vh;
}
.nftInfo_greenBar {
  align-items: center;
  background-color: #08080899;
  background-color: var(--bg-color-3);
  border: 0.2vh solid #16ebc3;
  border: 0.2vh solid var(--gradinet_right);
  border-radius: 0.9vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2.2vh;
  max-width: 42vh;
  padding: 1.3vh 1.3vh 2vh;
  width: fit-content;
}
.greenBar_left {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.greenBar_time {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 2.1vh;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
.greenBar_countdown {
  border: 0.2vh solid #16ebc3;
  border: 0.2vh solid var(--gradinet_right);
  min-width: 20vh;
  padding: 1vh 2vh;
}
.greenBar_countdown span {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 3.5vh;
  font-weight: 700;
  letter-spacing: 0.4vh;
  margin: 0;
  padding: 0;
}
.nftInfo_socials {
  cursor: pointer;
  height: 4vh;
  width: 4vh;
}
.gap_2 {
  gap: 1.5vw;
}
.hc-info__price-title {
  border-bottom: 1px solid #ffffffa8;
  border-bottom: 1px solid var(--border-color-2);
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 3vh;
  font-weight: 600;
  padding-bottom: 2vh;
}
.apexchart_label {
  font-weight: 500;
  font-weight: var(--weight_five);
  left: 50%;
  margin: 0;
  position: relative;
  text-align: center;
  text-orientation: mixed;
  top: 15%;
  transform: rotate(180deg);
  vertical-align: middle;
  width: 100%;
  writing-mode: vertical-rl;
}
.apexchart_label,
.nftInfo_curPrice span {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.7vh;
}
.apexcharts-text tspan {
  fill: #16ebc3 !important;
  font-family: inherit;
}
.nft_grid {
  display: flex;
  gap: 2vw;
}
.nftInfo_descTitle {
  font-size: 3vh;
  font-weight: 600;
}
.nftInfo_acrdTabs {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.9vw;
  justify-content: flex-start;
  margin-top: 2vh;
  overflow-x: auto;
  padding-bottom: 3vh;
}
.nftInfo_singleTab.active,
.nftInfo_singleTab:hover {
  background-color: #080808b2;
  background-color: var(--bg-color-2);
  border: 0.2vh solid #525252;
  border: 0.2vh solid var(--border-color-1);
}
.nftInfo_singleTab.active p,
.nftInfo_singleTab:hover p {
  color: #fff;
  color: var(--white);
}
.nftInfo_singleTab p {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 2vh;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}
.nftInfo_singleTab {
  align-items: center;
  background-color: initial;
  border: 0.2vh solid #0000;
  border-radius: 0.5vh;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 0.7vh 2.2vh;
}
.nftInfo_singleTab.active {
  background-color: #080808b2;
  background-color: var(--bg-color-2);
  border: 0.2vh solid #525252;
  border: 0.2vh solid var(--border-color-1);
}
.hc-infoInfo__tabs,
.hc-nftInfo__table {
  border-bottom: 0.2vh solid #ffffffa8;
  border-bottom: 0.2vh solid var(--border-color-2);
}
.nftInfo_table table {
  --bs-table-bg: #0000 !important;
  background-color: initial !important;
  background: #0000 !important;
  line-height: 5vh;
  margin: 2vh 0;
}
.nftInfo_table.hc-nftInfo__table table thead tr th {
  border: none !important;
}
.nftInfo_table table thead tr th {
  border-color: gray !important;
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 2.3vh;
  font-weight: 600;
  max-width: 20%;
  min-width: 20%;
  white-space: nowrap;
}
.heightsets {
  height: 50vh;
}
.fa-circle-play {
  font-size: 2vh;
}
.mp_likeshare img {
  height: 3.6vh;
  width: 3.6vh;
}
.table > :not(caption) > * > * {
  padding: 0.9vh 3vh !important;
}
.table > :not(caption) > * > :first-child {
  padding: 0.9vh 1vh !important;
}
.nftInfo_table table tbody tr td {
  background-color: initial;
  border-color: #0000 !important;
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.9vh;
  font-weight: 500;
  max-width: 20%;
  min-width: 20%;
  white-space: nowrap;
}
.pt_2 {
  padding-top: 3vh;
}
.pt_3 {
  padding-top: 5vh;
}
.pt_4 {
  padding-top: 7vh;
}
@media screen and (max-width: 767px) {
  .pt_4 {
    padding-top: 2vh;
  }
  .nftinfo_gradeientBtn {
    font-size: 1.6vh;
    padding: 0.7vh 1vh;
  }
  .nftInfo_topLeft.hc-info__left--image img {
    height: 21vh;
    max-height: 21vh;
    min-height: 21vh;
  }
  .nft_grid {
    gap: 2.8vw;
  }
  .nftInfo_img,
  .nftinfo_gradeientBtn,
  .nftinfo_gradeientBtn.pendingrewards {
    min-width: 21vh;
    width: 21vh;
  }
  .hc-info__name-title {
    font-size: 2.6vh;
  }
  .nftInfo_socials {
    height: 3.4vh;
    width: 3.4vh;
  }
  .nftInfo_curPrice p,
  .nftcard_ownedby {
    font-size: 1.7vh;
  }
  .nftInfo_greenBar {
    max-width: 100%;
  }
  .greenBar_time {
    font-size: 2.2vh;
  }
}
@media screen and (max-width: 575px) {
  .common_modal .modal-content {
    padding: 0.9vh !important;
  }
  .nftInfo_table table thead tr th {
    font-size: 2vh;
    font-weight: 500;
  }
  .nftInfo_acrdTabs {
    padding-bottom: 2vh;
  }
  .nftInfo_table table tbody tr td {
    font-size: 1.8vh;
    font-weight: 400;
  }
  .pt_3 {
    padding-top: 1vh;
  }
  .nftInfo_singleTab p {
    font-size: 1.8vh;
  }
  .hc-infoInfo__tabs,
  .hc-nftInfo__table {
    border-bottom: 0.2vh solid #0000;
  }
  .hc-info__last-bid {
    width: 40vh;
  }
  .nftInfo_socials {
    height: 3vh;
    width: 3vh;
  }
  .nftInfo_iconsHolder,
  .shareOptions_holder {
    gap: 0.5vh;
  }
}
.hc-modal.common_modal .modal-content {
  border-color: #16ebc3;
  border-color: var(--gradinet_right);
  border-width: 0.3vh;
  padding: 0;
}
.common_modal .modal-content {
  background-color: #000000b5;
  border: 0.3vh solid #16ebc3;
  border: 0.3vh solid var(--gradinet_right);
  padding: 1.5vh;
}
.calendar_opacity .modal-content {
  background-color: #000;
}
.hc-modal.common_modal .modal_title {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 2vh;
  font-weight: 600;
}
.modal-body {
  padding: 2.5vh 2vh;
}
.modal_top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.modal-body .react_select__single-value {
  font-size: 1.7vh;
  font-weight: 600;
}
.hc-modal.common_modal .modal_summaryLabel {
  font-size: var(--modal-text);
  font-weight: 600;
}
.hc-modal.common_modal .modal_summaryLabel,
.modal_summaryLabel {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
}
.modal_summaryLabel {
  color: #fff !important;
  color: var(--white) !important;
  font-size: 1.8vh;
  font-weight: 500;
}
.bidmodal_summary,
.modal_inputGroup {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.modal_inputGroup {
  background-color: #1d1d1d4f;
  background-color: var(--stepcard_bg);
  border: 0.3vh solid #16ebc3;
  border: 0.3vh solid var(--gradinet_right);
  border-radius: 0.4vh;
  padding: 0 1.5vh 0 0.5vh;
}
.modal_input,
.modal_input::placeholder {
  color: #fff;
  color: var(--white);
}
.modal_input {
  background-color: initial;
  border: none;
  flex: 1 1;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.6vh;
  font-weight: 400;
  font-weight: 600;
  max-width: 12vh;
  outline: none;
  padding: 1vh 0.5vh;
}
.modal_input.fixed_width {
  max-width: 100%;
}
.modal_input.min_width {
  max-width: 9vh;
}
.modal_title {
  color: #fff;
  color: var(--white);
  flex: 1 1;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.8vh;
  font-weight: 700;
  margin: 0;
}
.modal_closer {
  cursor: pointer;
  height: 1.8vh;
  object-fit: contain;
  position: relative;
  width: 1.8vh;
}
.bodygradientBtn {
  background-image: linear-gradient(90deg, #1042f3, #16ebc3);
  background-image: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  overflow: hidden;
  position: relative;
  width: fit-content;
}
.bodygradientBtn,
.hc-button__gray {
  border: none;
  border-radius: 0.6vh;
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.8vh;
  font-weight: 700;
  outline: none;
  padding: 1vh 3vh;
}
.hc-button__gray {
  background-color: #5a5a5a;
  background-color: var(--bg-color-4);
  font-style: normal;
  width: 100%;
}
.blogInfo_inplabel,
.blogInfo_input {
  font-weight: 600;
}
.blogInfo_inplabel {
  color: #fff;
  color: var(--white);
  font-size: 1.8vh;
}
.modal_grdientBtn.bodygradientBtn {
  padding: 1vh 3vh;
  width: 100%;
}
.bodygradientBtn:hover {
  background-image: linear-gradient(90deg, #16ebc3, #1042f3);
  background-image: linear-gradient(
    to right,
    var(--gradinet_right),
    var(--gradinet_left)
  );
}
.hc-button__gray:hover {
  opacity: 0.8;
}
.hc-modal.common_modal .modal_summaryValue {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-size: var(--modal-text);
  font-weight: 600;
}
.cancel_salePrice,
.hc-modal.common_modal .modal_summaryValue {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  margin: 0;
}
.cancel_salePrice {
  color: #fff;
  color: var(--white);
  font-size: 1.7vh;
}
.cancelSale,
.cancel_salePrice {
  font-weight: 600;
}
.modal_summaryValue {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.7vh;
  font-weight: 600;
  margin: 0;
}
.modal_listitem_tab {
  align-items: center;
  display: flex;
  gap: 2vh;
  justify-content: flex-start;
}
.modal_listitem_tabsingle.active {
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
}
.modal_listitem_tabsingle {
  background-color: #5a5a5a;
  background-color: var(--bg-color-4);
  border-radius: 0.6vh;
  color: #fff;
  color: var(--white);
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.6vh;
  font-weight: 600;
  margin: 0;
  padding: 0.9vh 2vh;
}
.cp_nftimage_holder {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cp_nftImage {
  border-radius: 0.8vh;
  height: 16vh;
  object-fit: cover;
  width: 16vh;
}
.hc-modal.common_modal .modal_singleinput {
  border-color: #16ebc3;
  border-color: var(--gradinet_right);
  border-width: 0.3vh;
  font-weight: 500;
}
.kyc_phoneInput input:focus,
.modal_singleinput:focus {
  outline: none !important;
}
.modal_singleinput {
  background-color: initial;
  border: 0.3vh solid #16ebc3;
  border: 0.3vh solid var(--gradinet_right);
  border-radius: 0.5vh;
  color: #fff;
  color: var(--white);
  font-size: 1.6vh;
  font-weight: 500;
  padding: 0.9vh 1.2vh;
  width: 100%;
}
.hc-modal.common_modal .cp_nftName,
.modal_singleinput {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
}
.hc-modal.common_modal .cp_nftName {
  font-size: 2vh;
  font-weight: 600;
}
.rdtPicker td,
.rdtPicker th {
  font-size: 1.8vh;
  height: 4vh !important;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 3vh !important;
}
.rdtPicker th.rdtSwitch {
  width: 10vh !important;
}
.modal_body .rdtPicker {
  margin-top: 0.2vh !important;
  min-width: 30vh !important;
  padding: 0.6vh !important;
}
.rdtCounter .rdtBtn {
  line-height: 5vh !important;
}
.rdtCounter .rdtCount {
  font-size: 2vh !important;
}
.rdtCounter {
  height: 12vh !important;
  width: 5vh !important;
}
.rdtCounterSeparator {
  line-height: 12vh !important;
}
.rdt.rdtOpen input {
  display: none;
}
.rdtPicker tfoot,
.rdtPicker th {
  border: none !important;
}
.modal_body .rdtPicker table .rdtDay {
  padding: 0.8vh;
}
.modal_body .rdtPicker .dow,
.modal_body .rdtPicker .rdtSwitch,
.modal_body .rdtPicker .rdtTimeToggle,
.modal_body .rdtPicker table .rdtDay {
  color: #fff;
  color: var(--white);
}
.modal_body .rdtPicker .rdtTimeToggle:hover {
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
  color: #000;
  color: var(--black);
  padding: 0.4vh;
}
.modal_body .rdtBtn:hover,
.modal_body .rdtPicker .rdtNext:hover,
.modal_body .rdtPicker .rdtPrev:hover,
.modal_body .rdtPicker .rdtSwitch:hover,
.modal_body .rdtPicker table .rdtDay:hover {
  background-color: #16ebc3 !important;
  background-color: var(--gradinet_right) !important;
  color: #000 !important;
  color: var(--black) !important;
}
.modal_body .rdtPicker {
  background-color: initial;
  border: none;
  position: relative;
  width: 100%;
}
.modal_body .rdt.rdtOpen input.form-control {
  background-color: #1d1d1d4f;
  background-color: var(--stepcard_bg);
  border: 1px solid #bebebe99;
  border: 1px solid var(--stepcard_border);
  border-radius: 5px;
  box-shadow: none !important;
  color: #fff;
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-family: var(--poppins);
  font-size: 13px;
  font-size: var(--font_thirteen);
  font-weight: 400;
  font-weight: var(--weight_four);
  padding: 8px 10px;
  width: 100%;
}
.react_select__control:hover {
  border-color: #16ebc3 !important;
}
@media screen and (max-width: 991px) {
  .kycactivates .modal-content {
    height: 65vh;
    overflow-y: auto;
  }
  .paymentmodal .modal-content {
    height: fit-content;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 80vh !important;
  }
}
.checkoutmodal .modal-body {
  padding: 2.5vh;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 50vh;
  }
  .checkoutmodal .modal-dialog {
    max-width: 48vh;
  }
}
@media screen and (max-width: 575px) {
  .modal_listitem_tabsingle {
    padding: 0.9vh 3.5vh;
  }
  .modal_inputGroup.duration {
    display: block;
  }
}
.contact_container {
  margin: auto;
  max-width: var(--container-width-main);
}
.blogINfo_usercomment {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 2vh;
  font-weight: 500;
  margin: 0;
}
.profile_dtlswhole {
  display: flex;
  gap: 2vh;
  justify-content: flex-start;
}
.profile_imgDtls {
  border-radius: 0.6vh;
  box-shadow: 15px 14px 32.1px -10px #fff3;
  height: 25vh;
  overflow: hidden;
  position: relative;
  width: 25vh;
}
.profile_img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.editprofile_input {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.profile_editBtn {
  background-color: #ffffff38;
  border: 0.2vh solid #fff;
  border: 0.2vh solid var(--white);
  border-radius: 0.5vh;
  bottom: 2%;
  color: #fff;
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-family: var(--poppins);
  font-size: 1.5vh;
  font-weight: 400;
  font-weight: var(--weight_four);
  left: 2%;
  outline: none;
  padding: 0.4vh 0.8vh;
  position: absolute;
}
.hc-profile__title,
.profile_name {
  font-size: 2.2vh;
}
.hc-profile__title,
.hc-profile__wrapper-border {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-weight: 600;
}
.hc-profile__title {
  color: #16ebc3;
  color: var(--gradinet_right);
}
.profile_joinDate {
  color: #89868c !important;
  color: var(--placeholder_color) !important;
  font-size: 1.8vh;
}
.profile_joinDate,
.profile_name,
.small_dollar {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-weight: 600;
}
.profile_name,
.small_dollar {
  color: #fff;
  color: var(--white);
  margin: 0;
}
.ms_2 {
  margin-left: 0.8vh;
}
.hc-profile__wrapper-border {
  border: 0.3vh solid #16ebc3;
  border: 0.3vh solid var(--gradinet_right);
  color: #fff;
  color: var(--white);
  font-size: 1.6vh;
  max-width: 26vh;
  min-width: 26vh;
  padding-bottom: 0.5vh;
  padding-top: 0.5vh;
  text-align: center;
  width: 26vh;
}
.hc-profile__wrapper-border.refercodes {
  max-width: 16vh;
  min-width: 16vh;
  width: 16vh;
}
.kyc_activated {
  align-items: center;
  border: 0.3vh solid #f84a4a;
  border: 0.3vh solid var(--text-color-1);
  border-radius: 0;
  cursor: pointer;
  display: flex;
  gap: 1.5vh;
  justify-content: center;
  padding: 1vh 2vh;
  width: fit-content;
}
.orange {
  border: 0.3vh solid #ff7e07 !important;
}
.kyc_activated.greenkyc {
  border: 2px solid #00da09 !important;
}
.actiate_hint.kyc_activated.greenkyc p,
.kyc_activated.greenkyc p {
  color: #00da09 !important;
}
.kyc_activated.actiate_hint p {
  color: #f84a4a !important;
}
.kyc_activated p {
  color: green;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.8vh;
  font-weight: 600;
}
.actiate_hint.kyc_activated.orange p {
  color: #ff7e07 !important;
}
.copyiconimg {
  width: 3.4vh;
}
.gap_1 {
  gap: 1vh;
}
.pro_valuecount,
.secondary_row {
  align-items: center;
  display: flex;
  gap: 2vh;
  justify-content: flex-start;
}
.paymentbtnsec {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
}
.paymentbtnsec .bnbbtn {
  background: #767676;
  border: 0.4vh solid #939393;
}
.paymentbtnsec .bnbbtn,
.paymentbtnsec .usdtbtn {
  color: #fff;
  font-size: 1.8vh;
  font-weight: 600;
  padding: 1vh;
  white-space: nowrap;
  width: 18vh;
}
.paymentbtnsec .usdtbtn {
  background: #0c3d64;
  border: 0.4vh solid #125790;
}
.refbtnsec {
  margin-top: 2vh;
}
.refbtnsec .refbtn {
  align-items: center;
  background: #27a17c;
  border: 0.4vh solid #16ebc3;
  color: #fff;
  display: flex;
  font-size: 1.8vh;
  font-weight: 600;
  justify-content: center;
  padding: 1vh;
  text-decoration: none;
  white-space: nowrap;
  width: 18vh;
}
.profile_coinnameimg {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.hc-proile__border-top {
  border-top: 0.2vh solid #ffffff54;
  padding: 2.2vh 0;
}
.nft_coinImg {
  height: 2.5vh;
  margin-right: 1vh;
  width: 2.5vh;
}
.profile_balance {
  color: #fff;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 2vh;
  font-weight: 600;
  margin: 0;
}
.nftcounter_value {
  color: #16ebc3;
  color: var(--gradinet_right);
  margin: 0;
}
.gap_set {
  display: flex;
  gap: 6vh;
}
.vert_line {
  background-color: #fff;
  background-color: var(--white);
  height: 11vh;
  width: 0.1vh;
}
.hc-profile__text-xs {
  color: #9a9a9a;
  color: var(--text-color-2);
  font-size: 1.1vh;
  margin-bottom: 0;
  margin-top: 0.4vh;
}
.hc-profile__text-xs,
.profile_greentTxt {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-weight: 600;
}
.profile_greentTxt {
  color: #16ebc3;
  color: var(--gradinet_right);
  font-size: 2vh;
  margin: 0;
}
.small_dollar {
  font-size: 2vh;
}
.counterslist {
  align-items: center;
  display: flex;
  gap: 4vh;
}
.profile_counter.stack_nftcounter {
  justify-content: flex-start;
}
.stack_nftcounter {
  align-items: center;
  border: 0.3vh solid #16ebc3;
  border: 0.3vh solid var(--gradinet_right);
  border-radius: 0;
  display: flex;
  justify-content: center;
  padding: 0.8vh 1vh;
  width: 32vh;
}
.stack_nftcounter.lasttotal {
  width: 38vh;
}
.nftcounter_lable,
.nftcounter_value {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.8vh;
  font-weight: 600;
}
.nftcounter_lable {
  color: #fff;
  color: var(--white);
  margin: 0 1vh 0 0;
}
.top_reltabimg {
  height: 2.4vh;
  margin-right: 1vh;
  width: 2.4vh;
}
.profile_top {
  margin-top: -3vh;
}
.kyc_phoneInput input,
.react-select-2__placeholder {
  color: #fff;
  color: var(--white);
}
.kyc_phoneInput input {
  background-color: initial;
  border: 0.3vh solid #16ebc3;
  border: 0.3vh solid var(--gradinet_right);
  border-radius: 5px;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.6vh;
  font-weight: 600;
  padding: 1vh 0.8vh;
  width: 100%;
}
.modal-body .nations .react_select__control {
  width: 100% !important;
}
.modal-body .nations .react_select__value-container {
  height: 4.8vh !important;
}
.kyc_flex {
  align-items: flex-end;
  display: flex;
  gap: 2vh;
  justify-content: flex-start;
}
.kyc_imagewrapper {
  background-color: initial;
  border: 0.2vh solid #16ebc3;
  border: 0.2vh solid var(--gradinet_right);
  border-radius: 0.5vh;
  cursor: pointer !important;
  height: 5vh;
  justify-content: center;
  position: relative;
  width: 5vh;
}
.kyc_imagewrapper,
.kyc_poptop {
  align-items: center;
  display: flex;
}
.customed_img {
  border-radius: 0.5vh;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
}
.kyc_fileInput {
  cursor: pointer !important;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.hc-kyc__modal-p p {
  color: #fff;
  color: var(--white);
  font-size: 1.7vh;
  font-weight: 500;
  margin-bottom: 2vh !important;
}
.mr_accept {
  margin-left: 1vh;
  margin-top: -0.2vh;
}
.referral_report .back_btn {
  color: #fff;
  font-size: 2vh;
  text-decoration: none;
}
.referral_report .banner_section {
  padding-top: 17vh;
}
.referral_report .head_section {
  margin-top: 2vh;
  text-align: center;
}
.referral_report .head_section .head_txt {
  font-size: 4vh;
  font-weight: 700;
  text-align: center;
}
.referral_report .head_section .daterangesec {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 4vh;
}
.referral_report .head_section .daterangesec .gapsec {
  height: 3vh;
  width: 3vh;
}
.referral_report .head_section .nftinfo_gradeientBtn {
  font-weight: 600;
  padding: 0.7vh 4vh;
  width: fit-content;
}
.referral_report .head_section .submit_btnsec {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 4vh;
}
.referral_report .head_section .daterangesec input {
  background: #0000;
  border: 0.3vh solid #16ebc3;
  border-radius: 0.5vh;
  color: #fff;
  font-size: 2.5vh;
  font-weight: 600;
  padding: 1vh 4vh;
  width: 100%;
}
.referral_report .head_section .react-datepicker-ignore-onclickoutside {
  background: #0000;
  border: 0.3vh solid #16ebc3;
  border-radius: 0.5vh;
  color: #fff;
  font-size: 2.5vh;
  font-weight: 600;
  outline: 0;
  padding: 1vh 4vh;
}
.referral_report .tablesec .tablesec_head {
  font-size: 3vh;
  font-weight: 600;
  margin-top: 5vh;
  text-align: center;
}
.referral_report .hc-nftInfo__table table thead tr {
  border-bottom: 0.15vh solid #ffffffa8;
  border-top: 0.15vh solid #ffffffa8;
}
.referral_report .nftInfo_table.hc-nftInfo__table table thead tr th {
  color: #16ebc3 !important;
}
.referral_report .nftInfo_table table tbody tr td {
  font-size: 2vh;
}
.referral_report .nftInfo_table table thead tr th {
  font-size: 2.3vh;
}
.referral_report .daterangesec .react-datepicker {
  background: #080808f0;
  border: 0.1vh solid #525252;
  font-size: 2vh;
}
.referral_report .daterangesec .react-datepicker-time__header,
.referral_report .daterangesec .react-datepicker-year-header,
.referral_report .daterangesec .react-datepicker__current-month {
  color: #fff !important;
  font-size: 1.9vh;
  font-weight: 600 !important;
}
.referral_report .react-datepicker__header {
  background: #080808f0;
  padding: 0.5vh 0 !important;
}
.referral_report .react-datepicker__month {
  margin: 1vh !important;
}
.referral_report .react-datepicker__day,
.referral_report .react-datepicker__day-name,
.referral_report .react-datepicker__time-name {
  color: #fff !important;
  line-height: 4vh !important;
  margin: 0.3vh !important;
  text-align: center !important;
  width: 4vh !important;
}
.referral_report .react-datepicker__navigation {
  height: 4vh !important;
  width: 4vh !important;
}
.referral_report .react-datepicker__navigation-icon {
  font-size: 3vh !important;
}
.referral_report .react-datepicker__day--in-range,
.referral_report .react-datepicker__day--in-selecting-range,
.referral_report .react-datepicker__day--keyboard-selected,
.referral_report .react-datepicker__day--selected,
.referral_report .react-datepicker__day:not([aria-disabled="true"]):hover,
.referral_report .react-datepicker__month-text--in-range,
.referral_report .react-datepicker__month-text--in-selecting-range,
.referral_report .react-datepicker__month-text--keyboard-selected,
.referral_report .react-datepicker__month-text--selected,
.referral_report
  .react-datepicker__month-text:not([aria-disabled="true"]):hover,
.referral_report .react-datepicker__quarter-text--in-range,
.referral_report .react-datepicker__quarter-text--in-selecting-range,
.referral_report .react-datepicker__quarter-text--keyboard-selected,
.referral_report .react-datepicker__quarter-text--selected,
.referral_report
  .react-datepicker__quarter-text:not([aria-disabled="true"]):hover,
.referral_report .react-datepicker__year-text--in-range,
.referral_report .react-datepicker__year-text--in-selecting-range,
.referral_report .react-datepicker__year-text--keyboard-selected,
.referral_report .react-datepicker__year-text--selected,
.referral_report
  .react-datepicker__year-text:not([aria-disabled="true"]):hover {
  background: #16ebc3 !important;
  font-weight: 600 !important;
}
.referral_report
  .react-datepicker-popper[data-placement^="bottom"]
  .react-datepicker__triangle {
  fill: #080808b2;
  stroke: #080808b2;
  color: #080808b2;
}
.referral_report .daterange_input {
  position: relative;
}
.referral_report .daterange_input .angledown {
  height: 2vh;
  position: absolute;
  right: 1vh;
  top: 2vh;
  width: 3vh;
}
@media screen and (max-width: 1199px) {
  .counterslist {
    gap: 3vh;
  }
  .referral_report .head_section .daterangesec {
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .gap_set {
    gap: 3vh;
  }
  .counterslist {
    gap: 2vh;
  }
  .profile_counter {
    width: fit-content;
  }
  .profile_top {
    margin-top: -20vh;
  }
}
@media screen and (max-width: 767px) {
  .gap_set {
    flex-wrap: wrap;
    gap: 3vh;
  }
  .profile_top {
    margin-top: -4vh;
  }
  .counterslist {
    flex-wrap: wrap;
    gap: 1.8vh 1vh;
  }
  .profile_counter {
    width: fit-content;
  }
  .hc-proile__border-top.balancecheck {
    display: block;
  }
  .sub_flex {
    display: flex;
    gap: 2.5vh 2.4vh;
    margin-top: 2vh;
  }
  .hc-profile__wrapper-border {
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }
  .gap_set {
    gap: 2vh 1.4vh;
    margin-top: 2.5vh;
  }
  .profile_imgDtls {
    height: 22vh;
    width: 32vh;
  }
  .profile_dtlswhole {
    gap: 1.8vh;
  }
  .copyiconimg {
    width: 2.5vh;
  }
  .copyiconimg.copy1 {
    width: 3.9vh;
  }
}
@media screen and (max-width: 575px) {
  .stack_nftcounter {
    padding: 0.8vh;
  }
  .nft_coinImg {
    height: 2.1vh;
    width: 2.1vh;
  }
  .profile_balance,
  .profile_greentTxt,
  .small_dollar {
    font-size: 1.8vh;
  }
  .pro_valuecount {
    gap: 1.2vh;
  }
  .vert_line.vert_line1 {
    display: none;
  }
  .profile_top {
    margin-top: -5vh;
  }
  .gap_set {
    gap: 2vh 1.4vh;
    margin-top: 2.5vh;
  }
  .profile_joinDate {
    font-size: 1.7vh;
  }
  .hc-profile__title {
    font-size: 2vh;
  }
  .profile_name {
    font-size: 1.7vh;
  }
  .kyc_activated {
    padding: 1vh 0.7vh;
  }
  .kyc_activated p {
    font-size: 1.6vh;
  }
  .referral_report .head_section .head_txt {
    font-size: 3vh;
  }
}
.blogInfo_placecomment {
  background-color: #1d1d1d4f;
  background-color: var(--stepcard_bg);
  border-radius: 1vh;
  padding: 3vh 3vh 1vh;
}
.blogInfo_inplabel,
.blogInfo_input {
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-weight: 400;
}
.blogInfo_inplabel {
  color: #6b6b6b;
  color: var(--input_label);
  font-size: 1.7vh;
  margin: 0;
}
.blogInfo_input,
.blogInfo_textarea {
  background-color: initial;
  border: none;
  border-bottom: 0.2vh solid #707070;
  border-bottom: 0.2vh solid var(--input_bottomborder);
  color: #fff;
  color: var(--white);
  font-size: 1.6vh;
  outline: none;
  padding: 0.6vh 0;
  width: 100%;
}
.contact_bluebe {
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
  border-radius: 0.8vh;
  padding: 1vh 1.5vh !important;
}
.contact_blackText {
  color: #040403;
  color: var(--contact_black);
  font-family: Kanit, sans-serif;
  font-family: var(--helonika_font);
  font-size: 1.8vh;
  font-weight: 500;
  margin: 0;
}
.contact_mailDtl,
.contact_socialwrapper {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.contact_mailDtl {
  gap: 1vh;
}
.contact_socialAll {
  display: flex;
  justify-content: flex-end;
}
.contact_socialwrapper {
  gap: 1.6vh;
}
.contact_blckmail {
  height: 2vh;
  object-fit: contain;
  width: 2vh;
}
.contact_blckmail:hover {
  filter: invert(1);
}
.px_0 {
  padding-left: 1.5vh !important;
  padding-right: 1.5vh !important;
}
.contact_mailadd {
  color: #040403;
  color: var(--contact_black);
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.6vh;
  font-weight: 400;
  font-weight: var(--weight_four);
  margin: 0;
}
@media screen and (max-width: 575px) {
  .contact_bluemobcen {
    display: flex;
    justify-content: center;
  }
  .socialtext {
    margin-top: 2vh;
  }
  .blogInfo_placecomment {
    padding: 3vh 1vh 1vh;
  }
  .contact_container {
    margin-top: 10vh;
  }
}
.loaderss {
  animation: rotation 1s linear infinite;
  box-sizing: border-box;
  color: #fff;
  display: block;
  height: 4vh;
  margin: 15px auto;
  position: relative;
  width: 4vh;
}
.loaderss:after,
.loaderss:before {
  animation: animloader 1s ease-in-out infinite;
  background-color: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  height: 3vh;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: scale(0.5) translate(0);
  width: 3vh;
}
.loaderss:before {
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
  transform: scale(0.5) translate(-4vh, -4vh);
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes animloader {
  50% {
    transform: scale(1) translate(-50%, -50%);
  }
}
.nftwidth {
  width: 100%;
}
.whteee {
  height: 100%;
  padding-left: 1vw;
  padding-right: 1vw;
  width: 19vw;
}
.primary_blueBtn_sm {
  align-items: center;
  background-color: #16ebc3;
  background-color: var(--gradinet_right);
  border: none;
  border-radius: 0.5vh;
  color: #000;
  color: var(--black);
  display: flex;
  font-family: Montserrat, sans-serif;
  font-family: var(--montserrat-font);
  font-size: 1.65vh;
  font-weight: 600;
  gap: 0.5vw;
  outline: none;
  padding: 1vh 2vh;
}
.primary_blueBtn_sm p {
  line-height: 1vw;
}
.primary_blueBtn_sm svg {
  font-size: 1vw;
}
.primary_blueBtn_sm:hover {
  background-image: linear-gradient(90deg, #1042f3, #16ebc3);
  background-image: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  color: #fff;
  color: var(--white);
}
@media screen and (max-width: 1199px) {
  .whteee {
    height: 100%;
    padding-left: 1.8vw;
    padding-right: 1.8vw;
    width: 32vw;
  }
}
@media screen and (max-width: 991px) {
  .whteee {
    height: 100%;
    padding-left: 2vw;
    padding-right: 2vw;
    width: 45vw;
  }
}
@media screen and (max-width: 575px) {
  .whteee {
    height: 100%;
    padding-left: 1.2vw;
    padding-right: 1.2vw;
    width: 46vw;
  }
}
.mp_accord_holder {
  padding: 0.8vh 2.3vh 2.3vh;
}
.col-pads__right {
  padding-left: 0 !important;
  padding-right: 1vh !important;
}
.col-pads__left {
  padding-left: 1vh !important;
  padding-right: 0 !important;
}
#transakRoot {
  z-index: 1000000 !important;
}
@media screen and (max-width: 1199px) {
  #transakModal {
    height: 80% !important;
    width: 80% !important;
  }
  .primary_blueBtn_sm {
    font-size: 1.5vh;
    gap: 1vh;
    padding: 1vh 2vh;
  }
  .primary_blueBtn_sm p {
    line-height: 1.5vh;
  }
  .primary_blueBtn_sm svg {
    font-size: 1.6vh;
  }
}
@media (max-width: 430px) {
  .primary_blueBtn_sm {
    font-size: 3vw;
    gap: 2vw;
    padding: 2.5vw 4vw;
  }
  .primary_blueBtn_sm p {
    line-height: 3vw;
  }
  .primary_blueBtn_sm svg {
    font-size: 3vw;
  }
}
.is_banner_section.banner_section {
  padding-top: 34.1vh;
}
.mp_inner--bottom {
  margin-top: -30vh;
  position: relative;
  z-index: 6;
}
.mp_bottom--title {
  font-weight: 700;
  padding-bottom: 5vh;
  padding-top: 5vh;
  text-align: center;
}
.inner-container__width {
  margin-left: auto;
  margin-right: calc((100% - var(--container-width-main)) / 2);
  width: 76%;
}
.mp-grid {
  grid-column-gap: 2vw;
  grid-row-gap: 3vw;
  column-gap: 2vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 3vw;
}
.mp-grid .red {
  background: red;
  height: 300px;
}
.mp-grid .gree {
  background: green;
  height: 300px;
}
.mp-grid .yello {
  background: #ff0;
  height: 300px;
}
.mp-grid .blue {
  background: blue;
  height: 300px;
}
.red_inner {
  background: #fff;
  height: 30vh;
  max-width: 18.6vw;
  min-width: 18.6vw;
  width: 18.6vw;
}
.nft-card {
  border-radius: 0.4vw;
  max-width: 17.5vw;
  min-width: 17.5vw;
  overflow: hidden;
  width: 17.5vw;
}
.nft-card:hover {
  transform: translateY(-2vh);
  transition: all 0.5s ease;
}
.nft-card__a {
  height: 12vw;
  max-height: 12vw;
  max-width: 17.5vw;
  min-height: 12vw;
  min-width: 17.5vw;
  width: 17.5vw;
}
.nft-card__a img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.nft-card__content {
  background: var(--gray_200);
  border-top-left-radius: 0.3vw;
  border-top-right-radius: 0.3vw;
  padding: 0 0.8vw 0.8vw;
  position: relative;
  z-index: 2;
}
.nft-card__content:after {
  background: var(--gradinet_right);
  border-top-left-radius: 0.6vh;
  border-top-right-radius: 0.6vh;
  top: -1vh;
  z-index: 1;
}
.nft-card__content:after,
.nft-card__content:before {
  content: "";
  height: 1vh;
  left: 0;
  position: absolute;
  width: 100%;
}
.nft-card__content:before {
  background: var(--bg-color-1);
  border-top-left-radius: 0.5vh;
  border-top-right-radius: 0.5vh;
  top: -0.5vh;
  z-index: 2;
}
.nft-card__content-title {
  color: var(--white);
  font-size: 2.7vh;
  font-size: 1.35vw;
  font-weight: 600;
  line-height: 1.8vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 16vw;
}
.nft-card__content-currency,
.nft-card__values-wrapper {
  margin-top: 1vh;
}
.nft-card__content-values {
  font-size: 0.8vw;
  font-weight: 500;
}
.nft-card__content-values span {
  color: var(--blue_200);
}
.nft-card__content-buttons {
  margin-top: 1.4vh;
}
.nft-card__buttons--countdown {
  align-items: center;
  background: #0000;
  border: 0.3vh solid var(--blue_200);
  border-radius: 0.3vw;
  color: var(--blue_200);
  display: flex;
  font-family: var(--kanit_font);
  height: 4.1vh;
  justify-content: center;
  outline: none;
  padding: 0.5vh 1vw;
  width: 100%;
}
.nft-card__buttons--countdown:hover {
  background: var(--blue_200);
  border: 0.3vh solid var(--blue_200);
  color: var(--black);
}
.nft-card__buttons--countdown span {
  font-family: var(--kanit_font);
  font-size: 2vh;
}
.nft-card__buttons--gradient {
  background-color: var(--gradinet_right);
  background-image: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  border: none;
  border-radius: 0.6vh;
  color: var(--white);
  display: flex;
  font-family: var(--montserrat-font);
  font-size: 1.6vh;
  font-weight: 600;
  height: 4.1vh;
  outline: none;
  width: 100%;
}
.nft-card__buttons--gradient:hover {
  background-color: var(--gradinet_left);
  background-image: linear-gradient(
    to right,
    var(--gradinet_right),
    var(--gradinet_left)
  );
}
.nft-card__buttons--gradient p {
  display: flex;
  flex: 1 1;
  font-size: 0.8vw;
  justify-content: center;
  padding: 1vh;
  text-align: center;
}
.nft-card__buttons-gradientCart {
  align-items: center;
  border-left: 1px solid var(--white);
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 1vh 2vh;
}
.nft-card__buttons-gradientCart img {
  width: 2vh;
}
.nft-card__noData {
  font-size: 2vh;
  text-align: center;
}
.mp-margin {
  margin-bottom: 6vh;
  margin-top: 6vh;
}
.button-loadMore {
  background: #0000;
  border: 0.3vh solid var(--white);
  border-radius: 0.3vh;
  border-radius: 0.6vh;
  color: var(--white);
  font-size: 2.1vh;
  font-weight: 600;
  outline: none;
  padding: 0.8vh 2vh;
  transition: all 0.3s;
}
.button-loadMore:hover {
  background: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  border: 0.3vh solid #0000;
  border-left: 1px solid #4449e5;
  color: var(--white);
}
.anim_div.is-banner__lottie div[aria-label="animation"] {
  height: 50vh !important;
  margin-top: -11vh !important;
  max-height: 50vh !important;
  max-width: 50vh !important;
  min-height: 50vh !important;
  min-width: 50vh !important;
  width: 50vh !important;
}
.hc-mint__banner {
  height: 100vh;
  margin-top: 8vh;
  min-height: 100vh;
  position: relative;
}
.hc-mint__banner-image {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.hc-mint__banner:after {
  background: url(/static/media/linear-bg.66f4b680c13d39f0ddd3.png);
  background-size: 100% 100%;
  bottom: 0;
  content: "";
  height: 40vh;
  left: 0;
  position: absolute;
  width: 100%;
}
.hc-mint__banner-content {
  bottom: 3vh;
  position: absolute;
  z-index: 2;
}
.hc-mint__bannerInner-col--left .cus-back-btn button {
  color: var(--black);
  font-family: var(--montserrat-font);
}
.cus-back-btn button {
  align-items: center;
  background: #0000 !important;
  border: none;
  box-shadow: none !important;
  display: flex;
  font-size: 2.3vh;
  font-weight: 500;
  gap: 1vh;
  outline: none;
}
.hc-mint__banner--wrapper {
  border-radius: 0.5vw;
  height: 12vw;
  margin-bottom: 2.5vh;
  margin-top: 2.5vh;
  max-height: 12vw;
  max-width: 18vw;
  min-height: 12vw;
  min-width: 18vw;
  overflow: hidden;
  width: 18vw;
}
.hc-mint__banner--wrapper img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.hc-mint__banner--title {
  font-size: 3vh;
  font-weight: 600;
}
.hc-mint__banner--desc,
.hc-mint__banner--title {
  color: var(--white);
  font-family: var(--montserrat-font);
}
.hc-mint__banner--desc {
  font-size: 1.9vh;
  font-weight: 500;
  line-height: 4.2vh;
  margin-top: 2vh;
}
.hc-mint__card-initialSales {
  background: var(--bg-color-3);
  border: 0.12vw solid var(--gradinet_right);
  border-radius: 0.5vw;
  padding: 0.5vw 1vw 1vw;
  width: 26vw;
}
.hc-mint__card-initialSales .title {
  color: var(--white);
  font-family: var(--montserrat-font);
  font-size: 3.2vh;
  font-weight: 600;
}
.hc-mint__initialSales--border {
  border: 0.13vw solid var(--gradinet_right);
  border-radius: 0.3vw;
  height: 4.5vh;
  padding: 0.2vw;
  width: 100%;
}
.hc-mint__initialSales--border.mint {
  display: flex;
  position: relative;
}
.hc-mint__card-initialSales {
  color: var(--white);
}
.hc-mint__card-initialSales p {
  font-size: 0.93vw;
  font-weight: 600;
  margin-bottom: 0;
}
.hc-mint__initialSales--themeText {
  color: var(--gradinet_right);
  margin-bottom: 1vh !important;
  margin-top: 1vh;
}
.hc-mint__initialSales--progress {
  align-items: center;
  background: var(--gradinet_right);
  border-radius: 0.3vw;
  display: flex;
  font-family: var(--kanit_font);
  font-size: 2.2vh;
  font-weight: 500;
  height: 100%;
  justify-content: center;
  padding-left: 0.3vw;
  padding-right: 0.3vw;
}
.hc-mint__initialSales--border input {
  background: #0000;
  border: none;
  color: var(--gradinet_right);
  font-family: var(--kanit_font);
  font-size: 2.4vh;
  font-weight: 500;
  height: 100%;
  outline: none;
  width: 100%;
}
.hc-mint__button-mint:hover {
  opacity: 0.8;
}
.hc-mint__initialSales--border.mint input {
  width: calc(100% - 1vw);
}
.hc-mint__initialSales-buttons {
  display: flex;
  flex-direction: column;
  height: 3.4vh;
  position: relative;
  width: 1vw;
}
.hc-mint__initialSales-buttons button {
  align-items: center;
  background: #0000;
  border: none;
  display: flex;
  justify-content: center;
  outline: none;
  padding: 0;
  position: absolute;
}
.hc-mint__initialSales-buttons button img {
  width: 0.8vw;
}
.hc-mint__initialSales-buttons--up {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.hc-mint__initialSales-buttons--down {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hc-mint__initialSales-buttons button svg {
  fill: var(--gradinet_right);
  font-size: 30px;
}
.hc-mint__homeWrapper {
  background-image: none;
  background-repeat: repeat;
  background-size: initial;
  background: var(--black);
}
.hc-mint__content-title {
  text-align: center;
}
.hc-mint__content-title,
.hc-mint__content-title strong {
  font-family: var(--montserrat-font);
  font-weight: 700;
}
.hc-mint___col--right__content {
  margin-top: 2vh;
}
.hc-mint__col-paddingLeft {
  padding-right: 0.5vw !important;
}
.hc-mint__col-paddingRight {
  padding-left: 0.5vw !important;
}
.hc-mint__col-right--nowrap {
  white-space: nowrap;
}
.hc-mint__button-mint {
  align-items: center;
  background-image: url(/static/media/mintBg.bd15809215721abc46ee.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
  border-radius: 0.3vw;
  color: var(--white);
  display: flex;
  font-family: var(--kanit_font);
  font-size: 1vw;
  font-weight: var(--weight_five);
  gap: 0.5vw;
  justify-content: center;
  margin-top: 2vh;
  outline: none;
  padding: 0.8vh 2vh;
}
.hc-mint__content-title {
  font-size: 2vw;
}
.mint-bottom__content {
  margin-top: 10vh;
}
.hc-mint__swiper-wrap {
  margin-top: 5vh;
  padding: 0;
}
.hc-mint__swiper-buttonWrap {
  position: relative;
}
.card-gallery__image--wrapper {
  border-radius: 0.4vw;
  height: 25vh;
  max-height: 25vh;
  max-width: 19.7vw;
  min-height: 25vh;
  min-width: 19.7vw;
  overflow: hidden;
  width: 19.7vw;
}
.card-gallery__image--wrapper a,
.card-gallery__image--wrapper a img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  width: 100%;
}
.card-gallery__image--wrapper a img {
  object-fit: cover;
}
.card-gallery__title {
  margin-top: 3vh;
}
.card-gallery__title p {
  font-size: 2.4vh;
  font-weight: 700;
}
.section-estimateProperty {
  margin-top: 6vh;
}
.hc-mint__span-gradient {
  -webkit-text-fill-color: #0000;
  background: linear-gradient(78.45deg, #0053b5 10.54%, #16ebc3 90.51%);
  -webkit-background-clip: text;
}
.mint-margin__top {
  margin-top: 10vh;
}
.hc-mint__content-subtitle {
  font-family: var(--montserrat-font);
  font-size: 4vh;
  font-weight: 700;
}
.hc-mint__content-subtitle strong {
  color: var(--blue_200);
  font-family: var(--poppins_font);
  font-weight: 300;
}
.section-roadMap {
  margin-bottom: 12vh;
  margin-top: 12vh;
}
.mint-property__imageWrapper {
  border-radius: 0.3vw;
  height: 15vw;
  max-height: 15vw;
  max-width: 15vw;
  min-height: 15vw;
  min-width: 15vw;
  overflow: hidden;
  width: 15vw;
}
.mint-property__imageWrapper img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.hc-mint__card-timerWraper {
  border: 0.13vw solid var(--gradinet_right);
  border-radius: 0.2vw;
  color: var(--gradinet_right);
  display: flex;
  font-family: var(--kanit_font);
  font-size: 4.3vh;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.1vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3vh;
  min-width: 18.3vw;
  padding: 1vh 2vw;
  width: fit-content;
}
.project_bottom_section {
  position: absolute;
  top: 25vh;
  z-index: 5;
}
.projects_hr {
  margin-bottom: 3vh;
  margin-top: 5vh;
}
.projects__details {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5vw;
  position: relative;
  z-index: 2;
}
.projects__details-row {
  align-items: center;
  display: flex;
  gap: 0.5vw;
}
.projects__detatils-row--label,
.projects__detatils-row--value {
  font-size: 1.8vh;
  font-weight: 500;
}
.projects__detatils-row--value {
  color: var(--blue_200);
}
.projects__list {
  margin-top: 8vh;
}
.project__list--searchContainer {
  align-items: center;
  background: var(--bg-color-2);
  border: 1px solid var(--border-color-1);
  border-radius: 0.6vh;
  display: flex;
  gap: 1vw;
  justify-content: space-between;
  margin-top: 3vh;
  max-width: 23vw;
  padding: 0.6vh 1.4vh;
  position: relative;
}
.project__list--search {
  flex: 1 1;
}
.project__list--search input {
  background-color: initial;
  border: none;
  font-family: var(--montserrat-font);
  font-size: 1.75vh;
  height: auto;
  outline: none;
  padding: 0.5vh;
  width: 100%;
}
.project__list--search input,
.project__list--search input::placeholder {
  color: var(--white);
  font-weight: 550;
}
.projects__list--searchCloser {
  color: var(--white);
  font-size: 2vh;
}
.project__list-cards {
  margin-top: 6vh;
}
.projectcard_foot-btn--gradient {
  background-color: var(--gradinet_right);
  background-image: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  border: none;
  border-radius: 0.6vh;
  color: var(--white);
  display: flex;
  font-family: var(--montserrat-font);
  font-size: 1.6vh;
  font-weight: 600;
  outline: none;
  padding: 0.8vh;
}
.projectcard_foot-btn--gradient:hover {
  background-color: var(--gradinet_left);
  background-image: linear-gradient(
    to right,
    var(--gradinet_right),
    var(--gradinet_left)
  );
}
.hc-card__nft .nftcard_detailwrapper.project-card__details {
  min-height: 6.7vh;
}
.project-card__title.nft_name.hc-nft__card-title {
  margin-bottom: 0 !important;
}
.project-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 10vw;
}
.project_bottom_section-empty {
  min-height: 22vh;
}
.banner_section.project_banner_section {
  min-height: 110vh;
}
.project_section.banner_section {
  padding-top: 23vh;
}
.bblist {
  border-bottom: 0.2vh solid var(--border-color-1);
}
.rewardscard_swiper {
  grid-gap: 2.2vw;
  display: grid;
  gap: 2.2vw;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3vh;
}
.rewards_card {
  background: var(--bg-color-5);
  border: 0.1vw solid var(--border-color-1);
  border-radius: 0.3vw;
  padding: 1.4vw 1.4vw 0.4vw;
}
.rewards_card-title {
  color: var(--blue_200);
  font-family: var(--poppins_font);
  font-size: 3vh;
  font-weight: 300;
}
.rc_dateText {
  font-size: 1.5vh;
  margin-top: 1vh;
}
.mp_readmoreBtn,
.rc_dateText {
  color: var(--blue_200);
  font-weight: 500;
}
.mp_readmoreBtn {
  background: #0000;
  border: none;
  font-size: 1.9vh;
  outline: none;
}
.rc_readmore_aligner {
  align-items: center;
  display: flex;
  justify-content: end;
}
.marketplace_margin {
  margin-bottom: 20vh;
  margin-top: 3vh;
}
.hc-mint__banner--desc.projectInfo_banner--desc {
  margin-bottom: 0 !important;
}
.mint-bottom__content {
  margin-top: 8vh;
}
.news-update__swipper-wrapper {
  margin-top: 4vh;
}
.gallery-card__swiper .card-gallery {
  height: 30vh;
  max-height: 30vh;
  max-width: 19vw;
  min-height: 30vh;
  min-width: 19vw;
  padding-left: 1vw;
  padding-right: 1vw;
  width: 19vw;
}
.gallery-card__swiper .swiper-wrapper {
  padding-top: 0 !important;
}
.gallery-card__swiper .swiper-slide {
  margin-right: 0 !important;
}
.gallery-card__swiper .card-gallery__image--wrapper {
  border-radius: 0.5vw;
  height: 11.5vw;
  max-height: 11.5vw;
  max-width: 100%;
  min-height: 11.5vw;
  min-width: 100%;
  overflow: hidden;
  width: 100%;
}
.gallery-card__swiper .card-gallery__title {
  margin-top: 2vh;
}
.gallery-card__swiper.gallery-card__swiper .card-gallery__title p {
  font-size: 2.5vh;
}
.gallery-card__swiperWrapper .hc-swiper__arrow--left svg,
.gallery-card__swiperWrapper .hc-swiper__arrow--right svg {
  font-size: 5vh;
}
.gallery-card__swiperWrapper .hc-swiper__arrow--right {
  right: -4%;
}
.gallery-card__swiperWrapper .hc-swiper__arrow--left {
  left: -4%;
}
.gallery-card__swiperWrapper .hc-swiper__arrow--left img,
.gallery-card__swiperWrapper .hc-swiper__arrow--right img {
  height: 2.8vw;
  width: 2.8vw;
}
.gallery-card__swiperWrapper .hc-swiper__arrow--left,
.gallery-card__swiperWrapper .hc-swiper__arrow--right {
  top: 30%;
}
.new-update-grid {
  grid-gap: 3vw;
  display: grid;
  gap: 3vw;
  grid-template-columns: repeat(3, 1fr);
}
.box {
  background: red;
  height: 300px;
}
.update-white {
  background: #fff;
  height: 100%;
  width: 21.9vw;
}
.banner_section.banner_section_content {
  position: relative;
}
.banner_section.banner_section_content:after {
  background: var(--black);
  height: 100%;
  position: absolute;
  top: 100vh;
  width: 100%;
}
.banner_section.banner_section_content:before {
  background: url(/static/media/bottomlayer.549281c35f1aabddba8b.png) no-repeat;
  background-size: 100% 100%;
  content: "";
  height: 20vh;
  left: 0;
  position: absolute;
  top: 80vh;
  width: 100%;
  z-index: 1;
}
.banner_section.banner_section_content .inner-container__width {
  position: relative;
  z-index: 2;
}
.banner_section.banner_section_content.claim-section {
  padding-top: 19vh;
}
.claim-value__wrapper {
  gap: 2.5vw;
  margin-top: 3vh;
}
.value__wrapper-blue {
  align-items: center;
  border: 0.27vh solid var(--blue_200);
  border-radius: 0.2vw;
  display: flex;
  gap: 0.3vw;
  padding: 0.8vh 2.8vw;
  width: fit-content;
}
.value__wrapper-blue .title,
.value__wrapper-blue .value {
  font-size: 2.1vh;
  font-weight: 600;
  white-space: nowrap;
}
.value__wrapper-blue .value {
  color: var(--blue_200);
}
.hh-stake__subtitle {
  font-size: 2.7vh;
  font-weight: 600;
  margin-top: 4vh;
}
.hh-stake__countdown {
  color: var(--blue_200);
  margin-top: 0.5vh;
  text-align: center;
}
.hh-stake__countdown span {
  font-family: var(--kanit_font);
  font-size: 5vh;
  font-weight: 500;
  letter-spacing: 0.05vw;
}
.stake-tab__wrapper {
  background: var(--bg-color-2);
  border: 0.2vh solid var(--border-color-1);
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2vh;
  padding: 0.7vw 0.8vw;
  width: fit-content;
}
.stacking_tab,
.stake-tab__wrapper {
  align-items: center;
  border-radius: 0.2vw;
  display: flex;
}
.stacking_tab {
  cursor: pointer;
  font-size: 2.1vh;
  font-weight: 600;
  gap: 0.4vw;
  padding: 0.5vw 1.3vw;
}
.stacking_tab img {
  width: 1.2vw;
}
.stacking_tab.active {
  background: var(--blue_200);
  color: var(--white);
}
.stake-actions {
  gap: 2vw;
  margin-bottom: 5vh;
  margin-top: 4vh;
}
.stake-actions .project__list--searchContainer {
  max-width: 40vw;
  min-width: 40vw;
  width: 40vw;
}
.stake--searchContainer {
  align-items: center;
  background: var(--bg-color-2);
  border: 0.2vh solid var(--border-color-1);
  border-radius: 0.6vh;
  display: flex;
  font-weight: 500;
  gap: 1vw;
  height: 5.5vh;
  justify-content: space-between;
  max-height: 5.5vh;
  max-width: 22vw;
  min-height: 5.5vh;
  min-width: 22vw;
  padding: 0.6vh 1.4vh;
  position: relative;
  width: 22vw;
}
.stake--searchContainer::placeholder {
  font-weight: 500;
}
.react-select-2__indicator-separator {
  display: none;
}
.react-select-2__control {
  background: var(--bg-color-2) !important;
  border: none !important;
  border: 0.2vh solid var(--border-color-1) !important;
  border-radius: 0.6vh !important;
  box-shadow: none !important;
  height: 5.5vh !important;
  max-height: 5.5vh !important;
  min-height: 5.5vh !important;
  min-width: 18vw !important;
  outline: none !important;
  padding: 0.6vh 1.4vh !important;
}
.react-select-2__value-container {
  margin: 0 !important;
  padding: 0 !important;
}
.react-select-2__placeholder,
.react-select-2__single-value {
  color: var(--white) !important;
  font-family: var(--montserrat-font) !important;
  font-weight: 500 !important;
}
.react-select-2__input-container,
.react-select-2__input-container input,
.react-select-2__placeholder,
.react-select-2__single-value {
  font-size: 1.75vh !important;
  margin: 0 !important;
  padding: 0 !important;
}
.react-select-2__input-container input {
  color: var(--white) !important;
  font-family: var(--montserrat-font) !important;
  font-weight: 500 !important;
}
.react-select-2__indicator {
  padding: 0 !important;
}
.react-select-2__indicator svg {
  height: 3vh !important;
  width: 3vh !important;
}
.react-select-2__menu {
  background: var(--bg-color-2) !important;
  border: 0.2vh solid var(--border-color-1) !important;
}
.react-select-2__option {
  background: #0000 !important;
  cursor: pointer !important;
  font-size: 1.9vh !important;
  font-weight: 500 !important;
  padding: 1.2vh 1.4vh !important;
}
.react-select-2__option:hover {
  background: var(--blue_200) !important;
  color: var(--black) !important;
}
.react-select-2__option:active {
  background: var(--blue_300) !important;
  color: var(--white) !important;
}
.react-select-2__option--is-selected {
  background: var(--blue_200) !important;
  color: var(--black) !important;
}
.react-select-3__indicator-separator {
  display: none;
}
.react-select-3__control {
  background: #0000 !important;
  border: none !important;
  border: 0.27vh solid var(--blue_200) !important;
  border-radius: 0.6vh !important;
  box-shadow: none !important;
  height: 5.5vh !important;
  max-height: 5.5vh !important;
  min-height: 5.5vh !important;
  min-width: 18vw !important;
  outline: none !important;
  padding: 0.6vh 1.4vh !important;
}
.react-select-3__value-container {
  margin: 0 !important;
  padding: 0 !important;
}
.react-select-3__single-value {
  color: var(--white) !important;
  font-family: var(--montserrat-font) !important;
  font-weight: 500 !important;
}
.react-select-3__input-container,
.react-select-3__input-container input,
.react-select-3__single-value {
  font-size: 2vh !important;
  margin: 0 !important;
  padding: 0 !important;
}
.react-select-3__input-container input {
  color: var(--white) !important;
  font-family: var(--montserrat-font) !important;
  font-weight: 500 !important;
}
.react-select-3__indicator {
  padding: 0 !important;
}
.react-select-3__indicator svg {
  height: 3vh !important;
  width: 3vh !important;
}
.react-select-3__menu {
  background: var(--black) !important;
  border: 0.2vh solid var(--blue_200) !important;
}
.react-select-3__option {
  background: #0000 !important;
  cursor: pointer !important;
  font-size: 1.9vh !important;
  font-weight: 500 !important;
  padding: 1.2vh 1.4vh !important;
}
.react-select-3__option:hover {
  background: var(--blue_200) !important;
  color: var(--black) !important;
}
.react-select-3__option:active {
  background: var(--blue_300) !important;
  color: var(--white) !important;
}
.react-select-3__option--is-selected {
  background: var(--blue_200) !important;
  color: var(--black) !important;
}
.react-select-3__placeholder {
  color: var(--white) !important;
  font-size: 2vh !important;
  font-weight: 500 !important;
}
.react-select-3__menu-list {
  max-height: 140px !important;
}
.hh-nft__text-sm {
  font-size: 0.8vw;
  font-weight: 500;
  margin-bottom: 1vh;
}
.stake-grid {
  grid-column-gap: 1.6vw;
  grid-row-gap: 8vh;
  column-gap: 1.6vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 8vh;
  row-gap: 8vh;
}
.box1 {
  background: red;
  height: 300px;
}
.white {
  background: #fff;
  height: 100%;
  width: 17.5vw;
}
.stake-grid .nft_card.hc-card__nft-height {
  max-width: 17.5vw;
  min-width: 17.5vw;
  width: 17.5vw;
}
.stake-grid .hc-card__nft-height.nft_card .nftImg {
  height: 35vh;
  max-height: 35vh;
  max-width: 100%;
  min-height: 35vh;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.stake-grid .bodygradientBtn,
.stake-grid .nftcard_btnviolet {
  font-size: 1.75vh;
  padding: 0.7vh 3vh;
}
.stake-grid .nftcard_btnviolet {
  background: var(--text-color-4);
  border: none;
  border-radius: 0.6vh;
  color: var(--white);
  font-family: var(--montserrat-font);
  font-weight: 700;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.stake-grid .nftcard_btnviolet:hover {
  opacity: 0.8;
}
.stake-grid .nftcard_btnblue,
.stake-grid .nftcard_btnviolet {
  color: var(--white);
}
.stake-rewards__selects {
  margin-top: 4vh;
}
.hh-col__paddings {
  margin-bottom: 3vh !important;
  padding-left: 2vw !important;
  padding-right: 2vw !important;
}
.stack-button__wrap {
  margin-top: 5vh;
}
.stack__button-submit {
  align-items: center;
  background-image: linear-gradient(
    to right,
    var(--gradinet_left),
    var(--gradinet_right)
  );
  border: none;
  border-radius: 0.5vh;
  color: #fff;
  display: flex;
  font-size: 1.6vh;
  font-weight: 700;
  outline: none;
  padding: 0.7vh 1.5vw;
  white-space: nowrap;
}
.stack__button-submit:hover {
  background-image: linear-gradient(
    to right,
    var(--gradinet_right),
    var(--gradinet_left)
  );
}
.margin__tb-5vh {
  margin-bottom: 5vh;
  margin-top: 4vh;
}
.collection-info__header {
  gap: 1.4vw;
  width: 75%;
}
.collection-info__profile-image {
  border-radius: 0.3vw;
  height: 13vw;
  max-height: 13vw;
  max-width: 18vw;
  min-height: 13vw;
  min-width: 18vw;
  overflow: hidden;
  width: 18vw;
}
.collection-info__profile-image img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.collection-info__profile-name {
  font-size: 2.8vh;
  font-weight: 700;
  margin-bottom: 3vh !important;
  margin-top: 3vh;
}
.collection-grid {
  grid-gap: 2vw;
  display: grid;
  gap: 2vw;
  grid-template-columns: repeat(4, 1fr);
}
.collection__image-wrapper {
  border-radius: 0.5vw;
  height: 23vh;
  max-height: 23vh;
  max-width: 17.5vw;
  min-height: 23vh;
  min-width: 17.5vw;
  overflow: hidden;
  width: 17.5vw;
}
.collection-width-fit {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  width: 100%;
}
.collection__image-wrapper--name {
  font-size: 2.5vh;
  font-weight: 700;
  margin-top: 3vh;
}
.collection-info__grid-title {
  font-size: 3vh;
  font-weight: 600;
  margin-bottom: 3vh !important;
}
.hc-collection__modal--body {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}
.hc-collection__modal-imageWrapper {
  border-radius: 0.5vw;
  height: 50vh;
  max-height: 50vh;
  min-height: 50vh;
  overflow: hidden;
}
.hc-collection__imageFit {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
}
.anim_div.first_lottie.loader_div_center {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.img-loader-backdrop {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #ffffff1a;
}
.nft-profile__image-wrap {
  height: 35vh;
  max-height: 35vh;
  max-width: 35vh;
  min-height: 35vh;
  min-width: 35vh;
  width: 35vh;
}
.referral_tree {
  margin-top: 5vw;
}
.referral_tree-header {
  align-items: center;
  background: var(--bg-color-2);
  border: 0.2vh solid var(--border-color-1);
  border-radius: 0.2vw;
  display: flex;
  height: 3vw;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  min-width: 17vw;
  position: relative;
  width: fit-content;
}
.referral_tree-header p {
  font-size: 1.2vw;
}
.referral_tree-header:after {
  background: var(--border-color-1);
  content: "";
  height: 3vw;
  left: 50%;
  position: absolute;
  top: 2.9vw;
  transform: translate(-50%);
  width: 0.2vh;
}
.referral_tree-header p {
  font-weight: 550;
}
.refferral_tree-body {
  align-items: start;
  display: flex;
  margin-top: 3vw;
  overflow-x: auto;
  padding-bottom: 3vw;
  padding-top: 3vw;
  width: 100%;
}
.refferral_tree-body.justifyContentCenter {
  justify-content: center;
}
.refferral_tree-body.justifyContentStart {
  justify-content: start;
}
.refferral_tree-children {
  padding-right: 2vw;
  position: relative;
}
.refferral_tree-children--content {
  background-color: var(--bg-color-2);
  border: 1px solid var(--border-color-1);
  border-radius: 0.6vh;
  display: flex;
  flex-direction: column;
  max-width: 17vw;
  min-width: 17vw;
  padding: 0.7vw 1vw;
  position: relative;
  width: 17vw;
}
.refferral_tree-children--content p {
  text-wrap: nowrap;
  font-size: 0.9vw;
  font-weight: 500;
  height: 1.4vw;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 15vw;
}
.refferral_tree-children--content p span {
  color: var(--gradinet_right);
  font-weight: 550;
}
.refferral_tree-children-border--left {
  background: var(--border-color-1);
  height: 0.2vh;
  left: 0;
  position: absolute;
  top: -3vw;
  width: 50%;
}
.refferral_tree-children-border--center {
  background: var(--border-color-1);
  height: 3vw;
  left: 50%;
  position: absolute;
  top: -3vw;
  transform: translateX(-50%);
  width: 0.2vh;
}
.refferral_tree-children-border--right {
  background: var(--border-color-1);
  height: 0.2vh;
  position: absolute;
  right: 0;
  top: -3vw;
  width: 50%;
}
.refferral_tree-body
  .refferral_tree-children:first-child
  .refferral_tree-children-border--left,
.refferral_tree-body
  .refferral_tree-children:last-child
  .refferral_tree-children-border--right {
  display: none;
}
.referral-buttons {
  gap: 1vw;
}
.justifyContentCenterMob .refferral_tree-children {
  padding-right: 0;
}
.hc-button__margin-top {
  margin-top: 2vh;
}
.hc-otpinput {
  margin-top: 4vh;
}
.hc-otpinput div:first-child,
.hc-otpinput input {
  justify-content: center;
}
.hc-otpinput input {
  align-items: center;
  background-color: initial;
  border: 1px solid var(--gradinet_right);
  border-radius: 0.5vh;
  color: var(--white);
  display: flex;
  font-family: var(--montserrat-font);
  font-size: 15px;
  font-weight: 500;
  height: 30px;
  margin-right: 20px;
  width: 30px !important;
}
.hc-margin_top {
  margin-top: 3vh;
}
.hc-margin_bottom {
  margin-bottom: 3vh;
}
.modal-body .hc-mdl_rctslt .react_select__control {
  width: 18vh !important;
}
.hc-mdl_rctslt .react_select__indicators,
.hc-mdl_rctslt .react_select__value-container {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.hc-mdl_rctslt .react_select__indicators {
  top: auto !important;
}
.hc-mdl_rctslt .react_select__menu {
  width: 18vh !important;
}
@media screen and (max-width: 1199px) {
  .is_banner_section.banner_section {
    padding-top: 18vh;
  }
  .anim_div.is-banner__lottie div[aria-label="animation"] {
    height: 40vh !important;
    margin-top: 0 !important;
    max-height: 40vh !important;
    max-width: 40vh !important;
    min-height: 40vh !important;
    min-width: 40vh !important;
    width: 40vh !important;
  }
  .mp_inner--bottom {
    margin-top: -20vh;
  }
  .mp_bottom--title {
    padding-bottom: 3vh;
    padding-top: 3vh;
  }
  .inner-container__width {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  .mp-grid {
    gap: 2vw;
    grid-template-columns: repeat(2, 1fr);
  }
  .mp-grid.mp-grid_list,
  .mp-grid.projectmp_grid {
    gap: 2vw;
    grid-template-columns: repeat(3, 1fr);
  }
  .mp-grid .blue,
  .mp-grid .gree,
  .mp-grid .red,
  .mp-grid .yello {
    height: 300px;
  }
  .red_inner {
    height: 30vh;
    max-width: 18.6vw;
    min-width: 18.6vw;
    width: 18.6vw;
  }
  .nft-card {
    border-radius: 0.7vw;
    max-width: 43.6vw;
    min-width: 43.6vw;
    width: 43.6vw;
  }
  .nft-card:hover {
    transform: translateY(-2vh);
    transition: all 0.5s ease;
  }
  .nft-card__a {
    height: 19vh;
    max-height: 19vh;
    max-width: 43.6vw;
    min-height: 19vh;
    min-width: 43.6vw;
    width: 43.6vw;
  }
  .nft-card__content {
    border-top-left-radius: 0.3vw;
    border-top-right-radius: 0.3vw;
    padding: 0 1.8vw 1.8vw;
  }
  .nft-card__content:after {
    border-top-left-radius: 1vw;
    border-top-right-radius: 1vw;
    height: 0.6vh;
    left: 0;
    top: -0.8vh;
  }
  .nft-card__content-title {
    font-size: 3vw;
    line-height: 4.5vw;
    width: 39vw;
  }
  .nft-card__content-currency,
  .nft-card__values-wrapper {
    margin-top: 0.6vh;
  }
  .nft-card__content-values {
    font-size: 1.3vh;
  }
  .nft-card__content-buttons {
    margin-top: 1.8vh;
  }
  .nft-card__buttons--countdown {
    border: 0.2vh solid var(--blue_200);
    border-radius: 0.7vw;
    height: 4vh;
    padding: 0.7vh;
  }
  .nft-card__buttons--countdown span {
    font-size: 1.6vh;
  }
  .nft-card__buttons--gradient {
    border-radius: 0.3vh;
    font-size: 1.2vh;
    height: 4vh;
  }
  .nft-card__buttons--gradient:hover {
    background-color: var(--gradinet_left);
    background-image: linear-gradient(
      to right,
      var(--gradinet_right),
      var(--gradinet_left)
    );
  }
  .nft-card__buttons--gradient p {
    display: flex;
    flex: 1 1;
    font-size: 1.5vh;
    justify-content: center;
    padding: 0.5vh;
    text-align: center;
  }
  .nft-card__buttons-gradientCart {
    border-left: 1px solid var(--white);
    padding: 0.5vh 1.5vh;
  }
  .nft-card__buttons-gradientCart img {
    width: 1.4vh;
  }
  .nft-card__noData {
    font-size: 2vh;
    text-align: center;
  }
  .mp-margin {
    margin-bottom: 5vh;
    margin-top: 5vh;
  }
  .button-loadMore {
    border: 0.22vh solid var(--white);
    border-radius: 0.4vh;
    font-size: 1.3vh;
    padding: 0.8vh 2vh;
  }
  .hc-min__banner-mobile {
    height: 38vh;
    margin-top: 9vh;
    max-height: 38vh;
    min-height: 38vh;
    position: relative;
  }
  .hc-mint__bannerInner-col--right {
    margin-top: 4vh;
  }
  .hc-mint__banner {
    height: 30vh;
    max-height: 30vh;
    min-height: 30vh;
  }
  .hc-mint__banner--wrapper {
    border-radius: 2vw;
    height: 40vw;
    margin-bottom: 2.5vh;
    margin-top: 2.5vh;
    max-height: 40vw;
    max-width: 55vw;
    min-height: 40vw;
    min-width: 55vw;
    overflow: hidden;
    width: 55vw;
  }
  .hc-mint__banner-content {
    bottom: auto;
    position: relative;
  }
  .hc-mint__banner-content:after {
    background: url(/static/media/bottomlayer.549281c35f1aabddba8b.png)
      no-repeat;
    background-size: 100% 100%;
    bottom: -0.2vh;
    content: "";
    height: 20vh;
    left: 0;
    opacity: 0.9;
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  .hc-mint__banner {
    height: auto;
    margin-top: 0;
    max-height: none;
    min-height: 0;
    min-height: auto;
  }
  .hc-mint__banner:after {
    background: linear-gradient(103.58deg, #240533 39.31%, #004448 95.31%);
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
  }
  .hc-min__banner-mobile:after {
    bottom: -0.2vh;
    opacity: 0.9;
  }
  .hc-min__banner-mobile:after,
  .hc-min__banner-mobile:before {
    background: url(/static/media/bottomlayer.549281c35f1aabddba8b.png)
      no-repeat;
    background-size: 100% 100%;
    content: "";
    height: 10vh;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  .hc-min__banner-mobile:before {
    bottom: -10.2vh;
    opacity: 0.7;
    transform: rotate(180deg);
  }
  .hc-mint__bannerInner-col--left {
    margin-top: -14vh;
  }
  .hc-mint__card-initialSales {
    border: 0.25vw solid var(--gradinet_right);
    border-radius: 2vw;
    margin-bottom: 1vh;
    padding: 3vw;
    width: 90vw;
  }
  .hc-mint__card-initialSales .title {
    font-size: 3vh;
  }
  .hc-mint__card-initialSales p {
    font-size: 3.3vw;
  }
  .hc-mint__col-paddingLeft {
    padding-right: 1vw !important;
  }
  .hc-mint__col-paddingRight {
    padding-left: 1vw !important;
  }
  .hc-mint__initialSales--border {
    border: 0.3vw solid var(--gradinet_right);
    border-radius: 1vw;
    height: 5vh;
    padding: 0.5vw;
  }
  .hc-mint__initialSales--progress {
    align-items: center;
    border-radius: 1vw;
    display: flex;
    font-size: 3vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
  .hc-mint__button-mint {
    font-size: 1.8vh;
  }
  .hc-mint__button-mint .header_wallet {
    height: 3vh;
    width: 3vh;
  }
  .hc-mint__banner--desc {
    margin-bottom: 5vh !important;
    z-index: 2;
  }
  .hc-mint__button-mint {
    border-radius: 1vw;
    font-size: 2.1vh;
    gap: 0.8vw;
  }
  .hc-mint__content-title {
    display: flex;
    flex-direction: column;
    font-size: 4.2vw;
    line-height: 6.5vw;
    white-space: nowrap;
  }
  .hc-mint__content-title span {
    font-size: 5.2vh;
  }
  .mint-margin__top {
    margin-top: 7vh;
  }
  .hc-mint__content-subtitle {
    font-size: 3.1vh;
    line-height: 4.8vh;
  }
  .mint-property__imageWrapper {
    height: 35vh;
    max-height: 35vh;
    max-width: 35vh;
    min-height: 35vh;
    min-width: 35vh;
    width: 35vh;
  }
  .section-roadMap {
    margin-bottom: 5vh;
    margin-top: 5vh;
  }
  .projects_hr {
    margin-bottom: 3vh;
    margin-top: 4vh;
  }
  .project_bottom_section {
    top: 20vh;
  }
  .projects__details {
    column-gap: 9vw;
    row-gap: 3vh;
  }
  .projects__detatils-row--label {
    font-size: 1.9vh;
  }
  .projects__detatils-row--value {
    font-size: 1.5vh;
  }
  .project__list--searchContainer {
    max-width: 60vw;
  }
  .project__list-cards .hc-card__nft .projectcard_wrapper_sep {
    border-radius: 0.5vh 0.5vh 0 0;
    height: 23vh;
    max-height: 23vh;
    min-height: 23vh;
  }
  .project__list-cards
    .hc-card__nft
    .nftcard_detailwrapper.project-card__details {
    min-height: 6vh;
  }
  .project__list-cards .hc-card__nft .nftcard_detailwrapper {
    padding: 1vh 2vh;
  }
  .project-card__title {
    font-size: 2.2vh;
    width: 16vw;
  }
  .projectcard_foot-btn--gradient {
    border-radius: 0.4vh;
    font-size: 1.7vh;
    padding: 0.4vh 1.2vw;
  }
  .project_bottom_section-empty {
    min-height: 77vh;
  }
  .hc-mint__banner--desc.projectInfo_banner--desc {
    margin-bottom: 0 !important;
  }
  .mint-bottom__content {
    margin-top: 7vh;
  }
  .gallery-card__swiper .card-gallery {
    height: 36vw;
    max-height: 36vw;
    max-width: 45vw;
    min-height: 36vw;
    min-width: 45vw;
    padding-left: 2vw;
    padding-right: 2vw;
    width: 45vw;
  }
  .gallery-card__swiper .swiper-slide {
    margin-right: 0 !important;
  }
  .gallery-card__swiper .card-gallery__image--wrapper {
    border-radius: 1.3vw;
    height: 27vw;
    max-height: 27vw;
    max-width: 100%;
    min-height: 27vw;
    min-width: 100%;
    overflow: hidden;
    width: 100%;
  }
  .gallery-card__swiper .card-gallery__title {
    margin-top: 2vh;
  }
  .gallery-card__swiper.gallery-card__swiper .card-gallery__title p {
    font-size: 3.5vw;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--left svg,
  .gallery-card__swiperWrapper .hc-swiper__arrow--right svg {
    font-size: 3vh;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--right {
    right: -4%;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--left {
    left: -4%;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--left img,
  .gallery-card__swiperWrapper .hc-swiper__arrow--right img {
    height: 5vw;
    width: 5vw;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--left,
  .gallery-card__swiperWrapper .hc-swiper__arrow--right {
    top: 30%;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--right {
    right: -5%;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--left {
    left: -5%;
  }
  .gallery-card__swiper .rewards_card {
    max-width: 90vw;
    min-width: 90vw;
    width: 90vw;
  }
  .swiper-button-next1-news svg,
  .swiper-button-prev1-news svg {
    font-size: 2.5vh;
  }
  .swiper-button-prev1-news.hc-swiper__arrow--left {
    left: -5%;
  }
  .gallery-card__swiper .rewards_card {
    border-radius: 2vw;
    padding: 3vw 3vw 1vw;
  }
  .gallery-card__swiper .rewards_card .hc-mint__banner--desc {
    margin-bottom: 2vh !important;
  }
  .banner_section.banner_section_content.claim-section {
    padding-top: 18vh;
  }
  .claim-value__wrapper {
    gap: 4.5vw;
    margin-top: 3vh;
  }
  .value__wrapper-blue {
    border: 0.27vh solid var(--blue_200);
    border-radius: 0.2vw;
    gap: 1vw;
    min-height: 5vh;
    padding: 0.8vh 2.8vw;
  }
  .value__wrapper-blue .title,
  .value__wrapper-blue .value {
    font-size: 2vh;
  }
  .value__wrapper-image {
    align-items: center;
    display: flex;
    gap: 1.2vw;
  }
  .value__wrapper-image img {
    width: 2.8vh;
  }
  .hh-stake__subtitle {
    font-size: 2.5vh;
    margin-top: 5vh;
  }
  .hh-stake__countdown {
    margin-top: 2vh;
  }
  .hh-stake__countdown span {
    font-size: 4.5vh;
  }
  .stake-tab__wrapper {
    padding: 2.3vw;
  }
  .stacking_tab {
    border-radius: 0.6vw;
    font-size: 2vh;
    font-weight: 600;
    gap: 2vw;
    padding: 1vw 2vw;
  }
  .stacking_tab img {
    width: 4.5vw;
  }
  .stake-actions {
    align-items: start !important;
    flex-direction: column;
    gap: 5vw;
    margin-bottom: 5vh;
    margin-top: 5vh;
  }
  .stake--searchContainer,
  .stake-actions .project__list--searchContainer {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }
  .react-select-2-wrap {
    width: 100%;
  }
  .hh-nft__text-sm {
    font-size: 1.5vh;
    margin-bottom: 1vh;
  }
  .stake-grid {
    grid-column-gap: 3vw;
    grid-row-gap: 5vh;
    column-gap: 3vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 8vh;
    row-gap: 5vh;
  }
  .box1 {
    background: red;
    height: 300px;
  }
  .white {
    background: #fff;
    height: 100%;
    width: 17.5vw;
  }
  .stake-grid .nft_card.hc-card__nft-height {
    max-width: 43.5vw;
    min-width: 43.5vw;
    width: 43.5vw;
  }
  .stake-grid .hc-nft__card-title {
    margin-bottom: 1vh !important;
  }
  .stake-grid .hc-card__nft-height.nft_card .nftcard_detailwrapper {
    border-top-left-radius: 0.6vh;
    border-top-right-radius: 0.6vh;
    margin-top: -1vh;
    padding: 1.1vh;
  }
  .stake-grid .hc-card__nft-height.nft_card .nftImg {
    height: 28vh;
    max-height: 28vh;
    min-height: 28vh;
  }
  .stake-grid .bodygradientBtn,
  .stake-grid .nftcard_btnviolet {
    font-size: 1.5vh;
    padding: 1vh 3vh;
  }
  .stake-grid .card_status {
    font-size: 1.5vh;
  }
  .stake-grid .nftcard_statuslabel {
    height: 3.5vh;
  }
  .stack-button__wrap {
    margin-top: 4vh;
  }
  .stack__button-submit {
    padding: 0.7vh 4vw;
  }
  .collection-info__header {
    gap: 1.4vw;
    width: 75%;
  }
  .collection-info__profile-image {
    border-radius: 2vw;
    height: 40vw;
    max-height: 40vw;
    max-width: 50vw;
    min-height: 40vw;
    min-width: 50vw;
    width: 50vw;
  }
  .collection-info__profile-name {
    font-size: 2.8vh;
    margin-bottom: 3vh !important;
    margin-top: 3vh;
  }
  .collection-grid {
    grid-gap: 2vw;
    grid-row-gap: 3vh;
    display: grid;
    gap: 2vw;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3vh;
  }
  .collection__image-wrapper {
    border-radius: 1.7vw;
    height: 21vh;
    max-height: 21vh;
    max-width: 42.5vw;
    min-height: 21vh;
    min-width: 42.5vw;
    width: 42.5vw;
  }
  .collection__image-wrapper--name {
    font-size: 2.5vh;
    margin-top: 2.5vh;
  }
  .collection-info__grid-title {
    font-size: 3vh;
    margin-bottom: 3vh !important;
  }
  .hc-collection__modal-imageWrapper {
    border-radius: 2vw;
    height: 30vh;
    max-height: 30vh;
    min-height: 30vh;
  }
}
@media screen and (max-width: 991px) {
  .mp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mp-grid.mp-grid_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .mp-grid.projectmp_grid {
    gap: 4vw 2vw;
    grid-template-columns: repeat(2, 1fr);
  }
  .project-card__title {
    font-size: 2.2vh;
    width: 22vw;
  }
  .anim_div.first_lottie {
    min-height: 30vh;
  }
}
@media screen and (max-width: 767px) {
  .is_banner_section.banner_section {
    padding-top: 18vh;
  }
  .mp_inner--bottom {
    margin-top: -15vh;
  }
  .mp_bottom--title {
    padding-bottom: 3vh;
    padding-top: 3vh;
  }
  .inner-container__width {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  .mp-grid,
  .mp-grid.mp-grid_list {
    gap: 5vw 2.2vw;
    grid-template-columns: repeat(2, 1fr);
  }
  .mp-grid .blue,
  .mp-grid .gree,
  .mp-grid .red,
  .mp-grid .yello {
    height: 300px;
  }
  .red_inner {
    height: 30vh;
    max-width: 18.6vw;
    min-width: 18.6vw;
    width: 18.6vw;
  }
  .nft-card {
    border-radius: 1vw;
    max-width: 44.5vw;
    min-width: 44.5vw;
    width: 44.5vw;
  }
  .nft-card:hover {
    transform: translateY(-2vh);
    transition: all 0.5s ease;
  }
  .nft-card__a {
    height: 15.5vh;
    max-height: 15.5vh;
    max-width: 44.5vw;
    min-height: 15.5vh;
    min-width: 44.5vw;
    width: 44.5vw;
  }
  .nft-card__content {
    border-top-left-radius: 0.3vw;
    border-top-right-radius: 0.3vw;
    padding: 0 2.1vw 2.1vw;
  }
  .nft-card__content:after {
    border-top-left-radius: 1vw;
    border-top-right-radius: 1vw;
    height: 0.3vh;
    left: 0;
    top: -0.65vh;
  }
  .nft-card__content-title {
    font-size: 3.5vw;
    line-height: 5vw;
    width: 38vw;
  }
  .nft-card__content-currency,
  .nft-card__values-wrapper {
    margin-top: 0.6vh;
  }
  .nft-card__content-values {
    font-size: 2vw;
  }
  .nft-card__content-buttons {
    margin-top: 0.9vh;
  }
  .nft-card__buttons--countdown {
    border: 0.2vh solid var(--blue_200);
    border-radius: 0.7vw;
    height: 2.5vh;
    padding: 0.7vh;
  }
  .nft-card__buttons--countdown span {
    font-size: 1.2vh;
  }
  .nft-card__buttons--gradient {
    border-radius: 0.3vh;
    font-size: 1.2vh;
    height: 2.5vh;
  }
  .nft-card__buttons--gradient:hover {
    background-color: var(--gradinet_left);
    background-image: linear-gradient(
      to right,
      var(--gradinet_right),
      var(--gradinet_left)
    );
  }
  .nft-card__buttons--gradient p {
    display: flex;
    flex: 1 1;
    font-size: 2.1vw;
    justify-content: center;
    padding: 0.5vh;
    text-align: center;
  }
  .nft-card__buttons-gradientCart {
    border-left: 1px solid var(--white);
    padding: 0.5vh 1vh;
  }
  .nft-card__buttons-gradientCart img {
    width: 1.4vh;
  }
  .nft-card__noData {
    font-size: 2vh;
    text-align: center;
  }
  .mp-margin {
    margin-bottom: 5vh;
    margin-top: 5vh;
  }
  .button-loadMore {
    border: 0.22vh solid var(--white);
    border-radius: 0.4vh;
    font-size: 1.3vh;
    padding: 0.8vh 2vh;
  }
  .anim_div.is-banner__lottie div[aria-label="animation"] {
    height: 35vh !important;
    margin-top: 0 !important;
    max-height: 30vh !important;
    max-width: 35vh !important;
    min-height: 35vh !important;
    min-width: 35vh !important;
    width: 35vh !important;
  }
  .hc-min__banner-mobile {
    height: 30vh;
    margin-top: 9vh;
    max-height: 30vh;
    max-width: 100%;
    min-height: 30vh;
    min-width: 100%;
    position: relative;
    width: 100%;
  }
  .hc-mint__bannerInner-col--right {
    margin-top: 4vh;
  }
  .hc-mint__banner {
    height: 30vh;
    max-height: 30vh;
    min-height: 30vh;
  }
  .hc-mint__banner--wrapper {
    border-radius: 2vw;
    height: 40vw;
    margin-bottom: 2.5vh;
    margin-top: 2.5vh;
    max-height: 40vw;
    max-width: 55vw;
    min-height: 40vw;
    min-width: 55vw;
    overflow: hidden;
    width: 55vw;
  }
  .hc-mint__banner-content {
    bottom: auto;
    position: relative;
  }
  .hc-mint__banner-content:after {
    background: url(/static/media/bottomlayer.549281c35f1aabddba8b.png)
      no-repeat;
    background-size: 100% 100%;
    bottom: -0.2vh;
    content: "";
    height: 20vh;
    left: 0;
    opacity: 0.9;
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  .hc-mint__banner {
    height: auto;
    margin-top: 0;
    max-height: none;
    min-height: 0;
    min-height: auto;
  }
  .hc-min__banner-mobile:after {
    bottom: -0.2vh;
    opacity: 0.9;
  }
  .hc-min__banner-mobile:after,
  .hc-min__banner-mobile:before {
    background: url(/static/media/bottomlayer.549281c35f1aabddba8b.png)
      no-repeat;
    background-size: 100% 100%;
    content: "";
    height: 10vh;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  .hc-min__banner-mobile:before {
    bottom: -10.2vh;
    opacity: 0.7;
    transform: rotate(180deg);
  }
  .hc-mint__bannerInner-col--left {
    margin-top: -14vh;
  }
  .hc-mint__card-initialSales {
    border: 0.25vw solid var(--gradinet_right);
    border-radius: 2vw;
    margin-bottom: 1vh;
    padding: 3vw;
    width: 90vw;
  }
  .hc-mint__card-initialSales .title {
    font-size: 2.5vh;
  }
  .hc-mint__card-initialSales p {
    font-size: 3.4vw;
  }
  .hc-mint__col-paddingLeft {
    padding-right: 1vw !important;
  }
  .hc-mint__col-paddingRight {
    padding-left: 1vw !important;
  }
  .hc-mint__initialSales--border {
    border: 0.6vw solid var(--gradinet_right);
    border-radius: 1vw;
    height: 4vh;
    padding: 0.5vw;
  }
  .hc-mint__initialSales--progress {
    border-radius: 1vw;
    font-size: 4vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
  .hc-mint__button-mint {
    border-radius: 1vw;
    font-size: 4.5vw;
  }
  .hc-mint__button-mint .header_wallet {
    height: 2vh;
    width: 2vh;
  }
  .hc-mint__banner--desc {
    margin-bottom: 5vh !important;
    z-index: 2;
  }
  .hc-mint__content-title {
    display: flex;
    flex-direction: column;
    font-size: 5.9vw;
    line-height: 11.5vw;
    white-space: nowrap;
  }
  .hc-mint__content-title.fw_600 {
    font-weight: 600;
  }
  .hc-mint__swiper-wrap {
    margin-top: 3vh;
  }
  .hc-mint__swiper-wrap.gallery-card__swiperWrapper .hc-swiper__arrow--left,
  .hc-mint__swiper-wrap.gallery-card__swiperWrapper .hc-swiper__arrow--right {
    height: 4vw;
    width: 4vw;
  }
  .hc-mint__content-title span {
    font-size: 4.5vh;
  }
  .mint-margin__top {
    margin-top: 5vh;
  }
  .hc-mint__content-subtitle {
    font-size: 2.5vh;
    line-height: 4.8vh;
  }
  .mint-property__imageWrapper {
    height: 50vw;
    max-height: 50vw;
    max-width: 50vw;
    min-height: 50vw;
    min-width: 50vw;
    width: 50vw;
  }
  .section-roadMap {
    margin-bottom: 5vh;
    margin-top: 5vh;
  }
  .hc-mint__card-timerWraper {
    border: 0.13vw solid var(--gradinet_right);
    border-radius: 0.2vw;
    font-size: 4vh;
    letter-spacing: 0.1vw;
    margin-top: 3vh;
    min-width: 70vw;
    padding: 1vh 2vw;
  }
  .projects_hr {
    margin-bottom: 3vh;
    margin-top: 4vh;
  }
  .project_bottom_section {
    top: 20vh;
  }
  .projects__details {
    gap: 6vw;
  }
  .projects__detatils-row--label,
  .projects__detatils-row--value {
    font-size: 1.5vh;
  }
  .project__list--searchContainer {
    min-width: 100%;
    width: 100%;
  }
  .project__list-cards .hc-card__nft .projectcard_wrapper_sep {
    border-radius: 0.5vh 0.5vh 0 0;
    height: 15vh;
    max-height: 15vh;
    min-height: 15vh;
  }
  .project__list-cards
    .hc-card__nft
    .nftcard_detailwrapper.project-card__details {
    min-height: 4vh;
  }
  .project__list-cards .hc-card__nft .nftcard_detailwrapper {
    padding: 0.6vh 1vh;
  }
  .project-card__title {
    font-size: 1.8vh;
    width: 18vw;
  }
  .projectcard_foot-btn--gradient {
    border-radius: 0.2vh;
    font-size: 1.3vh;
    padding: 0.4vh 1.2vw;
  }
  .project_bottom_section-empty {
    min-height: 35vh;
  }
  .hc-mint__banner--desc.projectInfo_banner--desc {
    margin-bottom: 0 !important;
  }
  .mint-bottom__content {
    margin-top: 5vh;
  }
  .gallery-card__swiper .card-gallery {
    height: 22vh;
    max-height: 22vh;
    max-width: 45vw;
    min-height: 22vh;
    min-width: 45vw;
    padding-left: 2vw;
    padding-right: 2vw;
    width: 45vw;
  }
  .gallery-card__swiper .swiper-slide {
    margin-right: 0 !important;
  }
  .gallery-card__swiper .card-gallery__image--wrapper {
    border-radius: 1.3vw;
    height: 28vw;
    max-height: 28vw;
    max-width: 100%;
    min-height: 28vw;
    min-width: 100%;
    overflow: hidden;
    width: 100%;
  }
  .gallery-card__swiper .card-gallery__title {
    margin-top: 2vh;
  }
  .gallery-card__swiper.gallery-card__swiper .card-gallery__title p {
    font-size: 4vw;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--left svg,
  .gallery-card__swiperWrapper .hc-swiper__arrow--right svg {
    font-size: 3vh;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--right {
    right: -4%;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--left {
    left: -4%;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--left img,
  .gallery-card__swiperWrapper .hc-swiper__arrow--right img {
    height: auto;
    width: auto;
  }
  .gallery-card__swiperWrapper .hc-swiper__arrow--left,
  .gallery-card__swiperWrapper .hc-swiper__arrow--right {
    top: 30%;
  }
  .gallery-card__swiper .rewards_card {
    max-width: 90vw;
    min-width: 90vw;
    width: 90vw;
  }
  .swiper-button-next1-news svg,
  .swiper-button-prev1-news svg {
    font-size: 2.5vh;
  }
  .swiper-button-prev1-news.hc-swiper__arrow--left {
    left: -5%;
  }
  .gallery-card__swiper .rewards_card {
    border-radius: 2vw;
    padding: 3vw 3vw 1vw;
  }
  .gallery-card__swiper .rewards_card .hc-mint__banner--desc {
    margin-bottom: 2vh !important;
  }
  .banner_section.banner_section_content.claim-section {
    padding-top: 18vh;
  }
  .claim-value__wrapper {
    gap: 4.5vw;
    margin-top: 3vh;
  }
  .value__wrapper-blue {
    border: 0.27vh solid var(--blue_200);
    border-radius: 0.2vw;
    gap: 1vw;
    min-height: 5vh;
    padding: 0.8vh 3vw;
  }
  .value__wrapper-blue .title {
    font-size: 1.5vh;
  }
  .value__wrapper-blue .value {
    font-size: 1.7vh;
  }
  .value__wrapper-image {
    align-items: center;
    display: flex;
    gap: 1.2vw;
  }
  .value__wrapper-image img {
    width: 2.8vh;
  }
  .hh-stake__subtitle {
    font-size: 1.9vh;
    margin-top: 4vh;
  }
  .hh-stake__countdown {
    margin-top: 2vh;
  }
  .hh-stake__countdown span {
    font-size: 4.5vh;
  }
  .stake-tab__wrapper {
    gap: 2vh;
    padding: 2.3vw;
  }
  .stacking_tab {
    align-items: center;
    border-radius: 0.8vw;
    cursor: pointer;
    display: flex;
    font-size: 1.8vh;
    font-weight: 600;
    gap: 2vw;
    padding: 1.8vw 2.5vw;
  }
  .stacking_tab img {
    width: 4.5vw;
  }
  .stake-actions {
    align-items: start !important;
    flex-direction: column;
    gap: 5vw;
    margin-bottom: 5vh;
    margin-top: 5vh;
  }
  .stake--searchContainer,
  .stake-actions .project__list--searchContainer {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }
  .react-select-2-wrap {
    width: 100%;
  }
  .hh-nft__text-sm {
    font-size: 1vh;
    margin-bottom: 0.8vh;
  }
  .stake-grid {
    grid-column-gap: 3vw;
    grid-row-gap: 5vh;
    column-gap: 3vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 8vh;
    row-gap: 5vh;
  }
  .box1 {
    background: red;
    height: 300px;
  }
  .white {
    background: #fff;
    height: 100%;
    width: 17.5vw;
  }
  .stake-grid .nft_card.hc-card__nft-height {
    max-width: 43.5vw;
    min-width: 43.5vw;
    width: 43.5vw;
  }
  .stake-grid .hc-nft__card-title {
    margin-bottom: 0.5vh !important;
  }
  .stake-grid .hc-card__nft-height.nft_card .nftcard_detailwrapper {
    border-top-left-radius: 0.6vh;
    border-top-right-radius: 0.6vh;
    margin-top: -1vh;
    padding: 1.1vh;
  }
  .stake-grid .hc-card__nft-height.nft_card .nftImg {
    height: 20vh;
    max-height: 20vh;
    min-height: 20vh;
  }
  .stake-grid .bodygradientBtn,
  .stake-grid .nftcard_btnviolet {
    font-size: 1.15vh;
    padding: 0.8vh 3vh;
  }
  .stake-grid .card_status {
    font-size: 1.3vh;
  }
  .stake-grid .nftcard_statuslabel {
    height: 2.8vh;
  }
  .stack-button__wrap {
    margin-top: 3vh;
  }
  .stack__button-submit {
    padding: 0.7vh 4vw;
  }
  .collection-info__header {
    gap: 1.4vw;
    width: 75%;
  }
  .collection-info__profile-image {
    border-radius: 2vw;
    height: 40vw;
    max-height: 40vw;
    max-width: 50vw;
    min-height: 40vw;
    min-width: 50vw;
    width: 50vw;
  }
  .collection-info__profile-name {
    font-size: 2.8vh;
    margin-bottom: 3vh !important;
    margin-top: 3vh;
  }
  .collection-grid {
    grid-gap: 2vw;
    grid-row-gap: 3vh;
    display: grid;
    gap: 2vw;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3vh;
  }
  .collection__image-wrapper {
    border-radius: 1.7vw;
    height: 15vh;
    max-height: 15vh;
    max-width: 42.5vw;
    min-height: 15vh;
    min-width: 42.5vw;
    width: 42.5vw;
  }
  .collection__image-wrapper--name {
    font-size: 2vh;
    margin-top: 2vh;
  }
  .collection-info__grid-title {
    font-size: 3vh;
    font-weight: 600;
    margin-bottom: 3vh !important;
  }
  .hc-collection__modal-imageWrapper {
    border-radius: 2vw;
    height: 30vh;
    max-height: 30vh;
    min-height: 30vh;
  }
  .referral_tree-header {
    height: 8vw;
    min-width: 56vw;
    padding-bottom: 4vw;
    padding-top: 4vw;
  }
  .referral_tree-header p {
    font-size: 4vw;
  }
  .referral_tree-header:after {
    height: 5vw;
    top: 8vw;
    width: 0.6vw;
  }
  .refferral_tree-body {
    margin-top: 5vw;
  }
  .refferral_tree-children--content {
    max-width: 56vw;
    min-width: 56vw;
    padding: 2vw 3vw;
    width: 56vw;
  }
  .refferral_tree-body {
    padding-bottom: 5vw;
    padding-top: 5vw;
  }
  .refferral_tree-children--content p {
    text-wrap: nowrap;
    font-size: 3vw;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 50vw;
  }
  .refferral_tree-children-border--center {
    height: 5vw;
    top: -5vw;
    width: 0.2vh;
  }
  .refferral_tree-children-border--right {
    height: 0.2vh;
    top: -5vw;
    width: 50%;
  }
  .refferral_tree-children-border--left {
    top: -5vw;
  }
  .refferral_tree-children {
    padding-right: 5vw;
  }
  .referral-buttons {
    gap: 4vw;
  }
  .refferral_tree-body.justifyContentCenter,
  .refferral_tree-body.justifyContentStart {
    justify-content: start;
  }
  .justifyContentCenterMob.justifyContentCenter,
  .justifyContentCenterMob.justifyContentStart {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .nft-profile__image-wrap {
    height: 21vh;
    max-height: 21vh;
    max-width: 21vh;
    min-height: 21vh;
    min-width: 21vh;
    width: 21vh;
  }
}
[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}
[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}
[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}
[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}
[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}
[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}
[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}
[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}
[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}
[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}
[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}
[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}
[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}
[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}
[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}
[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}
[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}
[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}
[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}
[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}
[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}
[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}
[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}
[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}
[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}
[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}
[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}
[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}
[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}
[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}
[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}
[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}
[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}
[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}
[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}
[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}
[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}
[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}
[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}
[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}
[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}
[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}
[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}
[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}
[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}
[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}
[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}
[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}
[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}
[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}
[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}
[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}
[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}
[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}
[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}
[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}
[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}
[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}
[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}
[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}
[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}
[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}
[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}
[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}
[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}
[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}
[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}
[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}
[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}
[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}
[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}
[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}
[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}
[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}
[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}
[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}
[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}
[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}
[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}
[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}
[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}
[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}
[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}
[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}
[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}
[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}
[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}
[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}
[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}
[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}
[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}
[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}
[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}
[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}
[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}
[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}
[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}
[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}
[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}
[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}
[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}
[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}
[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}
[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}
[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}
[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}
[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}
[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}
[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}
[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}
[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}
[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}
[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}
[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}
[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}
[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}
[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}
[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}
[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}
[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}
[data-aos][data-aos][data-aos-easing="linear"],
body[data-aos-easing="linear"] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
[data-aos][data-aos][data-aos-easing="ease"],
body[data-aos-easing="ease"] [data-aos] {
  transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-easing="ease-in"],
body[data-aos-easing="ease-in"] [data-aos] {
  transition-timing-function: ease-in;
}
[data-aos][data-aos][data-aos-easing="ease-out"],
body[data-aos-easing="ease-out"] [data-aos] {
  transition-timing-function: ease-out;
}
[data-aos][data-aos][data-aos-easing="ease-in-out"],
body[data-aos-easing="ease-in-out"] [data-aos] {
  transition-timing-function: ease-in-out;
}
[data-aos][data-aos][data-aos-easing="ease-in-back"],
body[data-aos-easing="ease-in-back"] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
[data-aos][data-aos][data-aos-easing="ease-out-back"],
body[data-aos-easing="ease-out-back"] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-back"],
body[data-aos-easing="ease-in-out-back"] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-aos][data-aos][data-aos-easing="ease-in-sine"],
body[data-aos-easing="ease-in-sine"] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
[data-aos][data-aos][data-aos-easing="ease-out-sine"],
body[data-aos-easing="ease-out-sine"] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-sine"],
body[data-aos-easing="ease-in-out-sine"] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
[data-aos][data-aos][data-aos-easing="ease-in-quad"],
body[data-aos-easing="ease-in-quad"] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing="ease-out-quad"],
body[data-aos-easing="ease-out-quad"] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-quad"],
body[data-aos-easing="ease-in-out-quad"] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos][data-aos][data-aos-easing="ease-in-cubic"],
body[data-aos-easing="ease-in-cubic"] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing="ease-out-cubic"],
body[data-aos-easing="ease-out-cubic"] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-cubic"],
body[data-aos-easing="ease-in-out-cubic"] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos][data-aos][data-aos-easing="ease-in-quart"],
body[data-aos-easing="ease-in-quart"] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing="ease-out-quart"],
body[data-aos-easing="ease-out-quart"] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-quart"],
body[data-aos-easing="ease-in-out-quart"] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos^="fade"][data-aos^="fade"] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^="fade"][data-aos^="fade"].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}
[data-aos="fade-up"] {
  transform: translate3d(0, 100px, 0);
}
[data-aos="fade-down"] {
  transform: translate3d(0, -100px, 0);
}
[data-aos="fade-right"] {
  transform: translate3d(-100px, 0, 0);
}
[data-aos="fade-left"] {
  transform: translate3d(100px, 0, 0);
}
[data-aos="fade-up-right"] {
  transform: translate3d(-100px, 100px, 0);
}
[data-aos="fade-up-left"] {
  transform: translate3d(100px, 100px, 0);
}
[data-aos="fade-down-right"] {
  transform: translate3d(-100px, -100px, 0);
}
[data-aos="fade-down-left"] {
  transform: translate3d(100px, -100px, 0);
}
[data-aos^="zoom"][data-aos^="zoom"] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^="zoom"][data-aos^="zoom"].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}
[data-aos="zoom-in"] {
  transform: scale(0.6);
}
[data-aos="zoom-in-up"] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}
[data-aos="zoom-in-down"] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}
[data-aos="zoom-in-right"] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}
[data-aos="zoom-in-left"] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}
[data-aos="zoom-out"] {
  transform: scale(1.2);
}
[data-aos="zoom-out-up"] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}
[data-aos="zoom-out-down"] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}
[data-aos="zoom-out-right"] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}
[data-aos="zoom-out-left"] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}
[data-aos^="slide"][data-aos^="slide"] {
  transition-property: transform;
}
[data-aos^="slide"][data-aos^="slide"].aos-animate {
  transform: translateZ(0);
}
[data-aos="slide-up"] {
  transform: translate3d(0, 100%, 0);
}
[data-aos="slide-down"] {
  transform: translate3d(0, -100%, 0);
}
[data-aos="slide-right"] {
  transform: translate3d(-100%, 0, 0);
}
[data-aos="slide-left"] {
  transform: translate3d(100%, 0, 0);
}
[data-aos^="flip"][data-aos^="flip"] {
  backface-visibility: hidden;
  transition-property: transform;
}
[data-aos="flip-left"] {
  transform: perspective(2500px) rotateY(-100deg);
}
[data-aos="flip-left"].aos-animate {
  transform: perspective(2500px) rotateY(0);
}
[data-aos="flip-right"] {
  transform: perspective(2500px) rotateY(100deg);
}
[data-aos="flip-right"].aos-animate {
  transform: perspective(2500px) rotateY(0);
}
[data-aos="flip-up"] {
  transform: perspective(2500px) rotateX(-100deg);
}
[data-aos="flip-up"].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
[data-aos="flip-down"] {
  transform: perspective(2500px) rotateX(100deg);
}
[data-aos="flip-down"].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
@font-face {
  font-family: swiper-icons;
  font-style: normal;
  font-weight: 400;
  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");
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: ease;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  width: 100%;
  z-index: 1;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.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 {
  backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  -ms-overflow-style: none;
  overflow: auto;
  scrollbar-width: none;
}
.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 {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, #00000080, #0000);
}
.swiper-lazy-preloader {
  border: 4px solid #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid #0000;
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s linear infinite;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: var(--swiper-theme-color);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: 44px;
  height: var(--swiper-navigation-size);
  justify-content: center;
  margin-top: -22px;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  position: absolute;
  top: 50%;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 27px;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  z-index: 10;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  width: 100%;
}
.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 44px;
  font-size: var(--swiper-navigation-size);
  font-variant: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none !important;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  left: auto;
  right: 10px;
  right: var(--swiper-navigation-sides-offset, 10px);
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/*!
 * https://github.com/arqex/react-datetime
 */
.rdt {
  position: relative;
}
.rdtPicker {
  background: #fff;
  border: 1px solid #f9f9f9;
  box-shadow: 0 1px 3px #0000001a;
  display: none;
  margin-top: 1px;
  min-width: 250px;
  padding: 4px;
  position: absolute;
  z-index: 99999 !important;
}
.rdtOpen .rdtPicker {
  display: block;
}
.rdtStatic .rdtPicker {
  box-shadow: none;
  position: static;
}
.rdtPicker .rdtTimeToggle {
  text-align: center;
}
.rdtPicker table {
  margin: 0;
  width: 100%;
}
.rdtPicker td,
.rdtPicker th {
  height: 28px;
  text-align: center;
}
.rdtPicker td {
  cursor: pointer;
}
.rdtPicker .rdtTimeToggle:hover,
.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover {
  background: #eee;
  cursor: pointer;
}
.rdtPicker td.rdtNew,
.rdtPicker td.rdtOld {
  color: #999;
}
.rdtPicker td.rdtToday {
  position: relative;
}
.rdtPicker td.rdtToday:before {
  border-bottom: 7px solid #428bca;
  border-left: 7px solid #0000;
  border-top-color: #0003;
  bottom: 4px;
  content: "";
  display: inline-block;
  position: absolute;
  right: 4px;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 #00000040;
}
.rdtPicker td.rdtActive.rdtToday:before {
  border-bottom-color: #fff;
}
.rdtPicker td.rdtDisabled,
.rdtPicker td.rdtDisabled:hover {
  background: none;
  color: #999;
  cursor: not-allowed;
}
.rdtPicker td span.rdtOld {
  color: #999;
}
.rdtPicker td span.rdtDisabled,
.rdtPicker td span.rdtDisabled:hover {
  background: none;
  color: #999;
  cursor: not-allowed;
}
.rdtPicker th {
  border-bottom: 1px solid #f9f9f9;
}
.rdtPicker .dow {
  border-bottom: none;
  cursor: default;
  width: 14.2857%;
}
.rdtPicker th.rdtSwitch {
  width: 100px;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 21px;
  vertical-align: top;
}
.rdtNext span,
.rdtPrev span {
  -webkit-touch-callout: none;
  display: block;
  -webkit-user-select: none;
  user-select: none;
}
.rdtPicker th.rdtDisabled,
.rdtPicker th.rdtDisabled:hover {
  background: none;
  color: #999;
  cursor: not-allowed;
}
.rdtPicker thead tr:first-of-type th {
  cursor: pointer;
}
.rdtPicker thead tr:first-of-type th:hover {
  background: #eee;
}
.rdtPicker tfoot {
  border-top: 1px solid #f9f9f9;
}
.rdtPicker button {
  background: none;
  border: none;
  cursor: pointer;
}
.rdtPicker button:hover {
  background-color: #eee;
}
.rdtPicker thead button {
  height: 100%;
  width: 100%;
}
td.rdtMonth,
td.rdtYear {
  cursor: pointer;
  height: 50px;
  width: 25%;
}
td.rdtMonth:hover,
td.rdtYear:hover {
  background: #eee;
}
.rdtCounters {
  display: inline-block;
}
.rdtCounters > div {
  float: left;
}
.rdtCounter {
  height: 100px;
  width: 40px;
}
.rdtCounterSeparator {
  line-height: 100px;
}
.rdtCounter .rdtBtn {
  -webkit-touch-callout: none;
  cursor: pointer;
  display: block;
  height: 40%;
  line-height: 40px;
  -webkit-user-select: none;
  user-select: none;
}
.rdtCounter .rdtBtn:hover {
  background: #eee;
}
.rdtCounter .rdtCount {
  font-size: 1.2em;
  height: 20%;
}
.rdtMilli {
  padding-left: 8px;
  vertical-align: middle;
  width: 48px;
}
.rdtMilli input {
  font-size: 1.2em;
  margin-top: 37px;
  width: 100%;
}
.rdtTime td {
  cursor: default;
}
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow,
.react-datepicker__navigation-icon:before,
.react-datepicker__year-read-view--down-arrow {
  border-color: #ccc;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}
.react-datepicker-wrapper {
  border: 0;
  display: inline-block;
  padding: 0;
}
.react-datepicker {
  background-color: #fff;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  color: #000;
  display: inline-block;
  font-family: Helvetica Neue, helvetica, arial, sans-serif;
  font-size: 0.8rem;
  line-height: normal;
  position: relative;
}
.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}
.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker-popper {
  line-height: 0;
  z-index: 1;
}
.react-datepicker-popper .react-datepicker__triangle {
  stroke: #aeaeae;
}
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle {
  fill: #f0f0f0;
  color: #f0f0f0;
}
.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle {
  fill: #fff;
  color: #fff;
}
.react-datepicker__header {
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
  text-align: center;
}
.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0.3rem;
}
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__year-dropdown-container--select {
  display: inline-block;
  margin: 0 15px;
}
.react-datepicker-time__header,
.react-datepicker-year-header,
.react-datepicker__current-month {
  color: #000;
  font-size: 0.944rem;
  font-weight: 700;
  margin-top: 0;
}
h2.react-datepicker__current-month {
  margin: 0;
  padding: 0;
}
.react-datepicker-time__header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.react-datepicker__navigation {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-align: center;
  text-indent: -999em;
  top: 2px;
  width: 32px;
  z-index: 1;
}
.react-datepicker__navigation--previous {
  left: 2px;
}
.react-datepicker__navigation--next {
  right: 2px;
}
.react-datepicker__navigation--next--with-time:not(
    .react-datepicker__navigation--next--with-today-button
  ) {
  right: 85px;
}
.react-datepicker__navigation--years {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0;
}
.react-datepicker__navigation--years-previous {
  top: 4px;
}
.react-datepicker__navigation--years-upcoming {
  top: -4px;
}
.react-datepicker__navigation:hover :before {
  border-color: #a6a6a6;
}
.react-datepicker__navigation-icon {
  font-size: 20px;
  position: relative;
  top: -1px;
  width: 0;
}
.react-datepicker__navigation-icon--next {
  left: -2px;
}
.react-datepicker__navigation-icon--next:before {
  left: -7px;
  transform: rotate(45deg);
}
.react-datepicker__navigation-icon--previous {
  right: -2px;
}
.react-datepicker__navigation-icon--previous:before {
  right: -7px;
  transform: rotate(225deg);
}
.react-datepicker__month-container {
  float: left;
}
.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}
.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  margin: 2px;
  width: 4rem;
}
.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  margin: 2px;
  width: 4rem;
}
.react-datepicker__input-time-container {
  clear: both;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
  width: 100%;
}
.react-datepicker__input-time-container .react-datepicker-time__caption,
.react-datepicker__input-time-container
  .react-datepicker-time__input-container {
  display: inline-block;
}
.react-datepicker__input-time-container
  .react-datepicker-time__input-container
  .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}
.react-datepicker__input-time-container
  .react-datepicker-time__input-container
  .react-datepicker-time__input
  input {
  width: auto;
}
.react-datepicker__input-time-container
  .react-datepicker-time__input-container
  .react-datepicker-time__input
  input[type="time"]::-webkit-inner-spin-button,
.react-datepicker__input-time-container
  .react-datepicker-time__input-container
  .react-datepicker-time__input
  input[type="time"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-datepicker__input-time-container
  .react-datepicker-time__input-container
  .react-datepicker-time__input
  input[type="time"] {
  -moz-appearance: textfield;
}
.react-datepicker__input-time-container
  .react-datepicker-time__input-container
  .react-datepicker-time__delimiter {
  display: inline-block;
  margin-left: 5px;
}
.react-datepicker__time-container {
  border-left: 1px solid #aeaeae;
  float: right;
  width: 85px;
}
.react-datepicker__time-container--with-today-button {
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline;
  position: absolute;
  right: -87px;
  top: 0;
}
.react-datepicker__time-container .react-datepicker__time {
  background: #fff;
  border-bottom-right-radius: 0.3rem;
  position: relative;
}
.react-datepicker__time-container
  .react-datepicker__time
  .react-datepicker__time-box {
  border-bottom-right-radius: 0.3rem;
  margin: 0 auto;
  overflow-x: hidden;
  text-align: center;
  width: 85px;
}
.react-datepicker__time-container
  .react-datepicker__time
  .react-datepicker__time-box
  ul.react-datepicker__time-list {
  box-sizing: initial;
  height: calc(195px + 0.85rem);
  list-style: none;
  margin: 0;
  overflow-y: scroll;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.react-datepicker__time-container
  .react-datepicker__time
  .react-datepicker__time-box
  ul.react-datepicker__time-list
  li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}
.react-datepicker__time-container
  .react-datepicker__time
  .react-datepicker__time-box
  ul.react-datepicker__time-list
  li.react-datepicker__time-list-item:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}
.react-datepicker__time-container
  .react-datepicker__time
  .react-datepicker__time-box
  ul.react-datepicker__time-list
  li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: #fff;
  font-weight: 700;
}
.react-datepicker__time-container
  .react-datepicker__time
  .react-datepicker__time-box
  ul.react-datepicker__time-list
  li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}
.react-datepicker__time-container
  .react-datepicker__time
  .react-datepicker__time-box
  ul.react-datepicker__time-list
  li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}
.react-datepicker__time-container
  .react-datepicker__time
  .react-datepicker__time-box
  ul.react-datepicker__time-list
  li.react-datepicker__time-list-item--disabled:hover {
  background-color: initial;
  cursor: default;
}
.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  line-height: 1.7rem;
  margin: 0.166rem;
  text-align: center;
  width: 1.7rem;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable:not(
    .react-datepicker__week-number--selected,
    .react-datepicker__week-number--keyboard-selected
  ):hover {
  background-color: #f0f0f0;
  border-radius: 0.3rem;
}
.react-datepicker__week-number--selected {
  background-color: #216ba5;
  border-radius: 0.3rem;
  color: #fff;
}
.react-datepicker__week-number--selected:hover {
  background-color: #1d5d90;
}
.react-datepicker__week-number--keyboard-selected {
  background-color: #2a87d0;
  border-radius: 0.3rem;
  color: #fff;
}
.react-datepicker__week-number--keyboard-selected:hover {
  background-color: #1d5d90;
}
.react-datepicker__day-names {
  margin-bottom: -8px;
  white-space: nowrap;
}
.react-datepicker__week {
  white-space: nowrap;
}
.react-datepicker__day,
.react-datepicker__day-name,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  line-height: 1.7rem;
  margin: 0.166rem;
  text-align: center;
  width: 1.7rem;
}
.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}
.react-datepicker__day:not([aria-disabled="true"]):hover,
.react-datepicker__month-text:not([aria-disabled="true"]):hover,
.react-datepicker__quarter-text:not([aria-disabled="true"]):hover,
.react-datepicker__year-text:not([aria-disabled="true"]):hover {
  background-color: #f0f0f0;
  border-radius: 0.3rem;
}
.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: 700;
}
.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  background-color: #3dcc4a;
  border-radius: 0.3rem;
  color: #fff;
}
.react-datepicker__day--highlighted:not([aria-disabled="true"]):hover,
.react-datepicker__month-text--highlighted:not([aria-disabled="true"]):hover,
.react-datepicker__quarter-text--highlighted:not([aria-disabled="true"]):hover,
.react-datepicker__year-text--highlighted:not([aria-disabled="true"]):hover {
  background-color: #32be3f;
}
.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: #f0f;
}
.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}
.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  background-color: #ff6803;
  border-radius: 0.3rem;
  color: #fff;
  position: relative;
}
.react-datepicker__day--holidays .overlay,
.react-datepicker__month-text--holidays .overlay,
.react-datepicker__quarter-text--holidays .overlay,
.react-datepicker__year-text--holidays .overlay {
  background-color: #333;
  border-radius: 4px;
  bottom: 100%;
  color: #fff;
  left: 50%;
  opacity: 0;
  padding: 4px;
  position: absolute;
  transform: translateX(-50%);
  transition: visibility 0s, opacity 0.3s ease-in-out;
  visibility: hidden;
  white-space: nowrap;
}
.react-datepicker__day--holidays:not([aria-disabled="true"]):hover,
.react-datepicker__month-text--holidays:not([aria-disabled="true"]):hover,
.react-datepicker__quarter-text--holidays:not([aria-disabled="true"]):hover,
.react-datepicker__year-text--holidays:not([aria-disabled="true"]):hover {
  background-color: #cf5300;
}
.react-datepicker__day--holidays:hover .overlay,
.react-datepicker__month-text--holidays:hover .overlay,
.react-datepicker__quarter-text--holidays:hover .overlay,
.react-datepicker__year-text--holidays:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.react-datepicker__day--in-range,
.react-datepicker__day--in-selecting-range,
.react-datepicker__day--selected,
.react-datepicker__month-text--in-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--selected,
.react-datepicker__quarter-text--in-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__year-text--in-range,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--selected {
  background-color: #216ba5;
  border-radius: 0.3rem;
  color: #fff;
}
.react-datepicker__day--in-range:not([aria-disabled="true"]):hover,
.react-datepicker__day--in-selecting-range:not([aria-disabled="true"]):hover,
.react-datepicker__day--selected:not([aria-disabled="true"]):hover,
.react-datepicker__month-text--in-range:not([aria-disabled="true"]):hover,
.react-datepicker__month-text--in-selecting-range:not(
    [aria-disabled="true"]
  ):hover,
.react-datepicker__month-text--selected:not([aria-disabled="true"]):hover,
.react-datepicker__quarter-text--in-range:not([aria-disabled="true"]):hover,
.react-datepicker__quarter-text--in-selecting-range:not(
    [aria-disabled="true"]
  ):hover,
.react-datepicker__quarter-text--selected:not([aria-disabled="true"]):hover,
.react-datepicker__year-text--in-range:not([aria-disabled="true"]):hover,
.react-datepicker__year-text--in-selecting-range:not(
    [aria-disabled="true"]
  ):hover,
.react-datepicker__year-text--selected:not([aria-disabled="true"]):hover {
  background-color: #1d5d90;
}
.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  background-color: #bad9f1;
  border-radius: 0.3rem;
  color: #000;
}
.react-datepicker__day--keyboard-selected:not([aria-disabled="true"]):hover,
.react-datepicker__month-text--keyboard-selected:not(
    [aria-disabled="true"]
  ):hover,
.react-datepicker__quarter-text--keyboard-selected:not(
    [aria-disabled="true"]
  ):hover,
.react-datepicker__year-text--keyboard-selected:not(
    [aria-disabled="true"]
  ):hover {
  background-color: #1d5d90;
}
.react-datepicker__day--in-selecting-range:not(
    .react-datepicker__day--in-range,
    .react-datepicker__month-text--in-range,
    .react-datepicker__quarter-text--in-range,
    .react-datepicker__year-text--in-range
  ),
.react-datepicker__month-text--in-selecting-range:not(
    .react-datepicker__day--in-range,
    .react-datepicker__month-text--in-range,
    .react-datepicker__quarter-text--in-range,
    .react-datepicker__year-text--in-range
  ),
.react-datepicker__quarter-text--in-selecting-range:not(
    .react-datepicker__day--in-range,
    .react-datepicker__month-text--in-range,
    .react-datepicker__quarter-text--in-range,
    .react-datepicker__year-text--in-range
  ),
.react-datepicker__year-text--in-selecting-range:not(
    .react-datepicker__day--in-range,
    .react-datepicker__month-text--in-range,
    .react-datepicker__quarter-text--in-range,
    .react-datepicker__year-text--in-range
  ) {
  background-color: #216ba580;
}
.react-datepicker__month--selecting-range
  .react-datepicker__day--in-range:not(
    .react-datepicker__day--in-selecting-range,
    .react-datepicker__month-text--in-selecting-range,
    .react-datepicker__quarter-text--in-selecting-range,
    .react-datepicker__year-text--in-selecting-range
  ),
.react-datepicker__month--selecting-range
  .react-datepicker__month-text--in-range:not(
    .react-datepicker__day--in-selecting-range,
    .react-datepicker__month-text--in-selecting-range,
    .react-datepicker__quarter-text--in-selecting-range,
    .react-datepicker__year-text--in-selecting-range
  ),
.react-datepicker__month--selecting-range
  .react-datepicker__quarter-text--in-range:not(
    .react-datepicker__day--in-selecting-range,
    .react-datepicker__month-text--in-selecting-range,
    .react-datepicker__quarter-text--in-selecting-range,
    .react-datepicker__year-text--in-selecting-range
  ),
.react-datepicker__month--selecting-range
  .react-datepicker__year-text--in-range:not(
    .react-datepicker__day--in-selecting-range,
    .react-datepicker__month-text--in-selecting-range,
    .react-datepicker__quarter-text--in-selecting-range,
    .react-datepicker__year-text--in-selecting-range
  ),
.react-datepicker__year--selecting-range
  .react-datepicker__day--in-range:not(
    .react-datepicker__day--in-selecting-range,
    .react-datepicker__month-text--in-selecting-range,
    .react-datepicker__quarter-text--in-selecting-range,
    .react-datepicker__year-text--in-selecting-range
  ),
.react-datepicker__year--selecting-range
  .react-datepicker__month-text--in-range:not(
    .react-datepicker__day--in-selecting-range,
    .react-datepicker__month-text--in-selecting-range,
    .react-datepicker__quarter-text--in-selecting-range,
    .react-datepicker__year-text--in-selecting-range
  ),
.react-datepicker__year--selecting-range
  .react-datepicker__quarter-text--in-range:not(
    .react-datepicker__day--in-selecting-range,
    .react-datepicker__month-text--in-selecting-range,
    .react-datepicker__quarter-text--in-selecting-range,
    .react-datepicker__year-text--in-selecting-range
  ),
.react-datepicker__year--selecting-range
  .react-datepicker__year-text--in-range:not(
    .react-datepicker__day--in-selecting-range,
    .react-datepicker__month-text--in-selecting-range,
    .react-datepicker__quarter-text--in-selecting-range,
    .react-datepicker__year-text--in-selecting-range
  ) {
  background-color: #f0f0f0;
  color: #000;
}
.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  color: #ccc;
  cursor: default;
}
.react-datepicker__day--disabled .overlay,
.react-datepicker__month-text--disabled .overlay,
.react-datepicker__quarter-text--disabled .overlay,
.react-datepicker__year-text--disabled .overlay {
  background-color: #333;
  border-radius: 4px;
  bottom: 70%;
  color: #fff;
  left: 50%;
  opacity: 0;
  padding: 4px;
  position: absolute;
  transform: translateX(-50%);
  transition: visibility 0s, opacity 0.3s ease-in-out;
  visibility: hidden;
  white-space: nowrap;
}
.react-datepicker__input-container {
  display: inline-block;
  position: relative;
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  box-sizing: initial;
  padding: 0.5rem;
  position: absolute;
}
.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view,
.react-datepicker__year-read-view {
  border: 1px solid #0000;
  border-radius: 0.3rem;
  position: relative;
}
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover,
.react-datepicker__year-read-view:hover {
  cursor: pointer;
}
.react-datepicker__month-read-view:hover
  .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover
  .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover
  .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover
  .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover
  .react-datepicker__month-read-view--down-arrow,
.react-datepicker__year-read-view:hover
  .react-datepicker__year-read-view--down-arrow {
  border-top-color: #b3b3b3;
}
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow,
.react-datepicker__year-read-view--down-arrow {
  right: -16px;
  top: 0;
  transform: rotate(135deg);
}
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown,
.react-datepicker__year-dropdown {
  background-color: #f0f0f0;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  left: 25%;
  position: absolute;
  text-align: center;
  top: 30px;
  width: 50%;
  z-index: 1;
}
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover,
.react-datepicker__year-dropdown:hover {
  cursor: pointer;
}
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable,
.react-datepicker__year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}
.react-datepicker__month-option,
.react-datepicker__month-year-option,
.react-datepicker__year-option {
  display: block;
  line-height: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type,
.react-datepicker__year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type,
.react-datepicker__year-option:last-of-type {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
  -webkit-user-select: none;
  user-select: none;
}
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover,
.react-datepicker__year-option:hover {
  background-color: #ccc;
}
.react-datepicker__month-option:hover
  .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover
  .react-datepicker__navigation--years-upcoming,
.react-datepicker__year-option:hover
  .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}
.react-datepicker__month-option:hover
  .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover
  .react-datepicker__navigation--years-previous,
.react-datepicker__year-option:hover
  .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected,
.react-datepicker__year-option--selected {
  left: 15px;
  position: absolute;
}
.react-datepicker__close-icon {
  background-color: initial;
  border: 0;
  cursor: pointer;
  display: table-cell;
  height: 100%;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  right: 0;
  top: 0;
  vertical-align: middle;
}
.react-datepicker__close-icon:after {
  background-color: #216ba5;
  border-radius: 50%;
  color: #fff;
  content: "×";
  cursor: pointer;
  display: table-cell;
  font-size: 12px;
  height: 16px;
  line-height: 1;
  padding: 2px;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.react-datepicker__close-icon--disabled {
  cursor: default;
}
.react-datepicker__close-icon--disabled:after {
  background-color: #ccc;
  cursor: default;
}
.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  clear: left;
  cursor: pointer;
  font-weight: 700;
  padding: 5px 0;
  text-align: center;
}
.react-datepicker__portal {
  align-items: center;
  background-color: #000c;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 2147483647;
}
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__time-name {
  line-height: 3rem;
  width: 3rem;
}
@media (max-height: 550px), (max-width: 400px) {
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__time-name {
    line-height: 2rem;
    width: 2rem;
  }
}
.react-datepicker__portal .react-datepicker-time__header,
.react-datepicker__portal .react-datepicker__current-month {
  font-size: 1.44rem;
}
.react-datepicker__children-container {
  height: auto;
  margin: 0.4rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  width: 13.8rem;
}
.react-datepicker__aria-live {
  border: 0;
  clip-path: circle(0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.react-datepicker__calendar-icon {
  height: 1em;
  vertical-align: -0.125em;
  width: 1em;
}
