/* Responsive */
@import url('responsive.css');
/* End Responsive */

:root {

}

::-webkit-scrollbar {
  width: 0; /* Oculta el scrollbar */
}

::selection {
    background: transparent;
}

body {
    background: #000;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: hsla(0, 0%, 97%, .95);
}

.bg-background {
    background: #202020;
}

.bghome {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ADA996;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #EAEAEA, #DBDBDB, #f2f2f2a2, #ada996ca);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #EAEAEA, #DBDBDB, #f2f2f2a2, #ada996ca); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
}

.logo-landing {
  width: 60%;
}

/* Fonts */
.font-color-1 {
    color: hsla(0, 0%, 97%, .4);
}
.font-color-2 {
    color: hsla(0, 0%, 97%, .76);
}
/* End Fonts */

/* Footer Login */
.avatar-bottom {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 2px solid #202020;
    border-radius: 50%;
    overflow: hidden; 
}
.avatar-bottom:not(:first-child) {
    margin-left: -16px;
}
/* Footer Login */

/* Form Login */
.entryform-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: hsla(0, 0%, 97%, .05);
    box-shadow: inset 2px 4px 16px 0 hsla(0, 0%, 97%, .06);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    border-radius: 50%;
}
.entryform-logo:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    border: 1.5px solid hsla(0, 0%, 100%, .05);
    -webkit-mask-image: linear-gradient(170deg, #000, transparent 50%);
    mask-image: linear-gradient(170deg, #000, transparent 50%);
}
.entryformm:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    pointer-events: none;
    border: 3px solid hsla(0, 0%, 100%, 0.56);
    -webkit-mask-image: linear-gradient(225deg, #000, transparent 20%);
    mask-image: linear-gradient(225deg, #000, transparent 20%);
}

.entryform:after {
    background: transparent;
    box-shadow: inset 2px 4px 16px 0 hsla(0, 0%, 100%, 0.06), 0 24px 24px -16px rgba(255, 255, 255, 0.09), 0 6px 13px 0 rgba(255, 255, 255, 0.1), 0 6px 4px -4px rgba(255, 255, 255, 0.1), 0 5px 1.5px -4px rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.entryform:after, .entryform:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    pointer-events: none;
}

.entryform:before {
    border: 12px solid hsla(0, 0%, 97%, .5);
    opacity: .29;
    background: linear-gradient(158deg, hsla(0, 0%, 100%, .06) 14.19%, hsla(0, 0%, 100%, 0) 50.59%, hsla(0, 0%, 100%, 0) 68.79%, hsla(0, 0%, 100%, .02) 105.18%);
    filter: blur(20px);
}

.formline {
    top: 50%;
    transform: translateY(-50%);
}
.formline:first-child {
    right: calc(100% + 16px);
}
.formline:nth-child(2) {
    left: calc(100% + 16px);
}

.sign-svg {
    width: 12px;
    height: 12px;
    fill: hsla(0, 0%, 97%, .25);
    transition: fill .2s;
}
/* End Form Login */


/* Inputs */
.input {
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: #e8e8e8;
    box-shadow: 20px 20px 60px #c5c5c5,
           -20px -20px 60px #ffffff;
    transition: 0.3s;
    color: rgba(40, 40, 40, .7);
}

.input:focus {
    outline-color: #e8e8e8;
    background: #e8e8e8;
    box-shadow: inset 20px 20px 60px #c5c5c5,
            inset -20px -20px 60px #ffffff;
    transition: 0.3s;
}
textarea {
    background: hsla(0, 0%, 97%, .05);
    border-radius: 12px;
    border: 1.5px solid transparent;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(40, 40, 40, .7);
    transition: all .2s;
}
.input-clean {
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: transparent;
    transition: 0.3s;
    color: #fff;
}

.input-clean:focus {
    outline-color: transparent;
    background: transparent;
    transition: 0.3s;
}
/* Inputs */

/* Buttons */
[class^=button] {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    height: 44px;
    border-radius: 32px;
    background: rgba(40, 40, 40, .7);
    box-shadow: inset 2px 4px 16px 0 hsla(0, 0%, 97%, .06);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: hsla(0, 0%, 97%, .7);
    transition: background .2s, color .2s;
}
[class^=button]:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    pointer-events: none;
    border: 1.5px solid hsla(0, 0%, 100%, .1);
    -webkit-mask-image: linear-gradient(175deg, #000, transparent 50%);
    mask-image: linear-gradient(175deg, #000, transparent 50%);
}
[class^=button]:hover {
    background: hsla(0,0%,97%,.1);
    color: hsla(0,0%,97%,.76)
}
/* Buttons */

/* Bar */
.tabbar {
    --primary: #fff;
    --background: transparent;
    --inactive: #99A3BA;
    --shadow: rgba(18, 22, 33, .24);
    --line: #CDD9ED;
    box-shadow: inset 2px 4px 16px 0 hsla(0, 0%, 100%, 0.06), 0 24px 24px -16px rgba(255, 255, 255, 0.09), 0 6px 13px 0 rgba(255, 255, 255, 0.1), 0 6px 4px -4px rgba(255, 255, 255, 0.1), 0 5px 1.5px -4px rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);    
    border-radius: 21px 21px 0px 0px;
    width: 480px;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;

    position: absolute;
    bottom: 0;
  }
  .tabbar ul {
    --x: 54px;
    margin: 0;
    padding: 0 10px;
    list-style: none;
    display: grid;
    position: relative;
    overflow: hidden;
    text-align: center;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .tabbar ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: var(--x);
    background: transparent;
    width: 60px;
    margin-left: -30px;
    height: 40px;
  }
  .tabbar ul li {
    position: relative;
  }
  .tabbar ul li:before, .tabbar ul li:after {
    content: "";
    background: var(--background);
    height: 44px;
    width: 84px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -42px;
  }
  .tabbar ul li:before {
    border-radius: 0 48% 0 0;
  }
  .tabbar ul li:after {
    border-radius: 48% 0 0 0;
  }
  .tabbar ul li a {
    padding: 20px 0;
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 1;
    color: var(--primary);
    transition: transform 0.2s ease;
      cursor: pointer;
  }
  .tabbar ul li a:active {
    transform: scale(0.9);
  }
  .tabbar ul li a:before, .tabbar ul li a:after {
    content: "";
    top: 0;
    left: 50%;
    position: absolute;
    background: var(--primary);
    border-radius: 1px;
    width: 2px;
    margin-left: -1px;
    transform-origin: 50% 0;
    transform: translateY(-14px) scaleX(0.6);
  }
  .tabbar ul li a:before {
    height: 8px;
  }
  .tabbar ul li a:after {
    height: 4px;
  }
  .tabbar ul li a div {
    background: var(--inactive);
    width: 24px;
    height: 24px;
    margin: 0 auto 4px auto;
  }
  .tabbar ul li a div:before {
    --y: -100%;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateY(var(--y));
    position: absolute;
    transition: transform 0.4s linear;
    background: var(--primary);
  }
  .tabbar ul li a span {
    display: block;
    font-weight: 500;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.36s linear;
  }
  .tabbar ul li.active:before {
    -webkit-animation: before 1.1s ease;
            animation: before 1.1s ease;
  }
  .tabbar ul li.active:after {
    -webkit-animation: after 1.1s ease;
            animation: after 1.1s ease;
  }
  .tabbar ul li.active a {
    -webkit-animation: bounce 0.9s linear 0.3s;
            animation: bounce 0.9s linear 0.3s;
  }
  .tabbar ul li.active a:before {
    -webkit-animation: drop 0.4s linear 0.1s forwards;
            animation: drop 0.4s linear 0.1s forwards;
  }
  .tabbar ul li.active a:after {
    -webkit-animation: drop 0.5s linear 0.13s forwards;
            animation: drop 0.5s linear 0.13s forwards;
  }
  .tabbar ul li.active a div:before {
    --y: 0;
    transition-delay: 0.3s;
  }
  .tabbar ul li.active a span {
    opacity: 1;
    transition-delay: 0.38s;
  }
  .tabbar ul li.withdraw a div {
    -webkit-mask-box-image: url("../media/icons/withdrawal.svg");
    -webkit-mask: url("../media/icons/withdrawal.svg");
            mask: url("../media/icons/withdrawal.svg");
  }
  .tabbar ul li.sendmoney a div {
    -webkit-mask-box-image: url("../media/icons/send-money.svg");
    -webkit-mask: url("../media/icons/send-money.svg");
            mask: url("../media/icons/send-money.svg");
  }
  .tabbar ul li.deposit a div {
    -webkit-mask-box-image: url("../media/icons/deposit.svg");
    -webkit-mask: url("../media/icons/deposit.svg");
            mask: url("../media/icons/deposit.svg");
  }
  .tabbar ul li.home a div {
    -webkit-mask-box-image: url("../media/icons/home.svg");
    -webkit-mask: url("../media/icons/home.svg")a;
            mask: url("../media/icons/home.svg");
  }
  .tabbar ul li.investment a div {
    -webkit-mask-box-image: url("../media/icons/investment.svg");
    -webkit-mask: url("../media/icons/investment.svg");
            mask: url("../media/icons/investment.svg");
  }
  
  @-webkit-keyframes bounce {
    40% {
      transform: translateY(9px);
    }
    55% {
      transform: translateY(-1px);
    }
    70% {
      transform: translateY(4px);
    }
    85% {
        transform: translateY(20px);
    }
  }
  
  @keyframes bounce {
    40% {
      transform: translateY(9px);
    }
    55% {
      transform: translateY(-1px);
    }
    70% {
      transform: translateY(4px);
    }
    85% {
        transform: translateY(20px);
    }
  }
  @-webkit-keyframes drop {
    50% {
      transform: translateY(10px) scaleY(1.2) scaleX(0.5);
    }
    100% {
      transform: translateY(20px) scaleY(0) scaleX(0.5);
    }
  }
  @keyframes drop {
    50% {
      transform: translateY(10px) scaleY(1.2) scaleX(0.5);
    }
    100% {
      transform: translateY(20px) scaleY(0) scaleX(0.5);
    }
  }
  @-webkit-keyframes before {
    45%, 55% {
      transform: translateX(-41px);
    }
  }
  @keyframes before {
    45%, 55% {
      transform: translateX(-41px);
    }
  }
  @-webkit-keyframes after {
    45%, 55% {
      transform: translateX(41px);
    }
  }
  @keyframes after {
    45%, 55% {
      transform: translateX(41px);
    }
  }
/* End Bar */

/* BTN */
.logout-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
    gap: 3rem;
  width: 45px;
  height: 25px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  background-color: transparent;
}

/* plus sign */
.sign {
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 17px;
}

.sign svg path {
  fill: white;
}
/* text */
.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  transition-duration: .3s;
}
/* hover effect on button width */
.logout-btn:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: .3s;
}

.logout-btn:hover .sign {
  width: 30%;
  transition-duration: .3s;
  padding-left: 0px;
}
/* hover effect button's text */
.logout-btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
}
/* button click effect*/
.logout-btn:active {
  transform: translate(2px ,2px);
}

/* Cursor */
.ball {
      width: 50px;
      height: 50px;
      position: fixed;
      top: 0;
      left: 0;
      border: 3px solid white;
      border-radius: 50%;
      pointer-events: none;
    z-index: 9;
    cursor:none !important;
}

/* Preloader */
/* From Uiverse.io by Pradeepsaranbishnoi */
.🤚 {
  --skin-color: #E4C560;
  --tap-speed: 0.6s;
  --tap-stagger: 0.1s;
  position: relative;
  width: 80px;
  height: 60px;
  margin-left: 80px;
}

.🤚:before {
  content: '';
  display: block;
  width: 180%;
  height: 75%;
  position: absolute;
  top: 70%;
  right: 20%;
  background-color: black;
  border-radius: 40px 10px;
  filter: blur(10px);
  opacity: 0.3;
}

.🌴 {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--skin-color);
  border-radius: 10px 40px;
}

.👍 {
  position: absolute;
  width: 120%;
  height: 38px;
  background-color: var(--skin-color);
  bottom: -18%;
  right: 1%;
  transform-origin: calc(100% - 20px) 20px;
  transform: rotate(-20deg);
  border-radius: 30px 20px 20px 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.👍:after {
  width: 20%;
  height: 60%;
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: -8%;
  left: 5px;
  border-radius: 60% 10% 10% 30%;
  border-right: 2px solid rgba(0, 0, 0, 0.05);
}

.👉 {
  position: absolute;
  width: 80%;
  height: 35px;
  background-color: var(--skin-color);
  bottom: 32%;
  right: 64%;
  transform-origin: 100% 20px;
  animation-duration: calc(var(--tap-speed) * 2);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform: rotate(10deg);
}

.👉:before {
  content: '';
  position: absolute;
  width: 140%;
  height: 30px;
  background-color: var(--skin-color);
  bottom: 8%;
  right: 65%;
  transform-origin: calc(100% - 20px) 20px;
  transform: rotate(-60deg);
  border-radius: 20px;
}

.👉:nth-child(1) {
  animation-delay: 0;
  filter: brightness(70%);
  animation-name: tap-upper-1;
}

.👉:nth-child(2) {
  animation-delay: var(--tap-stagger);
  filter: brightness(80%);
  animation-name: tap-upper-2;
}

.👉:nth-child(3) {
  animation-delay: calc(var(--tap-stagger) * 2);
  filter: brightness(90%);
  animation-name: tap-upper-3;
}

.👉:nth-child(4) {
  animation-delay: calc(var(--tap-stagger) * 3);
  filter: brightness(100%);
  animation-name: tap-upper-4;
}

@keyframes tap-upper-1 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.4);
  }

  40% {
    transform: rotate(50deg) scale(0.4);
  }
}

@keyframes tap-upper-2 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.6);
  }

  40% {
    transform: rotate(50deg) scale(0.6);
  }
}

@keyframes tap-upper-3 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.8);
  }

  40% {
    transform: rotate(50deg) scale(0.8);
  }
}

@keyframes tap-upper-4 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(1);
  }

  40% {
    transform: rotate(50deg) scale(1);
  }
}

.blurred {
  background: linear-gradient(158deg, hsla(0, 0%, 100%, .06) 14.19%, hsla(0, 0%, 100%, 0) 50.59%, hsla(0, 0%, 100%, 0) 68.79%, hsla(0, 0%, 100%, .02) 105.18%);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, .15);
}