body {
  background: url("../../assets/img/bg-default.png") center / cover;
  font-family: Inter, sans-serif;
  color: #fff;
}

main {
  height: 100vh;
  display: flex;
  align-items: center;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background: rgba(30,13,38,0.61);
  justify-content: center;
  flex-direction: column;
}

main h1 {
  font-weight: 900;
  font-size: 8rem;
  display: flex;
  text-shadow: -10px 8px 0 #000;
  text-transform: uppercase;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  main h1 img {
    display: none;
  }
}

main h1 img {
  width: 84px;
  margin: 1rem 0;
  border-radius: 19px;
}

main h1 {
}

main .btn.play {
  background: #00ff47;
  width: 20rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 6px solid;
  box-shadow: -8px 6px;
  transition: .2s;
  font-size: 32px;
}

main .btn.play:hover {
  background: #00ff47;
  border-color: #1f2024;
  color: #1f2024;
  box-shadow: -8px 6px #1f2024;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem!important;
    margin: 12px;
  }
}
.page h1{
  text-transform: capitalize;
}
.nav-b {
  position: fixed;
  border-radius: 5px;
  width: 100%;
  top: 12px;
  display: flex;
  justify-content: center;
}

.nb {
  padding: 0 5px;
  height: 50px;
  width: 406px;
  background: #1F2024;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
}

.app-info img {
  width: 40px;
}

@media (max-width: 768px) {
  .nb {
    width: 342px;
    border-radius: 8px;
  }
}

.app-info {
  display: flex;
  align-items: center;
  justify-content: start;
  /*width: 50%;*/
}

.app-info h5 {
  margin: 0 11px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .app-info h5 {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .app-info img {
    width: 26px;
    display: none;
  }
}

.links {
  display: flex;
  align-items: center;
  justify-content: end;
}

.links a {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

.links .btn {
  background: #7e18ff;
  color: #Fff;
  margin: 0;
}

.shinny:before {
  content: "";
  animation: shiny 6s ease-in-out infinite;
  background: rgba(255,255,255,0.74);
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: -180px;
  width: 30px;
  z-index: 100;
}

@keyframes shiny {
  0% {
    opacity: 0;
    transform: scale(0) rotate(45deg);
  }
  50% {
    opacity: .3;
    transform: scale(0) rotate(45deg);
  }
  81% {
    opacity: .6;
    transform: scale(4) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: scale(50) rotate(45deg);
  }
}

.popup {
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.56);
  position: fixed;
  display: flex;
  z-index: 102;
  align-items: center;
  justify-content: center;
}

.p-box {
  width: 30rem;
  position: relative;
  padding: 2rem;
  text-align: center;
  background: #1f2024;
  border-radius: 12px;
}

.p-box h2 {
  font-weight: 900;
  font-size: 37px;
}

input {
  height: 50px;
  width: 100%;
  color: #fff;
  background: rgba(0,0,0,0.19);
  border: none;
  padding: 0 1rem;
  border-radius: 50px;
  font-weight: 900;
}

.inpb {
  display: flex;
  padding: 1rem;
  margin: 11px 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.values-default {
  margin: 1rem 0;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  position: relative;
}
.values-default .bonus {
    position: absolute;
    border-radius: 0 8px 0 7px;
    background: linear-gradient(90deg, red, #ff0c23);
    top: 0;
    font-weight: 300;
    font-size: 11px;
    /* display: none; */
    right: 0;
    padding: 0 6px;
}
.values-default .btn {
    background: linear-gradient(#9d74d51a, rgb(0 0 0 / 0%));
    color: #fff;
    height: 50px;
    border: 2px solid #5e58c761;
    margin: 2px;
    position: relative;
    border-radius: 11px;
    width: 48%;
    font-weight: 900;
}

.play-game {
  width: 100%;
  background: #00ff47;
  height: 50px;
  border-radius: 15px 0px 0px 15px;
  font-weight: 700;
}
.play-game2 {
  width: 100%;
  background: #ff0c23;
  border: none;
  height: 50px;
  color: #fff;
  border-radius: 0 15px 15px 0;
  font-weight: 700;
}
.play-game2:hover{
  background: red;
}
.play-game:hover{
  background: #ff0c23;
  color: #111;
}
.play-game {
  height: 50px;
}

.close-popup {
  font-size: 2.5rem;
  padding: 5px;
  cursor: pointer;
  border-radius: 5px;
  position: absolute;
  top: 0;
  background: rgb(31,32,36);
  box-shadow: 0 0 15px rgba(0,0,0,0.19);
}

.page {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(-1px);
  -webkit-backdrop-filter: blur(-1px);
  justify-content: start;
  padding: 4rem 0 0;
/*  height: 100%;*/
}

.pcall {
  width: 100%;
  width: 100%;
  padding: 2em 1em;
/*  height: 100%;*/
  border: 9px solid #111111;
  background: #111111;
  border-radius: 15px;
}

.pcall H2 {
  text-align: center;
  font-weight: 900;
}

.pcall .avs {
  font-weight: 500!important;
  text-align: center;
  font-size: 14px;
}

.pcall input {
  margin: 5px 0;
  color: #fff!important;
  background: #1f2024;
  border-radius: 50px;
  text-align: center;
  border: none;
  font-weight: 900;
}

.pcall input:focus {
  margin: 5px 0;
  box-shadow: none!important;
  color: #fff!important;
  background: #1f2024;
  border-radius: 50px;
  text-align: center;
  border: none;
  font-weight: 900;
}

.pcall input::placeholder {
  color: rgba(255,255,255,0.21);
  font-weight: 900;
}

.pcall label {
  margin: 0;
  font-weight: 700;
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 0 17px;
}

.pcall form .btn.sed {
  width: 100%;
  margin-top: 1rem;
  background: #00ff47;
  height: 45px;
  border-radius: 50px;
  font-weight: 900;
}

.sed {
}

.music-item{
  background: #000;
  padding: 5px;
  width: 100%;
  border-radius: 10px;
  margin: 5px 0;
  justify-content: space-around;
  align-items: center;
  position: relative;
}
.m-info{
  text-align: center;
}
.m-info p{
  font-weight: 500;
  margin: 0;
   font-size: 10px;
}
.m-info h1 {
  font-weight: 700;
  margin: 0;
  font-size: 15px!important;
  text-shadow: none!important;
}
.m-img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}
.topPlayed{
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  padding: 1px 5px;
  font-weight: 600;
  font-size: 10px;
  border-radius: 0px 10px 0px 2px  ;
}
.m-stats{
  font-size: 5px;
  display: flex;
  align-items: center;
  justify-content: center;

}
 .m-stats svg{
  width: 11px;
 }
.select-music{
  height: 300px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  padding: 1rem;
  /* justify-content: center; */
  flex-direction: column;
}

.music-item.selected{
  background: linear-gradient(90deg,#1CB351,#1DD05D);
  transform: scale(1.1);
}
.acpp{
/*  background: red!important;*/
}
.acpp .accordion-item{
border: none;
background: none;
margin: 5px 0;
}
.accordion-header{
/*  background: blue;*/
}

.accordion-flush>.accordion-item>.accordion-header .accordion-button, .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
    border-radius: 0;
    color: #fff;
    background: #070707;
    border-radius: 12px;
    border: none;
}
.accordion-body{
  border: none;
  color: #fff;
}
.accordion-button:not(.collapsed), .accordion-button {
  border: none;
  box-shadow: none;
}
.sk{
/*  font-size: 1.5rem;*/
}
.ipb{
  background: #1f2024;
  border-radius: 50px;
/*  overflow: hidden;*/
  display: flex;
}
.ipb .btn{
  border-radius: 50px;
  width: 10rem;
  color: #fff;
}
.ipb input{
/*  width: 50%;*/
}
.card-aff{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.card-aff-item{
  height: 100px;
  background: #1F2024;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #282828;
}
.card-aff-item.green{
  background: #198754;
    border-color: #36e393;
}
.card-aff-item h3{
  font-size: 30px;
  font-weight: 700;
}

.card-aff-item h2{
  font-size: 25px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .caf{
    flex-wrap: wrap;
  }
}