@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.not_resp{
  display: none;
  text-align: center;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

body {
  width: 100%;
  height: 100vh;
  font-family: "Bricolage Grotesque";
  background: linear-gradient(120deg, #17002f, #090012);
  color: #fff;
}

cds-dropdown:not(:defined),
cds-dropdown-item:not(:defined) {
  visibility: hidden;
}

.container {
  height: 100%;
  display: none;
}
.container .sidebar {
  padding: 25px 20px 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid #26232e;
}
.container .sidebar .logo img {
  width: 40px;
  height: 40px;
}
.container .sidebar .ops {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.container .sidebar .ops i {
  position: relative;
  padding: 15px;
  cursor: pointer;
  font-size: 25px;
  font-weight: 200 !important;
}
.container .sidebar .ops i.active::after {
  content: "";
  bottom: 0;
  top: 85%;
  left: 57%;
  transform: translate(-85%, -57%);
  position: absolute;
  width: 10px;
  height: 3px;
  border-radius: 30px;
  background: #eac3ff;
}
.container .sidebar .user {
  transform: translate(0px, calc(100vh - 265px));
}
.container .sidebar .user img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2549019608);
}
.container .sidebar .user img:hover {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.4235294118);
}
.container .sidebar .user img:hover ~ .menu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateX(0);
}
.container .main {
  width: calc(100% - 82px);
  padding: 25px 0 0 50px;
}
.container .main.animate {
  visibility: hidden;
  opacity: 0;
  height: 0px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.container .main img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 800px;
}
.container .main .vidSec {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.container .main .vidSec #stopBtn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 15px 30px;
  color: #ffffff;
  font-family: "Bricolage Grotesque";
  font-weight: 600;
  outline: none;
  background-image: linear-gradient(120deg, #b949f4, #7f36a5);
  border: none;
  border-radius: 10px;
  transition: opacity 0.3s ease-in-out;
}
.container .main .vidSec #stopBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.container .main .vidSec #stopBtn:disabled:hover {
  opacity: 0.5;
}
.container .main .vidSec #stopBtn:hover {
  opacity: 0.9;
}
.container .main .vidSec .video {
  margin-top: 60px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px dashed #26232e;
  border-radius: 35px;
  height: 500px;
  width: 500px;
}
.container .main .vidSec .video::before {
  content: "CLICK TO SCAN";
  color: #26232e;
  font-weight: bold;
  font-size: 80px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.container .main .vidSec .video video {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .main .vidSec .video canvas {
  position: absolute;
  z-index: 1;
}
.container .songResults {
  display: none;
  visibility: visible;
  opacity: 1;
  height: 100%;
  pointer-events: all;
  width: calc(100% - 82px);
  padding: 25px 50px 0 50px;
}

.menu {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  bottom: 45px;
  left: 0px;
  background: #0d0b15;
  border-radius: 10px;
  padding: 15px;
  transform: translateX(-20px);
  transition: all 0.2s ease-in-out;
}
.menu:hover {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateX(0);
}
.menu #email {
  font-size: 13px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.6509803922);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1215686275);
  margin-bottom: 10px;
}
.menu #signOut {
  cursor: pointer;
  width: 100%;
  height: 35px;
  color: #ffffff;
  font-family: "Bricolage Grotesque";
  font-weight: 600;
  outline: none;
  background-image: linear-gradient(120deg, #ff5885, #ff2155);
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.menu #signOut:hover {
  background-position: 172px;
}

.recmd {
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  transition: ease-in-out 0.3s;
}

.music-card {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
  height: 250px;
  gap: 10px;
}

.song-artist {
  text-transform: capitalize !important;
}

.song-title {
  text-transform: capitalize;
}

.song {
  visibility: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

.music-card img {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.music-card .thumb_wrapper::before {
  content: url("../images/play.png");
  position: absolute;
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  background-color: rgba(24, 24, 24, 0.403);
  border-radius: 5px;
  z-index: 1;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.music-card .thumb_wrapper:hover::before {
  opacity: 1;
}

.music-card .thumb_wrapper.playing::before {
  content: url("../images/pause.png");
  position: absolute;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 600;
  width: 180px;
  height: 180px;
  background-color: rgba(24, 24, 24, 0.403);
  border-radius: 5px;
  z-index: 2;
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.music-card .details {
  margin-left: 10px;
}

.music-card .details p {
  font-size: 14px;
  color: #bfbfbf;
}/*# sourceMappingURL=index.css.map */

 @media screen and (max-width: 1300px){
  img[alt="banner"]{
    display: none;
  }
}

 @media screen and (max-width: 650px){
   .container{
     display:none !important;
   }
   .not_resp{
     display:flex;
   }
 }
