body{
  font-family: 'Manrope', sans-serif;
  background-color: #171717;
}
.wrapper{
    width: 100%;
    min-height: 100vh;
    padding:16px;
    padding-bottom: 85px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.loader{
    background: url('../images/loader-bg.png') top center repeat #171717;
    position: fixed;
    top: -200%;
    left: 0;
    max-width: 100%;
    min-height: 100vh;
    z-index: 9999;
    background-size: 200% 100%;
    padding: 64px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    transition: .4s;
}
.loader.active{
  top: 0;
}

.loader-avatar{
    width: 220px;
    height: 220px;
    border:10px solid #E0F64B;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-avatar::before{
    content: '';
    width: 165px;
    height: 165px;
    background-color: #8752F3;
    display: block;
    border-radius: 50%;
}
.loader-avatar img{
  transform: rotate(25deg) scale(1.3);
  position: absolute;
  animation: loader-avatar 4s linear infinite;
}
.loader-logo{
  text-align: center;
}
.logo-slider{
  width: 100%;
}
.loader-text{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.logo-slider .swiper-wrapper{
  padding: 16px 0;
}

.logo-slider .swiper-pagination{
  position: relative;
  top: 0;
}
.swiper-pagination-bullet{
  background-color: #fff;
}
.swiper-pagination-bullet-active{
  background-color: #fff;
}
.logo-slider .swiper-slide{
  text-align: center;
}
.logo-slider .swiper-slide h6{
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 41px;
  margin-bottom: 8px;
}
.logo-slider .swiper-slide p{
  color: #E8E8E8;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.loader-progress{
  width: 100%;
  height: 40px;
  background-color: #8752F3;
  border-radius: 50px;
  display: flex;
  gap: 16px;
  overflow: hidden;
  white-space: nowrap;
}
.loader-progress span{
  background-color: #E0F64B;
  min-width: 27px;
  overflow: hidden;
  height: 70px;
  white-space: nowrap;
  transform: rotate3d(1, 1, 1, 45deg);
  margin-top: -15px;
  box-shadow: 1px 1px 1px 1px #00000040;
  animation: move 15s linear infinite;
}

@keyframes move {
  0% {
    transform: translateX(0) rotate3d(1, 1, 1, 45deg);
  }
  100% {
    transform: translateX(-300px) rotate3d(1, 1, 1, 45deg);
  }
}


@keyframes loader-avatar {
  0% {
    transform:scale(1.2) rotate(0deg);
  }
  50% {
    transform: scale(1.3) rotate(-20deg); ;
  }
  100% {
    transform: scale(1.2) rotate(0);
  }
}
.header{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.header .notification button{
  width: 32px;
  height: 32px;
  background-color: #202020;
  color: #fff;
  border-radius: 8px;
}
[ripple]{
  position: relative;
  overflow: hidden;
  transition: background 400ms;
}
span.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.3);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
[line-bg]{
  background:url('../images/line-bg.svg') no-repeat;
  background-size: contain;
}
.page{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.home-page-wallet-box{
  background: linear-gradient(to bottom, #171717 10%, #8752F3 100%);
  padding:16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-page-wallet-box h6{
  color: #B8B8B8;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px; /* 200% */;
}
.home-page-wallet-box h3{
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}
.home-page-wallet-box h3 span,.home-page-wallet-box h4 span{
  color: #B8B8B8;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px; /* 200% */
}
.home-page-wallet-box h4{
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px; /* 171.429% */
  margin-top: 6px;
}

.home-page-wallet-box .icon{
  width: 93px;
  height: 93px;
  background-color: #E0F64B;
  border-radius: 50%;
  outline: 6px solid #8752F3;
  box-shadow: 0px 0px 7px 1px #000000;
}
.daily-streak{
  background:url('../images/daily-chart.png') top 8px center no-repeat #343434;
  padding: 16px;
  border-radius: 8px;
}
.daily-streak .daily-streak-head{
  display: flex;
  justify-content: center;
  align-items: center;
}
.daily-streak .daily-streak-head .avatar{
  position: relative;
  left: 20px;
}
.daily-streak .daily-streak-head .avatar img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid #fff;
}
.daily-streak .daily-streak-head .avatar  h6{
  position: absolute;
  width: 100%;
  text-align: center;
  height: 18px;
  background-color: #E0F64B;
  border-radius: 50px;
  bottom: 0;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.daily-streak  h5{
  color: #f7f7f7;
  margin-top: 6px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0px;
  text-align: center;
}
.daily-streak  p{
  font-weight: 400;
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #B8B8B8;
}
.tasks{
  border-radius: 12px;
  background:url('../images/tasks.png') top center no-repeat #202020;
  padding: 16px;
}
.tasks h3{
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 127.273% */
  margin-bottom: 32px;
}
.tasks > div{
  text-align: center;
}
.tasks a{
  color: #171717;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 166.667% */
  background-color:#E0F64B;
  padding: 4px 8px;
  border-radius: 4px;
}
.taks-slider {
  padding-bottom: 12px;
}
.taks-slider .swiper-pagination{
  position: relative;
  top: 5px;
}
.leader-board{
  margin-top: 24px;
}
.main-title{
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 12px;
}
.board-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 16px;

}
.board-item{
  width: calc(50% - 8px);
  background-color: #202020;
  padding: 16px;
  border-radius: 12px;
}
.board-item h6{
  color: #EB892B;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 200% */
  margin: 8px 0;
}
.board-item h5{
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  display: flex;
  justify-content: space-between;
}
.board-item .image{
  position: relative;
}
.board-item .image .small{
  position: absolute;
  top: 5px;
  right: 5px;
}
.board-item .image img:last-child{
  width: 100%;
}
.vertical-menu{
  background-color: #171717;
  position: fixed;
  bottom: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  overflow: auto;
  left: 0;
  transition: .4s;
  border-top: 1px solid #333333;
}
.vertical-menu a{
  min-width: 20%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 3px;
}
.vertical-menu a svg{
  width: 21px;
  height: 21px;
}
.vertical-menu a span{
  color: #848484;
  font-size: 11px;
}
.vertical-menu a.active{
  background: linear-gradient(to bottom, #181818 10%, #8752F3 100%);
}
.vertical-menu a.active svg path{
  fill: #fff;
}
.vertical-menu a.active span{
  color: #fff;
  font-weight: 600;
}
.profile-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.profile-card .avatar{
  position: relative;
  z-index: 1;
}
.profile-card .avatar img{
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.profile-card .avatar h6{
  width: 100%;
  text-align: center;
  background-color: #E0F64B;
  border-radius: 50px;
  bottom: -5px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  position: absolute;
}
.profile-card .info{
  width: 100%;
  border-radius: 50px;
  border: 1px solid #8752F3;
  background-color: #181818a1;
  display: flex;
  justify-content: center;
  padding: 16px 0;
  gap: 52px;
  position: relative;
}
.profile-card .info h6{
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  width: calc(50% - 26px);
}
.profile-card .info h6 span{
  display: block;
}
.profile-card .info h6:first-child{
  text-align: right;
}
.profile-card .info h6 span{
  font-size: 10px;
  font-weight: 400;
}
.profile-card .info::after{
  content: '';
  width: 1px;
  height: calc(100% - 16px);
  background-color: #fff;
  position: absolute;
  top: 0;
  right: calc(50% - 1px);
}
.task-vector{
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}
.count-down-task{
  background-color: #000;
  border: 1px solid #fff;
  padding: 16px;
  position: relative;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.count-down-task .image{
  border: 5px solid #fff;
  max-width: 111px;
  border-radius: 22px;
  line-height: 0;
  overflow: hidden;
}
.count-down-task .content {
  flex:1;
}
.count-down-task .content h6{
  color: #ddd;
  font-size: 11px;
  margin-bottom: 5px;
}
.count-down-task .content h5{
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
.count-down-task .content .time{
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.count-down-task .content .time span{
  background-color: #E0F64B;
  border-radius: 4px;
  color: #202020;
  font-size: 14px;
  font-weight:600;
  padding: 4px 6px;
  letter-spacing: -0.2px;
  text-align: center;
  width: 40px;
}
.count-down-task .content .content-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.start-button{
  border-radius: 12px;
  background: #8752F3;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 4px 8px;
  letter-spacing: -0.5px;
}
.count-down-task .content .content-bottom h6{
  margin-bottom: 0;
}
.task-item{
  border-radius: 12px;
  background:  linear-gradient(0deg, #3D3D3D 0%, #3D3D3D 100%), rgba(127, 127, 127, 0.50);
  padding: 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .2s;
}
.task-item:hover{
  transform: scale(1.03);
}
.task-item .left{
  display: flex;
  align-items: center;
  gap: 12px;
}
.task-item .left .icon{
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.task-item .left h6{
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.task-item .left p{
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.task-item .left p span{
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;

}
.task-item .left p span img{
  position: relative;
  top: -1px;
}
.task-list-content{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.task-item.progress{
  flex-wrap: wrap;
  padding-bottom: 0;
  overflow: hidden;
}
.task-item.progress .task-progress{
  margin-top: 12px;
  width: calc(100% + 24px);
  padding: 6px;
  margin-left: -12px;
  margin-right: -12px;
  background-color: #323030;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.task-item.progress .task-progress-box{
  width: 75%;
  height: 10px;
  background-color: #fff;
  border-radius: 50px;
}
.task-item.progress .task-progress-box .loader-progress{
  height: 10px;
}
.task-item.progress .task-progress .count{
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}
.fixed-box{
  width: 100%;
  height:100vh;
  overflow: auto;
  background-color: #171717;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 16px;
}
.fixed-box .head{
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 35px;
  position: relative;
}
.fixed-box .head h6{
  color: #fff;
  font-weight: 600;
}
.fixed-box .head .back-button{
  position: absolute;
  left: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
}
.fixed-box .fixed-box-body .wallet-box{
  padding: 16px;
  border-radius: 12px;
  background:url('../images/wallet-box-bg.png') right top no-repeat #202020;
}
.fixed-box .fixed-box-body .wallet-box h6{
  color: #E8E8E8;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 4px;
}
.fixed-box .fixed-box-body .wallet-box h5{
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.fixed-box .fixed-box-body{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fixed-box .fixed-box-body .wallet-box h4{
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  margin-top: 14px;
}
.wallet-withdraw-button{
  border-radius: 12px;
  border: 1px solid #E0F64B;
  background: #202020;
  padding: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.wallet-list-head{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wallet-list-head h6{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.wallet-list-head span{
  color: #848484;
  font-size: 11px;
  font-weight: 500;
}
.wallet-boxes{
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 12px;
}
.wallet-boxes .wallet-item{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333333;
}
.wallet-boxes .wallet-item .wallet-item-top,.wallet-boxes .wallet-item .wallet-item-bottom{
  display: flex;
  justify-content: space-between;
}
.wallet-boxes .wallet-item:last-child{
  border-bottom-width: 0;
}
.wallet-boxes .wallet-item .wallet-item-top h6{
  color: #fff;
  font-size: 14px;
}
.wallet-boxes .wallet-item h5{
  color: #1ABC7B;
  font-size: 11px;
  font-weight: 600;
}
.wallet-boxes .wallet-item  h4{
  color: #848484;
  text-align: right;
  font-size: 12px;
  font-weight: 500;
}
.account-button{
  display: flex;
  align-items: center;
  gap: 12px;
  background: url('../images/tasks.png') top center no-repeat #202020;
  padding: 16px;
  border-radius: 12px;
}
.account-button h6{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.account-menu{
  border-radius: 12px;
  background: #202020;
  overflow: hidden;
}
.account-menu a{
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}
.account-menu a:last-child{
  border-bottom-width: 0;
}
.account-menu a span{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;

}
.account-menu a span svg{
  width: 20px;
  height: 20px;
}
.account-menu a span.custom-text{
  color: #848484;
}
.quiz-name{
  margin-top: -56px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}
.quiz-name span{
  font-weight: 700;
}
.quiz-search{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.quiz-search svg{
  position: absolute;
  left: 10px;
}
.quiz-search input{
  height: 46px;
  width: 100%;
  border-radius: 12px;
  background-color: #252525;
  border:none;
  outline: none;
  padding: 0 36px;
  color: #fff;
  transition: .3s;
  border: 1px solid transparent;
}
.quiz-search input::placeholder{
  color: #ccc;
}
.quiz-search input:focus{
  border-color: #E0F64B;;
}

.quiz-list h5{
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 16px;
}
.quiz-boxes{
display: flex;
flex-direction: column;
gap: 12px;
}
.quiz-boxes .quiz-item{
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: #202020;
  border-radius: 12px;
  gap: 12px;
}
.quiz-boxes .quiz-item .image{
  min-width: 100px;
}
.quiz-boxes .quiz-item .content h6{
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 21px */
}
.quiz-boxes .quiz-item .content p{
  color: #FFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.quiz-boxes .quiz-item .content span{
  margin-top: 8px;
  display: block;
  color: #E0F64B;
  font-size: 12px;
  font-weight: 600;
}
.quiz-detail-title{
  color: #FFF;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.165px;
  text-align: center;
  margin: 32px 0;
}
.quiz-detail-box .question{
  border-radius: 16px;
  background: #252525;
  text-align: center;
  padding: 16px 62px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quiz-detail-box .question .count{
  background: #252525;
  padding: 4px;
  border-radius: 4px;
  color: #C5A70C;
  margin-top: -32px;
  border-radius: 12px;
}
.question-res{
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.question-res .question-res-item{
  position: relative;
}
.question-res .question-res-item input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.question-res .question-res-item span{
  width: 27px;
  height: 27px;
  border-radius: 6px;
  background: #E7E7E7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8C8C8C;
}
.question-res .question-res-item label{
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: #202020;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  display: flex;
  transition: all .2s;
  color: #fff;
}
.question-res .question-res-item input:checked + label{
  background-color: #E0F64B;
  color:#202020;
  font-weight: 600;
}
.question-res .question-res-item input:checked + label span{
  background-color: #202020;
  color: #fff;
}
.quiz-detail-box .next-button{
 width: 100%;
  background: #E0F64B;;
  border-radius: 50px;
  padding: 16px;
  color: #202020;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all  .3s;
}
.quiz-detail-box .next-button:hover{
  background: #8752F3;
  color: #fff;
}
.exit-quiz{
  margin-top: 52px;
  display: block;
  text-align: center;
  color: red;
  padding: 16px;
  font-weight: 600;
}

button[disabled]{
  opacity: 0.5;
  cursor: not-allowed;
}
.leader-board-select{
  display: flex;
  justify-content: flex-end;

}
.leader-board-select select{
  background: none;
  border: none;
  color: #848484;
  font-size: 12px;
  font-weight: 600;
}
.leader-board-select select:focus{
  outline: none;
}
.leader-board-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.leader-board-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  background: #202020;
  padding: 16px;
}
.leader-board-item .left{
  display: flex;
  gap: 8px;
  align-items: center;
}
.leader-board-item .left .rank{
  color: #171717;
  font-size: 12px;
  font-weight: 700;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #E0F64B;
  display: flex;
  align-items:center;
  justify-content: center;
}
.leader-board-item .left h6{
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.leader-board-item .right{
  display: flex;
  align-items: center;
  gap: 4px;
}
.leader-board-item .right p{
  color: #848484;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px; /* 160% */
}
.leader-board-item .right div{
  background-color: #1ABC7B;
  color: #FAFAFA;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  padding: 3px 6px;
  border-radius: 4px;
}
.leader-board-item.you{
  background-color: #E0F64B;
}
.leader-board-item.you .left .rank{
  background-color: #202020;
  color: #fff;
}
.leader-board-item .left h6{
  color: #202020;
}
.leader-board-item.you .right p{
  color: #202020;
}
.fixed-box .fixed-box-body .stake-box{
  background: #E0F64B ;
}
.fixed-box .fixed-box-body .stake-box h6{
  color: #171717;;
}
.fixed-box .fixed-box-body .stake-box h5{
  color: #171717;;
}
.fixed-box .fixed-box-body .stake-box h4{
  color: #171717;;
}
