:root {
  --marquee-width: 100%;
  --marquee-height: 20vh;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(
    var(--marquee-width) / var(--marquee-elements-displayed)
  );
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  background-color: #000;
  color: #eee;
  overflow: hidden;
  position: relative;
}
.marquee:before,
.marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}
.marquee:before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}
.marquee:after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-1 * var(--marquee-element-width) * var(--marquee-elements))
    );
  }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  /* width: var(--marquee-element-width); */
  max-height: 100%;
  font-size: 1rem; /* 5rem; */
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  white-space: nowrap;
}

.marquee-content li img {
  width: 100%;
  /* height: 100%; */
  border: 2px solid #eee;
}

@media (max-width: 600px) {
  :root {
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }
  .marquee:before,
  .marquee:after {
    width: 5rem;
  }
}

.mt-safe {
  margin-top: 5rem;
}

.mil-accent {
  color: #ed5917;
}

.mil-animation-frame {
  display: none;
}

.main-logo {
  /* filter: invert(1); */
  filter: drop-shadow(1px 0px 1px black);
}
.mil-active .main-logo {
  filter: invert(0);
}

.hide {
  display: none !important;
}

.illustration-calculation {
  position: absolute;
  /* filter: invert(1); */
  object-fit: contain;
  width: 490px;
  height: 490px;
  right: -30px;
  top: -20px;
}

.illustration-calculation video {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.illustration-fallPaper {
  position: absolute;
  height: 92%;
  width: 400px;
  left: 0;
  filter: invert(1);

  /* transform: translate(0px, 0px) rotateZ(180deg);
  rotate: none;
  scale: none;
  transform: translate(0px, 0px) rotateY(180deg) rotateZ(-17deg);
  transform-style: preserve-3d; */
}

.illustration-url {
  position: absolute;
  /* filter: invert(1); */
  object-fit: cover;
  width: 600px;
  height: 600px;
  right: -10px;
  top: 100px;
  z-index: -1;
}

.illustration-url img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.illustration-accounting {
  position: absolute;
  /* filter: invert(1); */
  /* object-fit: cover; */
  width: 1100px;
  height: 650px;
  right: -100px;
  top: 0px;
  z-index: -1;
}

.illustration-accounting img {
  /* object-fit: contain; */
  /* filter: invert(1); */
  width: 100%;
  height: 100%;
}
.illustration-accountingDemo {
  position: absolute;
  /* object-fit: cover; */
  width: 500px;
  height: 500px;
  right: 200px;
  top: 100px;
  z-index: -1;
}

.illustration-accountingDemo img {
  object-fit: contain;
  /* filter: invert(1); */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.illustration-accountingDemo .img1 {
  filter: hue-rotate(45deg);
}

.illustration-gst {
  position: absolute;
  filter: grayscale(1);
  object-fit: cover;
  width: 700px;
  height: 700px;
  right: 50px;
  top: 10px;
  z-index: -1;
}

.illustration-gst img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.illustration-feature {
  position: absolute;
  filter: grayscale(1);
  object-fit: cover;
  width: 700px;
  height: 700px;
  right: 50px;
  top: 10px;
  z-index: -1;
}

.illustration-feature img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes slide-h {
  from {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  to {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes slide-h {
  from {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  to {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes move {
  from {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  to {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes move {
  from {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  to {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.mil-move-2 {
  -webkit-animation: move 5s linear infinite;
  animation: move 5s linear infinite;
}

@media screen and (max-width: 1200px) {
  .main-logo {
    filter: invert(0);
  }
}

.buttonInput {
  max-width: 400px;
}

.closeDemo .mil-menu-btn span,
.closeDemo .mil-menu-btn span:after,
.closeDemo .mil-menu-btn span:before {
  background-color: #fff;
}

.virtualDemo {
  opacity: 1;
  color: #fff;
  position: fixed;
  min-width: 100vw;
  min-height: 100vh;
  top: 0;
  left: -100vw;
  z-index: 1000;
}

.virtualFrame {
  opacity: 0;
}

.virtualDemoContainer {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: black;
}

.virtualHeader {
  color: #fff;
  height: 64px;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.virtualHeader h4 {
  color: #fff;
}

.virtualFrame {
  max-height: calc(100vh - 65px) !important;
  min-height: calc(100vh - 65px) !important;
  width: 100%;
}

.virtualFrame iframe {
  min-height: calc(100vh - 65px) !important;
}

.closeDemo {
  cursor: pointer;
}

.virtualLoader {
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.spinLoader {
  position: absolute;
  left: 49.5%;
  border: 4px solid #5a5a5a;
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite; /* Spin animation */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.countNumbers {
  display: flex;
  /* width: 30px; */
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}
.countNumbers .counter {
  opacity: 0;
  /* bottom: -30px; */
  /* width: 30px; */
  text-align: center;
  width: 100%;
  line-height: 1;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  position: absolute;
}

.virtualLoader p {
  color: #fff;
  opacity: 0;
  font-size: 20px;
  margin-top: 20px;
}

.mil-preloader1 {
  opacity: 1;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
}
.mil-preloader1 .mil-preloader-animation1 {
  opacity: 0;
  position: relative;
  height: 100vh;
  color: rgb(255, 255, 255);
}
.mil-preloader1 .mil-preloader-animation1 .mil-pos-abs {
  position: absolute;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mil-preloader1 .mil-preloader-animation1 .mil-pos-abs p {
  opacity: 0;
  margin-right: 15px;
}
@media screen and (max-width: 992px) {
  .mil-preloader1 .mil-preloader-animation1 .mil-pos-abs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mil-preloader1 .mil-preloader-animation1 .mil-pos-abs p {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.mil-preloader1 .mil-preloader-animation1 .mil-pos-abs .mil-reveal-frame {
  position: relative;
  padding: 0 30px;
}
.mil-preloader1 .mil-preloader-animation1 .mil-reveal-box1 {
  z-index: 4;
  position: absolute;
  opacity: 0;
  height: 100%;
  background-color: rgb(255, 75, 28);
}
.mil-preloader1.mil-hidden {
  pointer-events: none;
}

.virtualStart {
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  top: 50%;
  left: 50%;
  font-size: 32px;
  color: #fff;
  z-index: 1;
  /* transform: scale(0); */
}

/* Invoice scan demo */
.mil-card {
  min-height: 600px;
  width: 100%;
}

.mil-card .mil-card-body {
  display: flex;
  width: 100%;
  height: 600px;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: border 0.5s ease-in-out;
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

.mil-card-body.dz-drag-hover {
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

#invoiceFile {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-img img {
  /* filter: invert(1); */
  width: 100%;
  padding: 4px;
  height: calc(600px - 60px);
}

#invoiceItem li small {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 200;
}
#invoiceItem li p {
  margin-bottom: 0;
}
#invoiceItem li .badge {
  font-size: 8px;
  font-weight: 300;
  padding: 2px 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
}

.card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(600px - 60px);
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
  color: #000;
}
.mySwiper .swiper-pagination {
  color: #000 !important;
  filter: invert(1);
}
.mySwiper .swiper-pagination::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 90%;
  left: 50%;
  filter: invert(1);
  bottom: 2px;
  border-radius: 2px;
  transform: translateX(-50%);
  background-color: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
}

.scanningImg {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  object-fit: cover;
}
.scanningOverlay {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);
  top: 0;
  left: 0;
  z-index: 1;
}

#demoIframe {
  height: 1040px;
}

.brand-slider {
  pointer-events: none;
  margin-top: 5rem;
  margin-bottom: -7rem;
}
.brand-slider2 {
  pointer-events: none;
  margin-top: 2rem;
  margin-bottom: -5rem;
}

.brand-swiper {
  position: relative;
}

.brand-swiper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 10rem;
  filter: invert(1);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.brand-swiper::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 10rem;
  filter: invert(1);
  z-index: 1;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.city-slider::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 8rem;
  filter: invert(1);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.city-slider::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 8rem;
  filter: invert(1);
  z-index: 1;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.brand-slider .swiper-slide,
.brand-slider2 .swiper-slide {
  width: fit-content;
}
.brand-slider .swiper-slide img,
.brand-slider2 .swiper-slide img {
  margin-right: 32px;
  margin-left: 32px;
  filter: invert(0) grayscale(1);
}

.brand-slider2 .swiper-slide img {
  filter: invert(1);
  height: 48px;
}

.brand-slider2.extra .swiper-slide img {
  filter: grayscale(1);
  height: 28px;
}

.brand-slider .swiper-wrapper,
.brand-slider2 .swiper-wrapper {
  transition-timing-function: linear;
}

.brand-slider2 .brand-swiper::after {
  filter: invert(0);
  background: linear-gradient(
    90deg,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 0) 100%
  );
}
.brand-slider2 .brand-swiper::before {
  filter: invert(0);
  background: linear-gradient(
    270deg,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 0) 100%
  );
}

.city-slider .swiper-slide span {
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.brand-slider.city {
  margin-top: 0rem;
  margin-bottom: 1.5rem;
}

.mil-footer-menu ul li a {
  font-weight: 200;
  font-size: 22px;
}

.mil-price-card .mil-price-number {
  line-height: 1.2 !important;
  font-size: 34px !important;
}

.payment-brand span {
  width: 265px;
  margin: 0 28px 28px;
}
.payment-brand span img {
  /* filter: grayscale(1); */
}

a {
  -webkit-tap-highlight-color: transparent;
}
.top-layer-logo {
  position: fixed;
  top: 50px;
  left: 60px;
  z-index: 3;
  scale: 1;
  /* backdrop-filter: ; */
}

@media screen and (max-width: 1200px) {
  .top-layer-logo {
    display: none;
  }
}
