/* verication code input */
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
}
:root {
  --spacing: 4px;
  /* --hue: 400; */
  /* --background1: #2c323a; */
  /* --background2: #1d2126; */
  /* --background3: #0b0d0f; */
  /* --brand1: #000; */
  /* --text1: #fff; */
  /* --text2: #e6e6e6; */
}
code {
  background: var(--background3);
}

/* @media only screen and (max-width: 600px) { */
  .number-code > div {
    display: flex;
  }
  .number-code > div > input:not(:last-child) {
    margin-right: calc(var(--spacing) * 2);
  }
  .content-area {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) * 2);
    background: var(--background2);
    padding: var(--spacing);
    border-radius: var(--spacing);
    max-width: 100%;
  }
  .content-area p {
    color: var(--text2);
    font-size: 0.8em;
  }
  input.code-input {
    font-size: 18px;
    width: 1px;
    text-align: center;
    flex: 1 0 1em;
    border-radius: 0px;
    background: transparent;
    box-shadow: none;
    border: none;
    border-bottom: 2px solid #93a2b6;
  }

  input.code-input:focus {
    border-color: #93a2b6 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  input.code-input:-webkit-autofill{
      -webkit-text-fill-color: #000;
  }


/* } */
/* END Verification Code INput */


.dialog-xm{
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.5);
}
.dialog-content-xm{
  box-shadow: 0 4px 8px 0 rgba(54, 39, 39, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: #172D3E;
  padding: 20px;
  width: 80%;
  border-radius: 8px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
@media(min-width: 1200px) {
  .dialog-content-xm {
    width: 35%;
  }
}

@media (max-width:576px){
  .dialog-content-xm{
    top: auto;
    bottom: 10px;
    width: 90%;
  }
}

.dialog-content-xm-text{
top: 50%;
position: absolute;
transform: translateY(-50%);
left: 50px;
}

.add-radius{
border-radius: 8px !important;
}
.add-radius-md{
border-radius: 15px !important;
}
.add-radius-lg{
border-radius: 30px !important;
}

.add-radius-mini{
border-radius: 4px;
}

.bottom-button-wrp{
position: fixed;
bottom: 0;
padding-bottom: 30px;
left: 0;
width: 100%;
}

@media (max-width:576px){
.bottom-button-wrp{
  position: fixed;
  bottom: 0;
  padding-bottom: 30px;
  left: 0;
  width: 100%;
}
.border-left-mobile-none{
  border-left: none !important;
}
}

.capitalize{
text-transform: capitalize;
}

/* Preloader */
.page-preloader{
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 28928;
}
.page-preloader-wrapper{
position: relative;
width: 100px;
height: 100px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.pre-loader {
width: 48px;
height: 48px;
border: 5px solid #fff;
border-bottom-color: #6150f1;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
left: 25%;
top: 25%;
position: relative;
transform: translate(-50%, -50%);
}

@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}  
/* End preloader */


.pop-up-window-wrapper{
position: fixed;
z-index: 99;
top: 20px;
left: 0;
display: none;
width: 100%;
height: 100%;
}

.pop-up-window{
position: absolute;
left: 50%;
transform: translateX(-50%);
max-width: 300px;
border-radius: 4px;
}

@media (max-width:576px){
.border-sm-none{
  border: none !important;
}
}



/* activity loader animate */

.activity-loading{
animation: al-a 4s linear infinite forwards;
}

@keyframes al-a {
0% { transform: rotate(0deg);} /* Start and end positions, both at 0 degrees */
10%, 25% { transform: rotate(90deg); scale: 1; } /* 45 degrees after 0%, and 45 degrees before 50% */
25%,35%{scale: 1.3;}
35%, 45% { transform: rotate(180deg); } /* 45 degrees after 50%, and 45 degrees before 100% */
45%,55%{scale: 1;}
55%, 75% { transform: rotate(270deg); } /* 45 degrees after 50%, and 45 degrees before 100% */
75%,85%{scale: 1.3;}
85%, 100% { transform: rotate(360deg); } /* 45 degrees after 50%, and 45 degrees before 100% */
}


/* ROBOT SLIDER */
/* Base styles for the custom input range */

.r-check-wrp input[type="range"] {
-webkit-appearance: none;
width: 100%;
height: 40px;
outline: none;
padding: 0;
margin: 0;
border-radius: 30px;
background: transparent;
}

/* Styles for the custom slider "thumb" handle */
.r-check-wrp input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 40px;
height: 40px;
background: url('https://www.freeiconspng.com/thumbs/white-arrow-png/white-arrow-transparent-png-22.png') #4c75f9;
background-size: 43%;
background-position: center;
background-repeat: no-repeat;
position: relative;
cursor: pointer;
border-radius: 50%;
}

.puzzle-slider-success::-webkit-slider-thumb{
background-image: url('/static/assets/images/check-mk.png') !important;
background-color: #69d283 !important;
}
.puzzle-slider-failed::-webkit-slider-thumb{
background-image: url('/static/assets/images/failed-mark.png') !important;
background-color: #d44e60 !important;
}

/* Styling for the track that the thumb slides on */
.r-check-wrp input[type="range"]::-webkit-slider-runnable-track {
width: 100%;
height: 44px;
cursor: pointer;
background: none; /* Replace with your desired track color */
background: #262634;
border-radius: 30px;
border: 2px solid #333344;
}

/* Additional styles for Firefox */
.r-check-wrp input[type="range"]::-moz-range-thumb {
/* Styles for Firefox thumb (same as webkit-slider-thumb) */
}

.r-check-wrp input[type="range"]::-moz-range-track {
/* Styles for Firefox track (same as webkit-slider-runnable-track) */
}

/* Hide the default tooltip in Firefox */
.r-check-wrp input[type="range"]::-moz-range-progress {
background: transparent;
}

/* Styles for IE */
.r-check-wrp input[type="range"]::-ms-thumb {
/* Styles for IE thumb (same as webkit-slider-thumb) */
}

.r-check-wrp input[type="range"]::-ms-fill-lower {
/* Styles for IE track (same as webkit-slider-runnable-track) */
}

input[type="range"]::-ms-fill-upper {
/* Styles for IE upper fill (same as webkit-slider-runnable-track) */
}

.r-check-wrp span{
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
margin-left: 8px;
}

.puzzle-wrp{
background-image: url('/static/assets/images/puzzle-bg.png');
background-position: center;
background-repeat: no-repeat;
height: 160px;
background-size: cover;
background-blend-mode: overlay;
}

.puzzle-wrp-overlay{
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
}

/* animated Success */
.checkmark__circle {
stroke-dasharray: 166;
stroke-dashoffset: 166;
stroke-width: 2;
stroke-miterlimit: 10;
stroke: #1fa478;
fill: none;
animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
width: 40px;
height: 40px;
border-radius: 50%;
display: block;
stroke-width: 2;
stroke: #1fa478;
stroke-miterlimit: 10;
/* margin: 0% auto; */
box-shadow: inset 0px 0px 0px #1fa478;
animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
transform-origin: 50% 50%;
stroke-dasharray: 48;
stroke-dashoffset: 48;
animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
100% {
  stroke-dashoffset: 0;
}
}
@keyframes scale {
0%, 100% {
  transform: none;
}
50% {
  transform: scale3d(1.1, 1.1, 1);
}
}
@keyframes fill {
100% {
  box-shadow: inset 0px 0px 0px 30px transparent;
}
}

.checkmark_mini{
width: 30px;
height: 30px;
}
/* End Animated Success */


.moving-coins{
width: 80px;
height: 80px;
margin-right: 150px;
}

@media(max-width:576px){
.moving-coins{
  width: 50px;
  height: 50px;
} 
}

.marquee {
overflow: hidden;
width: 100%;
padding: 10px 0;
}

.lines {
display: flex;
flex-direction: row;
width: 200%; /* Important to accommodate both line instances */
}

.line {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-content: flex-start;
align-items: center;
white-space: nowrap;
}

.line.forward {
animation: marquee 30s linear infinite;
}

.line.reverse {
animation: marquee-reverse 40s linear infinite;
}

.line div {
padding: 8px;
margin-left: 18px;
background-color: #4A90E2;
color: white;
border-radius: 5px;
font-size: 16px;
}

@keyframes marquee {
0% {
  transform: translateX(0);
}
100% {
  transform: translateX(-100%);
}
}

@keyframes marquee-reverse {
0% {
  transform: translateX(-100%);
}
100% {
  transform: translateX(0);
}
}

/* Responsive Design */
@media (max-width: 576px) {
.line div {
  font-size: 12px;
  padding: 5px;
  margin-left: 10px;
}
}