/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
* Prefixed by:
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

effect-custom {
  position: relative;
  height: 100%;
  display: inline-block;
  border-radius: 8px;
}

effect-custom [effect-parent] {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

effect-custom [effect-parent] span {
  width: var(--size, 90px);
  height: var(--size, 90px);
  position: absolute;
  top: var(--top);
  left: var(--left);
  background: var(--color, linear-gradient(80.57deg, #CE1BFB 10.86%, #35E6CC 89.96%));
  --size: 200px;
  border-radius: 100%;
  -webkit-animation-name: move;
  animation-name: move;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: var(--animation-delay);
  animation-delay: var(--animation-delay);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: all 1.5s linear;
  -o-transition: all 1.5s linear;
  transition: all 1.5s linear;
  opacity: 0.5;
}

effect-custom [effect-parent] span:nth-child(1) {
  --size: 50px;
  --top: 5%;
  --left: 25%;
  --color: linear-gradient(80.57deg, #5128E3 10.86%, #AA3BF2 89.96%);
  --animation-delay: 1s;

}

effect-custom [effect-parent] span:nth-child(2) {
  --size: 50px;
  --top: 9%;
  --left: 40%;
  --color: linear-gradient(99.68deg, #00BAD4 7.72%, #2194FF 118.76%);
  --animation-delay: 2s;

}

effect-custom [effect-parent] span:nth-child(3) {
  --size: 50px;
  --top: 10%;
  --left: 50%;
  --color: linear-gradient(80.57deg, #CE1BFB 10.86%, #35E6CC 89.96%);
  --animation-delay: 3s;
}

effect-custom [effect-parent] span:nth-child(4) {
  --size: 50px;
  --top: 10%;
  --left: 50%;
  --animation-delay: 3s;
}

effect-custom [effect-parent] span:nth-child(5) {
  --size: 30px;
  --top: 13%;
  --left: 15%;
  --animation-delay: 3s;
}

effect-custom [effect-parent] span:nth-child(6) {
  --size: 20px;
  --top: 10%;
  --left: 50%;
  --animation-delay: 3s;
}

button {
  background-color: transparent;
  border: none;
  color: #fff;
  z-index: 2;
}

@-webkit-keyframes move {

  0%,
  100% {
    -webkit-transform: translateX(0) translateY(0) translateZ(0);
    transform: translateX(0) translateY(0) translateZ(0);
  }

  10% {
    -webkit-transform: translateX(20%) translateY(5%) translateZ(20px);
    transform: translateX(20%) translateY(5%) translateZ(20px);
  }

  20% {
    -webkit-transform: translateX(70%) translateY(2%) translateZ(20px);
    transform: translateX(70%) translateY(2%) translateZ(20px);
  }

  30% {
    -webkit-transform: translateX(100%) translateY(5%) translateZ(20px);
    transform: translateX(100%) translateY(5%) translateZ(20px);
  }

  40% {
    -webkit-transform: translateX(40%) translateY(2%) translateZ(20px);
    transform: translateX(40%) translateY(2%) translateZ(20px);
  }

  50% {
    -webkit-transform: translateX(-10%) translateY(5%) translateZ(20px);
    transform: translateX(-10%) translateY(5%) translateZ(20px);
  }

  60% {
    -webkit-transform: translateX(-60%) translateY(2%) translateZ(20px);
    transform: translateX(-60%) translateY(2%) translateZ(20px);
  }

  70% {
    -webkit-transform: translateX(-100%) translateY(5%) translateZ(20px);
    transform: translateX(-100%) translateY(5%) translateZ(20px);
  }

  80% {
    -webkit-transform: translateX(-50%) translateY(2%) translateZ(20px);
    transform: translateX(-50%) translateY(2%) translateZ(20px);
  }

  90% {
    -webkit-transform: translateX(-30%) translateY(5%) translateZ(20px);
    transform: translateX(-30%) translateY(5%) translateZ(20px);
  }

}

@keyframes move {

  0%,
  100% {
    -webkit-transform: translateX(0) translateY(0) translateZ(0);
    transform: translateX(0) translateY(0) translateZ(0);
  }

  10% {
    -webkit-transform: translateX(20%) translateY(5%) translateZ(20px);
    transform: translateX(20%) translateY(5%) translateZ(20px);
  }

  20% {
    -webkit-transform: translateX(70%) translateY(2%) translateZ(20px);
    transform: translateX(70%) translateY(2%) translateZ(20px);
  }

  30% {
    -webkit-transform: translateX(100%) translateY(5%) translateZ(20px);
    transform: translateX(100%) translateY(5%) translateZ(20px);
  }

  40% {
    -webkit-transform: translateX(40%) translateY(2%) translateZ(20px);
    transform: translateX(40%) translateY(2%) translateZ(20px);
  }

  50% {
    -webkit-transform: translateX(-10%) translateY(5%) translateZ(20px);
    transform: translateX(-10%) translateY(5%) translateZ(20px);
  }

  60% {
    -webkit-transform: translateX(-60%) translateY(2%) translateZ(20px);
    transform: translateX(-60%) translateY(2%) translateZ(20px);
  }

  70% {
    -webkit-transform: translateX(-100%) translateY(5%) translateZ(20px);
    transform: translateX(-100%) translateY(5%) translateZ(20px);
  }

  80% {
    -webkit-transform: translateX(-50%) translateY(2%) translateZ(20px);
    transform: translateX(-50%) translateY(2%) translateZ(20px);
  }

  90% {
    -webkit-transform: translateX(-30%) translateY(5%) translateZ(20px);
    transform: translateX(-30%) translateY(5%) translateZ(20px);
  }

}

/* filltext */
fill-text {
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

fill-text .fill-inner {
  position: sticky;
  top: 0;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

}

fill-text .text span {
  opacity: 0.3;
  -webkit-transition: opacity .35s linear;
  -o-transition: opacity .35s linear;
  transition: opacity .35s linear;
  will-change: opacity;
  color: #fff;
}

fill-text .text .highlight {
  opacity: 1;
}

/* effect svg opacity */

@-webkit-keyframes line-eff {

  0%,
  100% {
    opacity: 0.3;
    -webkit-transform: rotate(0) scale(1) translate3d(0, 0, 0);
    transform: rotate(0) scale(1) translate3d(0, 0, 0);
  }

  50% {
    opacity: .7;
    -webkit-transform: rotate(0) scale(1) translate3d(0, 0, 300px);
    transform: rotate(0) scale(1) translate3d(0, 0, 300px);
  }
}

@keyframes line-eff {

  0%,
  100% {
    opacity: 0.3;
    -webkit-transform: rotate(0) scale(1) translate3d(0, 0, 0);
    transform: rotate(0) scale(1) translate3d(0, 0, 0);
  }

  50% {
    opacity: .7;
    -webkit-transform: rotate(0) scale(1) translate3d(0, 0, 300px);
    transform: rotate(0) scale(1) translate3d(0, 0, 300px);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    -webkit-transform: translate(1px, 2px) rotate(0deg);
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    -webkit-transform: translate(1px, 2px) rotate(0deg);
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

@-webkit-keyframes shake-animation {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  1.78571% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0)
  }

  3.57143% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  5.35714% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0)
  }

  7.14286% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  8.92857% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0)
  }

  10.71429% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }
}

@keyframes shake-animation {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  1.78571% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0)
  }

  3.57143% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  5.35714% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0)
  }

  7.14286% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  8.92857% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0)
  }

  10.71429% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
  }
}

/* text circle */

.rounded-text {
  width: 25.625rem;
  height: 25.625rem;
  text-transform: uppercase;
  -webkit-transform: rotate(-103deg);
  -ms-transform: rotate(-103deg);
  transform: rotate(-103deg);
  color: #fff;
  font-weight: bold;
  z-index: -1;
  font-family: Raleway;
}

.white {
  fill: #fff;
}

.yellow {
  fill: #ffda2a;
}

.green {
  fill: #00d3b9;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.rotating {
  -webkit-animation: rotating 12s linear infinite;
  animation: rotating 12s linear infinite;
}

@-webkit-keyframes coloring {
  0% {
    fill: #fff;
  }

  35% {
    fill: #ffda2a;
  }

  75% {
    fill: #00d3b9;
  }

  100% {
    fill: #fff;
  }
}

@keyframes coloring {
  0% {
    fill: #fff;
  }

  35% {
    fill: #ffda2a;
  }

  75% {
    fill: #00d3b9;
  }

  100% {
    fill: #fff;
  }
}

.coloring {
  -webkit-animation: coloring 12s linear infinite;
  animation: coloring 12s linear infinite;
}

@-webkit-keyframes circle_linear {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

}

@keyframes circle_linear {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

}

@-webkit-keyframes rl_s_loading {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0.15;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0.15;
  }
}

@keyframes rl_s_loading {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0.15;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0.15;
  }
}

/*  animated border */
.lip_bor {
  --anime-time: 8s;
  --box-size: 200px;
  --clip-distance: 0.05;
  --clip-size: calc((var(--box-size) * (1 + var(--clip-size) * 2)));
  --path-width: 2px;
  --main-color: #fff;
}

.lip_bor {
  width: var(--box-size);
  height: var(--box-size);
  color: var(--main-color);
  position: relative;
}

.lip_bor::before,
.lip_bor::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  margin: calc(-1 * var(--clip-distance) * 100%);
  -webkit-animation: lip_bor var(--anime-time) linear infinite;
  animation: lip_bor var(--anime-time) linear infinite;
  -webkit-box-shadow: inset 0 0 0 var(--path-width);
  box-shadow: inset 0 0 0 var(--path-width);
}

.lip_bor::before {
  -webkit-animation-delay: calc(var(--anime-time) * -0.5);
  animation-delay: calc(var(--anime-time) * -0.5);
}



@-webkit-keyframes lip_bor1 {

  0%,
  100% {
    clip: rect(0px, var(--clip-size), var(--path-width), 0px);
  }

  25% {
    clip: rect(0px, var(--path-width), var(--clip-size), 0px);
  }

  50% {
    clip: rect(calc(var(--clip-size) - var(--path-width)), calc(var(--clip-size), var(--clip-size)), 0px);
  }

  75% {
    clip: rect(0px, var(--clip-size), var(--clip-size), var(--clip-size) - var(--path-width));
  }
}

@keyframes lip_bor1 {

  0%,
  100% {
    clip: rect(0px, var(--clip-size), var(--path-width), 0px);
  }

  25% {
    clip: rect(0px, var(--path-width), var(--clip-size), 0px);
  }

  50% {
    clip: rect(calc(var(--clip-size) - var(--path-width)), calc(var(--clip-size), var(--clip-size)), 0px);
  }

  75% {
    clip: rect(0px, var(--clip-size), var(--clip-size), var(--clip-size) - var(--path-width));
  }
}

@-webkit-keyframes lip_bor {

  0%,
  100% {
    clip: rect(0px, 220px, 2px, 0px);
  }

  25% {
    clip: rect(0px, 2px, 220px, 0px);
  }

  50% {
    clip: rect(218px, 220px, 220px, 0px);
  }

  75% {
    clip: rect(0px, 220px, 220px, 218px);
  }
}

@keyframes lip_bor {

  0%,
  100% {
    clip: rect(0px, 220px, 2px, 0px);
  }

  25% {
    clip: rect(0px, 2px, 220px, 0px);
  }

  50% {
    clip: rect(218px, 220px, 220px, 0px);
  }

  75% {
    clip: rect(0px, 220px, 220px, 218px);
  }
}

.animated-trigger-inter {
  -webkit-transition: .5s linear;
  -o-transition: .5s linear;
  transition: .5s linear;
}

[m-modal] .grid1-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 13px 11px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--bg-32, rgba(32, 32, 32, 0.32));

  /* bg blur 16 */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: absolute;
  top: 24px;
  right: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .35s ease-in;
  -o-transition: .35s ease-in;
  transition: .35s ease-in;
  z-index: 3;
}


[m-modal] .box-popup-full-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.custom_modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
}

.custom_modal.show {
  pointer-events: auto;
}

.custom_modal .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .1);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: opacity .25s linear;
  -o-transition: opacity .25s linear;
  transition: opacity .25s linear;
}

.custom_modal.show .overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.custom_modal .content-wrap {
  position: absolute;
  padding: 32px;
  border-radius: 24px;
  background: #FFF;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: opacity .25s linear, -webkit-transform .25s linear;
  transition: opacity .25s linear, -webkit-transform .25s linear;
  -o-transition: opacity .25s linear, transform .25s linear;
  transition: opacity .25s linear, transform .25s linear;
  transition: opacity .25s linear, transform .25s linear, -webkit-transform .25s linear;
}

.custom_modal.show .content-wrap {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.custom_modal .close-btn {
  position: absolute;
  top: 0;
  right: -8px;
  border-radius: 43px;
  background: #FFF;
  width: 47px;
  height: 47px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
  -webkit-transition: opacity .25s linear, -webkit-transform .25s linear;
  transition: opacity .25s linear, -webkit-transform .25s linear;
  -o-transition: opacity .25s linear, transform .25s linear;
  transition: opacity .25s linear, transform .25s linear;
  transition: opacity .25s linear, transform .25s linear, -webkit-transform .25s linear;
}

.custom_modal.show .close-btn {
  opacity: 1;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.custom_modal .img_wrap {
  border-radius: 16px;
  background: #1A1B1F;
  overflow: hidden;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.custom_modal .title {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.custom_modal .m-body {
  color: rgba(0, 0, 0, 0.48);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.custom_modal .ctn_ {
  position: relative;
}

.custom_modal ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.custom_modal .m_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 48px;
}

.custom_modal .t_u_it,
.custom_modal .i_ecomrise {
  border-radius: 8px;
  border: 0.5px solid rgba(255, 255, 255, 0.32);
  background: -o-linear-gradient(350deg, #00BAD4 7.72%, #2194FF 118.76%);
  background: linear-gradient(100deg, #00BAD4 7.72%, #2194FF 118.76%);
  padding: 13px 32px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.custom_modal .ratio img {
  -o-object-fit: contain;
  object-fit: contain;
}

.custom_modal .m_b_kl {
  --link-color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.custom_modal .ctxx_ {
  overflow-y: scroll;
  max-height: 85vh;
  max-width: 40vw;
  width: 100%;
  height: 100%;
  display: block;
}

/* width */
.custom_modal .ctxx_::-webkit-scrollbar {
  width: 0.5px;
  display: none;

}

/* Track */
.custom_modal .ctxx_::-webkit-scrollbar-track {
  background: #000;

}

/* Handle */
.custom_modal .ctxx_::-webkit-scrollbar-thumb {
  background: blue;
}


.animatedText {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 1440px) {
  .custom_modal .m_btns {
    margin-top: 25px;
  }

  .custom_modal .img_wrap {
    margin-bottom: 25px;
  }
}

@media (max-width: 1024px) {

  .custom_modal .content-wrap {
    padding: 20px;
  }

  .custom_modal .title {
    font-size: 24px;
  }

  .custom_modal .m-body {
    font-size: 14px;
  }

  .custom_modal p {
    margin-bottom: 10px;
  }

  .custom_modal .t_u_it,
  .custom_modal .i_ecomrise,
  .custom_modal .m_b_kl {
    font-size: 14px;
  }

  .custom_modal .ctxx_ {
    max-width: 65vw;
    max-height: 90vh;
  }

  .custom_modal .close-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 767px) {

  [m-modal] .grid1-btn {
    opacity: 1;
    visibility: visible;
  }

  .custom_modal.show .close-btn {
    -webkit-transform: translateY(-100%) translateX(-25%);
    -ms-transform: translateY(-100%) translateX(-25%);
    transform: translateY(-100%) translateX(-25%);
    right: 0;
  }

  [m-modal] .box-popup-full-link {
    z-index: 4;
  }

  .custom_modal .ctxx_ {
    max-width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .custom_modal .content-wrap {
    max-width: 95%;
    margin: 0 auto;
  }

  .custom_modal .title {
    font-size: 18px;
  }

  .custom_modal .m-body {
    font-size: 12px;
  }

  .custom_modal .t_u_it,
  .custom_modal .i_ecomrise,
  .custom_modal .m_b_kl {
    font-size: 12px;
  }

  .custom_modal .img_wrap {
    margin-bottom: 15px;
  }

  .custom_modal .m_btns {
    margin-top: 15px;
    gap: 15px;
  }

  .custom_modal .content-wrap {
    padding: 15px;
  }

  [m-modal] .grid1-btn {
    top: 5px;
    right: 5px;
  }
}

.custom_modal .ctxx_::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

.custom_modal .ctxx_::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}

.custom_modal .ctxx_::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 2px solid #555555;
}

.light_skew,
.light_skew_hover {
  position: relative;
  overflow: hidden;
}

.light_skew::before {
  background-image: -o-linear-gradient(left, transparent, var(--accent-color), transparent);
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--accent-color)), to(transparent));
  background-image: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  content: "";
  left: 150%;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  transform: skew(-20deg);
  width: 200%;
  -webkit-animation: shine2 7s cubic-bezier(.01, .56, 1, 1) infinite;
  animation: shine2 5s cubic-bezier(.01, .56, 1, 1) infinite;
  opacity: 0.7;
  z-index: 1;
}

@media (min-width: 1150px) {

/* Handle on hover */
.custom_modal .ctxx_::-webkit-scrollbar-thumb:hover {
  background: #000;
}

[m-modal] .item-inner:hover .grid1-btn {
  opacity: 1;
  visibility: visible;
}
.lip_bor:hover::before,
.lip_bor:hover::after {
  background-color: red;
}
.marquee:hover {
  animation-play-state: paused;
}
.hover_g:hover::before {
  top: 15%;
  opacity: 1;
}

.hover_g:hover::after {
  bottom: 15%;
  opacity: 1;
}
  .light_skew_hover:hover::before {
    background-image: -o-linear-gradient(left, transparent, var(--accent-color), transparent);
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--accent-color)), to(transparent));
    background-image: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    content: "";
    left: 150%;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    width: 200%;
    -webkit-animation: shine2 5s cubic-bezier(.01, .56, 1, 1) infinite;
    animation: shine2 5s cubic-bezier(.01, .56, 1, 1) infinite;
    opacity: 0.7;
  }

}

@-webkit-keyframes bghover {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes bghover {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes shine2 {
  20% {
    left: -200%;
  }

  100% {
    left: -200%;
  }
}

@keyframes shine2 {
  20% {
    left: -200%;
  }

  100% {
    left: -200%;
  }
}

password-popup {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
}

password-popup.open {
  pointer-events: auto;
  visibility: visible;
}

password-popup .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.48);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  -webkit-transition: opacity .2s ease-in;
  -o-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in;
  will-change: opacity;
}

password-popup.open .overlay {
  opacity: 1;
}

password-popup .content {
  text-align: right;
  z-index: 1;
  max-width: 570px;
  width: 95%;
  opacity: 0;
  -webkit-transition: opacity .2s ease-in;
  -o-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in;
  will-change: opacity;
}

password-popup.open .content {
  opacity: 1;
}


password-popup .popup-view {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
  color: #000;
  margin-top: 10px;

}

password-popup .popup-view strong {
  color: red;
}

password-popup .popup-view h3 {
  text-transform: uppercase;
  font-size: 24px;
}

password-popup .view_now {
  display: block;
  text-align: center;
  background-color: var(--accent-color);
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 24px;
  margin: 20px auto;
  color: #fff;
}

password-popup span {
  color: #7b7b93;
  font-weight: 300;
}

.hover_g {
  position: relative;
}

.hover_g::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 150px;
  background: -o-linear-gradient(top, transparent 30%, #00BAD4 65%, transparent 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(65%, #00BAD4), to(transparent));
  background: linear-gradient(180deg, transparent 30%, #00BAD4 65%, transparent 100%);
  top: 60%;
  left: -1px;
  opacity: 0;
  -webkit-transition: opacity .25s ease-in-out, top .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out, top .25s ease-in-out;
  transition: opacity .25s ease-in-out, top .25s ease-in-out;
  will-change: opacity, top;
}

.hover_g::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 150px;
  background: -o-linear-gradient(top, transparent 30%, #00BAD4 65%, transparent 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(65%, #00BAD4), to(transparent));
  background: linear-gradient(180deg, transparent 30%, #00BAD4 65%, transparent 100%);
  bottom: 60%;
  right: -1px;
  opacity: 0;
  -webkit-transition: opacity .25s ease-in-out, bottom .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out, bottom .25s ease-in-out;
  transition: opacity .25s ease-in-out, bottom .25s ease-in-out;
  will-change: opacity, bottom;
}



/* 
  ===================
  MARQUEE TEXT INFINITE LOOP, PAUSE ON HOVER
  ===================

*/
.marquee {
  width: 100%;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 25s linear infinite;
}



.marquee__item {
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ============================
   Big Update Popup Fade Effects
   ============================ */

/* Base fade states */
big-update-popup [lmt-fade-down],
big-update-popup [lmt-fade-left],
big-update-popup [lmt-fade-up],
big-update-popup [lmt-fade-right],
big-update-popup [lmt-fade-scale] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

big-update-popup [lmt-fade-left] {
  transform: translateX(-30px);
}

big-update-popup [lmt-fade-up] {
  transform: translateY(-30px);
}

big-update-popup [lmt-fade-right] {
  transform: translateX(30px);
}

big-update-popup [lmt-fade-scale] {
  transform: scale(0.8);
}

/* Active states when popup is open */
big-update-popup[open] [lmt-fade-down],
big-update-popup[open] [lmt-fade-left],
big-update-popup[open] [lmt-fade-up],
big-update-popup[open] [lmt-fade-right],
big-update-popup[open] [lmt-fade-scale] {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Staggered animation delays */
big-update-popup[open] [lmt-fade-down] {
  transition-delay: 0.6s;
}

big-update-popup[open] [lmt-fade-left] {
  transition-delay: 0.8s;
}

big-update-popup[open] [lmt-fade-up] {
  transition-delay: 1s;
}

big-update-popup[open] [lmt-fade-right] {
  transition-delay: 0.7s;
}

big-update-popup[open] [lmt-fade-scale] {
  transition-delay: 0.9s;
}

/* Multiple fade-up elements with different delays */
big-update-popup[open] .p-group-btn [lmt-fade-up]:nth-child(1) {
  transition-delay: 1s;
}

big-update-popup[open] .p-group-btn [lmt-fade-up]:nth-child(2) {
  transition-delay: 1.2s;
}

big-update-popup[open] .p-info [lmt-fade-up]:nth-child(1) {
  transition-delay: 1.4s;
}

big-update-popup[open] .p-info [lmt-fade-up]:nth-child(2) {
  transition-delay: 1.6s;
}

big-update-popup[open] .p-info [lmt-fade-up]:nth-child(3) {
  transition-delay: 1.8s;
}

/* Special effects for specific elements */
big-update-popup[open] .p-content [lmt-fade-left] {
  transition-delay: 0.8s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

big-update-popup[open] .p-u [lmt-fade-down] {
  transition-delay: 0.6s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover effects for interactive elements */
big-update-popup .btn-full-transparent:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

big-update-popup .btn-full-transparent,
big-update-popup .btn-simple {
  transition: transform 0.3s ease;
}

/* Enhanced hover effects */
big-update-popup .btn-full-transparent:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Smooth transitions for all interactive elements */
big-update-popup a,
big-update-popup button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  big-update-popup [lmt-fade-down],
  big-update-popup [lmt-fade-left],
  big-update-popup [lmt-fade-up],
  big-update-popup [lmt-fade-right] {
    transform: translateY(20px);
  }
  
  big-update-popup [lmt-fade-left] {
    transform: translateX(-20px);
  }
  
  big-update-popup [lmt-fade-up] {
    transform: translateY(-20px);
  }
  
  big-update-popup [lmt-fade-right] {
    transform: translateX(20px);
  }
  
  big-update-popup [lmt-fade-scale] {
    transform: scale(0.9);
  }
  
  /* Reduce delays on mobile for better performance */
  big-update-popup[open] [lmt-fade-down] {
    transition-delay: 0.4s;
  }
  
  big-update-popup[open] [lmt-fade-left] {
    transition-delay: 0.8s;
  }
  
  big-update-popup[open] [lmt-fade-up] {
    transition-delay: 1.2s;
  }
  
  big-update-popup[open] [lmt-fade-right] {
    transition-delay: 0.5s;
  }
  
  big-update-popup[open] [lmt-fade-scale] {
    transition-delay: 0.7s;
  }
}

/* Performance optimizations */
big-update-popup [lmt-fade-down],
big-update-popup [lmt-fade-left],
big-update-popup [lmt-fade-up],
big-update-popup [lmt-fade-right],
big-update-popup [lmt-fade-scale] {
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}