@font-face {
  font-family: Poppins;
  src: url(Poppins-Regular.otf);
  }
  @font-face {
    font-family: PoppinsBlk;
    src: url(Poppins-Black.otf);
    }
  
  @font-face {
  font-family: Digitalism;
  src: url(digitalism.ttf);
  }
  
  @font-face {
  font-family: Randhu;
  src: url(Poppins-Regular.otf);
  }


  
  .btn {
    background-color: #fa8072;
    color: white;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.25em;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    transition: all 0.2s ease-in-out;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    padding: 1em 2em;
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: all 0.15s ease;
    cursor: pointer;
  }
  
  .btn:hover,
  .btn:focus {
    background-color: #f97263;
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 50, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    outline:0;
  }
  
  .btn:focus-visible {
    outline:2px solid #f97263;
    outline-offset: 5px;
  }
  
  .btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 12px -2px inset rgba(50, 50, 50, 0.25);
  }
  
  /* input:focus, textarea:focus {
    background-color: #FFFF66;
    border: 1px solid #F47E58;
  }
  
  input:focus {
    outline: none !important;
  }
  
  textarea:focus, input:focus{
    outline: none;
  } */



  body {
    font-family: 'Lato'
 }
 .wdt-loading-screen {
   width: 100%;
   height: 100%;
   background-color: #fff;
   position: fixed;
   z-index: 999998;
   top: 0;
   left: 0;
   overflow: hidden;
   display: none;
 }
 
 .wdt-loading-phrases {
   width: 300px;
   margin: 0 auto;
   height: 106px;
   overflow: hidden;
   position: relative;
   padding: 10px 0;
   text-align: center;
   top: 50%;
   transform: translateY(-50%);
 }
 
 .wdt-loading-phrases:before {
   content: " ";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 999999;
   background: rgba(255,255,255,1);
   background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(50%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
   background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
 }
 
 .wdt-loading-phrase {
   padding-left: 30px;
   position: relative;
   -webkit-transition: all 1s ease;
   transition: all 1s ease;
   transform: translateY(30px);
   line-height: 30px;
   height: 30px;
 }
 
 .wdt-loading-phrase:before {
   content: " ";
   width: 18px;
   height: 18px;
   position: absolute;
   top: 6px;
   left: 0;
   border: 1px solid #ccc;
   border-radius: 50%;
 }
 
 .wdt-loading-phrase:after {
   opacity: 0;
   height: 11px;
   width: 7px;
   -webkit-transform-origin: left top;
   -moz-transform-origin: left top;
   -ms-transform-origin: left top;
   -o-transform-origin: left top;
   transform-origin: left top;
   border-right: 3px solid #2EB150;
   border-top: 3px solid #2EB150;
   border-radius: 2.5px !important;
   content: '';
   left: 3px;
   top: 16px;
   position: absolute;
   -webkit-transform: scaleX(-1) rotate(135deg);
   -moz-transform: scaleX(-1) rotate(135deg);
   -ms-transform: scaleX(-1) rotate(135deg);
   -o-transform: scaleX(-1) rotate(135deg);
   transform: scaleX(-1) rotate(135deg);
 }
 
 .wdt-loading-phrase.wdt-checked:after {
   -webkit-animation-delay: 100ms;
   -moz-animation-delay: 100ms;
   animation-delay: 100ms;
   -webkit-animation-duration: 200ms;
   -moz-animation-duration: 200ms;
   animation-duration: 200ms;
   -webkit-animation-timing-function: ease;
   -moz-animation-timing-function: ease;
   animation-timing-function: ease;
   -webkit-animation-name: checkmark;
   -moz-animation-name: checkmark;
   animation-name: checkmark;
   -webkit-transform: scaleX(-1) rotate(135deg);
   -moz-transform: scaleX(-1) rotate(135deg);
   -ms-transform: scaleX(-1) rotate(135deg);
   -o-transform: scaleX(-1) rotate(135deg);
   transform: scaleX(-1) rotate(135deg);
   -webkit-animation-fill-mode: forwards;
   -moz-animation-fill-mode: forwards;
   animation-fill-mode: forwards;
 }
 
 @-webkit-keyframes checkmark {
   0% {
     height: 0;
     width: 7px;
     opacity: 1;
   }
   20% {
     height: 2px;
     width: 7px;
     opacity: 1;
   }
   40% {
     height: 5px;
     width: 7px;
     opacity: 1;
   }
   100% {
     height: 11px;
     width: 7px;
     opacity: 1;
   }
 }
 
 @-moz-keyframes checkmark {
   0% {
     height: 0;
     width: 7px;
     opacity: 1;
   }
   20% {
     height: 2px;
     width: 7px;
     opacity: 1;
   }
   40% {
     height: 5px;
     width: 7px;
     opacity: 1;
   }
   100% {
     height: 11px;
     width: 7px;
     opacity: 1;
   }
 }
 
 @keyframes checkmark {
   0% {
     height: 0;
     width: 7px;
     opacity: 1;
   }
   20% {
     height: 2px;
     width: 7px;
     opacity: 1;
   }
   40% {
     height: 5px;
     width: 7px;
     opacity: 1;
   }
   100% {
     height: 11px;
     width: 7px;
     opacity: 1;
   }
 }






  
  
  input {
    font-size:16px;
  }


  
  html, body {
    width: 100%;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: flex;
    font-family: var(--font);
    /* min-height:725px; */
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    overflow:hidden;
    background-color: black;
    /* min-height:500px; */
  }
  
  html {	
    flex-direction: column;
    
  }
  
  .loader{
    margin: 0 0 2em;
    height: 20px;
    width: 50px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
  }
  
  /*
    Set the color of the icon
  */
  .loader svg path,
  .loader svg rect{
    fill: var(--primary);
  }
  
  .radio {
    min-width: 20px;
    min-height: 20px;
    background: white;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border:2px solid #ccc;
    display:inline-block;
    border: 2px solid #004c97;
  }
  
  #radio input{
    display:none;
  }
  
  body {
    flex-direction: column;
    /* overflow: hidden; */
    touch-action: none;
    /* background: linear-gradient(
  115.51deg, #3C0E6D 2.65%, #C62C85 61.29%, #F29565 85.58%); */
  background-color:white;
    background-image: var(--img-bg);
    background-size: cover;
    background-position: center;
    height: auto;
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Poppins;
    /* min-height: 725px; */
    align-content: center;
    /* justify-content: flex-start; */
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
      align-items: center;
      justify-content: center;
      align-content: center;
  }
  
  #status {
    position: relative;
    color: var(--txt-master);
    text-align: center;
    font-size: 11px;
    line-height: 1;
    width: 50px;
    font-family:poppinsBlk;
    /* top: 22px; */
    /* left: 8px; */
    /* text-shadow: 1px  1px 0px #555, 
  -1px -1px 0px #555, 
   1px -1px 0px #555, 
  -1px  1px 0px #555; */
  }

  
  
  #preview {
    background-color: transparent;
    width: 300px;
    height: 250px;
    position: absolute;
    z-index: 999999;
    cursor: auto;
    cursor: pointer;
    background-Image:var(--preview-img);
    border-radius:var(--preview-border-radius);
    /* border:var(--preview-border-stroke); */
  }
  
  #content {
    position: relative;
    /* margin-top:-70px; */
    /* margin: auto; */
    /* width: 100%; */
    max-width: 90vw;
    height: auto;
    /* max-height: 500px; */
    min-height:250px;
    min-width:300px;
    /* background-image: url(bg_img.jpg); */
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 1;
  }
  
  #content_back {
    position: relative;
    /* margin: auto; */
    width: 100%;
    max-width: 90vw;
    height: 100%;
    /* background-image: url(1_player_cover_front_OnlyYou.png); */
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 00px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 1;
    /* padding:20px; */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* color:white; */
    /* border-radius: var(--radius-lg); */
  }
  
  
  
  #info_cta {
    /* position: absolute; */
    /* top: 20px;
    right: 20px; */
  }
  
  #play_cont{
    display: flex;
      justify-content: space-between;
      flex-direction: row;
      align-content: center;
      align-items: center;
      min-width: 100px;
      margin-right: 7px;
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  #boxes_cont::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  #boxes_cont {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  #play-toggle, #download, #purchase, #glow-hover-play, #glow-hover-stop, #glow-hover-download {
    border: 0;
    position: relative;
    min-width: 45px;
    min-height: 38px;
    max-width: 45px;
    max-height: 50px;
    height: 50px;
    width: 50px;
    bottom: 0px;
    z-index: 2;
    /* top: 250px; */
    /* left: 387px; */
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    cursor: pointer;
    display: flex;
    /* margin-left: 10px; */
    /* margin-right: 10px; */
  }
  
  #purchase {
    background-color: yellow;
  }
  #slider_cont.hide {
    visibility: hidden !important;
    pointer-events: none;
    cursor: initial;

  }
  #slider_cont.play {
    display: initial;
  }
  
  #slider_cont.stop {
    /* display: none */
    opacity:0.2 !important;
  }
  
  .pointer-events-none {
    pointer-events: none;
  }

  #play-toggle.play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--btn-play);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  }
  
  #play-toggle.stop::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid var(--btn-stop);
    border-bottom: 8px solid var(--btn-stop);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    clip-path: polygon(0% 25%, 25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%);
  }
  
  /* #play-toggle.play::after {
    content: "";
    display: block;
    width: 4px;
    height: 12px;
    background-color: white;
    margin: 0 0 0 16px;
  }
  
  #play-toggle.stop::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: white;
    margin: 2px 0 0 10px;
    border-radius: 50%;
  } */

  
  
 #play-toggle.play {
    /* background-color: var(--btn-play);
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    background-image: var(--img-master-play); */

    width: 100px;
    height: 100px;
    border: none;
    clip-path: polygon(25% 25%, 69.09% 48.59%, 69.09% 48.59%, 25% 75%);

    position: relative;
    /* left: 10px;
    top: 5px; */
    cursor: pointer;
    display: block;
    background-color: #576B68;
    border-radius:20px;
  } 

#play-toggle.stop {
    /* background-color: var(--btn-stop);
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    background-image: var(--img-master-stop); */

    width: 100px;
    height: 100px;
    border: none;
    clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
    position: relative;
    /* left: 10px;
    top: 5px; */
    cursor: pointer;
    display: block;
    background-color: #6B5757;
    /* border-radius:20px; */
  } 
  
  #download {
    background-image: var(--img-download);
    background-color: var(--color-download);
    font-size: 0.5rem;
    display: block;
  }
  
  #purchase {
    background-image: var(--img-purchase);
    background-color: var(--color-purchase);
    font-size: 0.5rem;
    display: contents;
    margin-right: 10px;
    /* margin-right: 10px; */
    visibility: visible; 
    display: block;
      left: 0px;
    /* display:none; */
    /* background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; */
    /* background-image:url("download_img.svg") */
    /* width:auto; */
  }
  
  .preview {
    /* position: relative;
    height: 48px;
    width: 44px;
    cursor: pointer;
    border: 0;
    border-right: 1px solid var(--border); */
    /* background-color: var(--bg-btn-updown); */
    /* background-size: contain;
    background-position: 50% 50%;
    border-bottom-left-radius: var(--radius-sm);
    border-top-left-radius: var(--radius-sm); */
    /* margin-left:20px; */

        /* background-image: var(--img-box-stop);

  }
  
  .preview:hover{
    /* background-color: var(--btn-hover); */
  }
  
  .preview.play {
    display: block;
    width: 15px;
    height: 15px;
    padding:15px;
    /* border-top: 8px solid transparent;
    border-bottom: 8px solid transparent; */
    /* border-left: 12px solid var(--btn-play); */
    clip-path: polygon(25% 25%, 69.09% 48.59%, 69.09% 48.59%, 25% 75%);
    background-color: #576B68;
    cursor: pointer;
    /* padding:5px; */
  }
  
  .preview.stop {
    display: block;
    width: 15px;
    height: 15px;
    padding:15px;
    /* border-top: 8px solid red;
    border-bottom: 8px solid red; */
    border-left: 12px solid var(--btn-play);
    clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
    background-color: #576B68;
    cursor: pointer;
  }
  
  #totalDuration {
    margin: 0 10px;
    font-family: poppinsBlk;
  }
  
  .loopinteract {
    position: relative;
    height: 52px;
    width: 44px;
    /* border-left: 1px solid var(--border); */
    /* left:10px; */
  }
  
  
  #masterUp {
    top:5px;
    left:6px;
    border-top-right-radius:8px;
    background-image: var(--master--img-box-btn-up);
      }
    
      #masterDown {
    bottom:5px;
    left:6px;
    background-image: var(--master--img-box-btn-down);

      }
  
  
  .loopinteract button:is(.up, .down) {
    position: absolute;
    width: 43px;
    height: 24px;
    background-repeat: no-repeat;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -ms-backface-visibility: visible;
    cursor: pointer;
    border: none;
    /* background-color: var(--bg-btn-updown); */
  }
  .loopinteract button.up {
    top: 0;
    left: 0px;
    border-top-right-radius: var(--radius-sm);
    background-position: top;
    background-image: var(--img-box-btn-up);
    top:5px;
  }

  
  .loopinteract button.up:hover {
    /* background-color: var(--btn-hover); */
  }
  
  .loopinteract button.down:hover {
    /* background-color: var(--btn-hover); */
  }
  
  .loopinteract button.down {
    bottom: 5px;
    left: 0;
    border-bottom-right-radius: var(--radius-sm);
    background-position: bottom;
    background-image: var(--img-box-btn-down);
  }
  .loopinteract button.up{
    /* border-bottom: 0.5px solid var(--border); */
    background-color:var(--loop-up)
  }
  .loopinteract button.down{
    /* border-top: 0.5px solid var(--border); */
    background-color:var(--loop-down)
  }
  
  button.down {
    bottom: 0;
  }
  
  button.up {
    top: 5px;
  }
  
  .repeat-container {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    height: 48px;
    /* border-left: 1px solid var(--border); */
  }
  
  .repeat, .repeat-text{
    position: relative;
    width: 30px;
    /* top: 96px;
    left: 42px; */
    background-color: transparent;
    border: none;
    /* color: black; */
    /* padding: 16px 32px; */
    text-decoration: none;
    cursor: pointer;
    font-size:12px;
    text-align: center;
    font-family: Poppins;
    outline:none;
  }

  .master_repeat {
    font-family: poppinsBlk;
  }

  .repeat {
    font-size: 0.9rem;
  }
  
  .repeat-text {
    font-size: 0.5rem;
  }
  
  .previewProgress {
    width: 30px;
    max-width: 30px;
    margin-right: 5px;
    bottom: 0px;
    height: 1px;
  }
  
  /* background: */
  progress::-webkit-progress-bar {
    background-color: var(--txt-box); width: 100%;
  }
  progress {
    background-color:yellow;
  }
  
  /* value: */
  progress::-webkit-progress-value {background-color: var(--progress-color) !important;}
  progress::-moz-progress-bar {background-color: var(--progress-color) !important;}
  progress {color: var(--progress-color);}
  
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    
  }
  
  /* scroll */
  
  * {
    box-sizing: border-box;
    margin:0;
  }
  
  /* @font-face {
  font-family: Poppins;
  src: url(Poppins-Regular.otf);
  }
  @font-face {
    font-family: PoppinsBlk;
    src: url(Poppins-Black.otf);
    }
  
  @font-face {
  font-family: Digitalism;
  src: url(digitalism.ttf);
  }
  
  @font-face {
  font-family: Randhu;
  src: url(Poppins-Regular.otf);
  } */

  
  .btn {
    background-color: #fa8072;
    color: white;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.25em;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    transition: all 0.2s ease-in-out;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    padding: 1em 2em;
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: all 0.15s ease;
    cursor: pointer;
  }
  
  .btn:hover,
  .btn:focus {
    background-color: #f97263;
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 50, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    outline:0;
  }
  
  .btn:focus-visible {
    outline:2px solid #f97263;
    outline-offset: 5px;
  }
  
  .btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 12px -2px inset rgba(50, 50, 50, 0.25);
  }
  
  /* input:focus, textarea:focus {
    background-color: #FFFF66;
    border: 1px solid #F47E58;
  }
  
  input:focus {
    outline: none !important;
  }
  
  textarea:focus, input:focus{
    outline: none;
  } */



  body {
    font-family: 'Lato'
 }
 .wdt-loading-screen {
   width: 100%;
   height: 100%;
   background-color: #fff;
   position: fixed;
   z-index: 999998;
   top: 0;
   left: 0;
   overflow: hidden;
   display: none;
 }
 
 .wdt-loading-phrases {
   width: 300px;
   margin: 0 auto;
   height: 106px;
   overflow: hidden;
   position: relative;
   padding: 10px 0;
   text-align: center;
   top: 50%;
   transform: translateY(-50%);
 }
 
 .wdt-loading-phrases:before {
   content: " ";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 999999;
   background: rgba(255,255,255,1);
   background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(50%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
   background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
 }
 
 .wdt-loading-phrase {
   padding-left: 30px;
   position: relative;
   -webkit-transition: all 1s ease;
   transition: all 1s ease;
   transform: translateY(30px);
   line-height: 30px;
   height: 30px;
 }
 
 .wdt-loading-phrase:before {
   content: " ";
   width: 18px;
   height: 18px;
   position: absolute;
   top: 6px;
   left: 0;
   border: 1px solid #ccc;
   border-radius: 50%;
 }
 
 .wdt-loading-phrase:after {
   opacity: 0;
   height: 11px;
   width: 7px;
   -webkit-transform-origin: left top;
   -moz-transform-origin: left top;
   -ms-transform-origin: left top;
   -o-transform-origin: left top;
   transform-origin: left top;
   border-right: 3px solid #2EB150;
   border-top: 3px solid #2EB150;
   border-radius: 2.5px !important;
   content: '';
   left: 3px;
   top: 16px;
   position: absolute;
   -webkit-transform: scaleX(-1) rotate(135deg);
   -moz-transform: scaleX(-1) rotate(135deg);
   -ms-transform: scaleX(-1) rotate(135deg);
   -o-transform: scaleX(-1) rotate(135deg);
   transform: scaleX(-1) rotate(135deg);
 }
 
 .wdt-loading-phrase.wdt-checked:after {
   -webkit-animation-delay: 100ms;
   -moz-animation-delay: 100ms;
   animation-delay: 100ms;
   -webkit-animation-duration: 200ms;
   -moz-animation-duration: 200ms;
   animation-duration: 200ms;
   -webkit-animation-timing-function: ease;
   -moz-animation-timing-function: ease;
   animation-timing-function: ease;
   -webkit-animation-name: checkmark;
   -moz-animation-name: checkmark;
   animation-name: checkmark;
   -webkit-transform: scaleX(-1) rotate(135deg);
   -moz-transform: scaleX(-1) rotate(135deg);
   -ms-transform: scaleX(-1) rotate(135deg);
   -o-transform: scaleX(-1) rotate(135deg);
   transform: scaleX(-1) rotate(135deg);
   -webkit-animation-fill-mode: forwards;
   -moz-animation-fill-mode: forwards;
   animation-fill-mode: forwards;
 }
 
 @-webkit-keyframes checkmark {
   0% {
     height: 0;
     width: 7px;
     opacity: 1;
   }
   20% {
     height: 2px;
     width: 7px;
     opacity: 1;
   }
   40% {
     height: 5px;
     width: 7px;
     opacity: 1;
   }
   100% {
     height: 11px;
     width: 7px;
     opacity: 1;
   }
 }
 
 @-moz-keyframes checkmark {
   0% {
     height: 0;
     width: 7px;
     opacity: 1;
   }
   20% {
     height: 2px;
     width: 7px;
     opacity: 1;
   }
   40% {
     height: 5px;
     width: 7px;
     opacity: 1;
   }
   100% {
     height: 11px;
     width: 7px;
     opacity: 1;
   }
 }
 
 @keyframes checkmark {
   0% {
     height: 0;
     width: 7px;
     opacity: 1;
   }
   20% {
     height: 2px;
     width: 7px;
     opacity: 1;
   }
   40% {
     height: 5px;
     width: 7px;
     opacity: 1;
   }
   100% {
     height: 11px;
     width: 7px;
     opacity: 1;
   }
 }






  
  
  input {
    font-size:16px;
  }


  
  html, body {
    width: 100%;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: flex;
    font-family: var(--font);
    /* min-height:725px; */
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    overflow:hidden;
    background-color: black;
    /* min-height:500px; */
  }
  
  html {	
    flex-direction: column;
    
  }
  
  .loader{
    margin: 0 0 2em;
    height: 20px;
    width: 50px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
  }
  
  /*
    Set the color of the icon
  */
  .loader svg path,
  .loader svg rect{
    fill: var(--primary);
  }
  
  .radio {
  
    min-width: 20px;
    min-height: 20px;
    background: white;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border:2px solid #ccc;
    display:inline-block;
    border: 2px solid #004c97;
  }
  
  #radio input{
    display:none;
  }
  
  body {
    flex-direction: column;
    /* overflow: hidden; */
    touch-action: none;
    /* background: linear-gradient(
  115.51deg, #3C0E6D 2.65%, #C62C85 61.29%, #F29565 85.58%); */
  background-color:white;
    background-image: var(--img-bg);
    background-size: cover;
    background-position: center;
    height: auto;
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Poppins;
    /* min-height: 725px; */
    align-content: center;
    /* justify-content: flex-start; */
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
      align-items: center;
      justify-content: center;
      align-content: center;
  }
  
  #status {
    position: relative;
    color: var(--txt-master);
    text-align: center;
    font-size: 11px;
    line-height: 1;
    width: 50px;
    font-family:poppinsBlk;
    /* top: 22px; */
    /* left: 8px; */
    /* text-shadow: 1px  1px 0px #555, 
  -1px -1px 0px #555, 
   1px -1px 0px #555, 
  -1px  1px 0px #555; */
  }
  
  #preview {
    background-color: transparent;
    width: 300px;
    height: 250px;
    position: absolute;
    z-index: 999999;
    cursor: auto;
    cursor: pointer;
    background-Image:var(--preview-img);
    border-radius:var(--preview-border-radius);
    /* border:var(--preview-border-stroke); */
  }
  
  #content {
    position: relative;
    /* margin-top:-70px; */
    /* margin: auto; */
    /* width: 100%; */
    max-width: 90vw;
    height: auto;
    /* max-height: 500px; */
    min-height:250px;
    min-width:300px;
    /* background-image: url(bg_img.jpg); */
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 1;
  }
  
  #content_back {
    position: relative;
    /* margin: auto; */
    width: 100%;
    max-width: 90vw;
    height: 100%;
    /* background-image: url(1_player_cover_front_OnlyYou.png); */
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 00px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 1;
    /* padding:20px; */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* color:white; */
    /* border-radius: var(--radius-lg); */
  }
  
  
  
  #info_cta {
    /* position: absolute; */
    /* top: 20px;
    right: 20px; */
  }
  
  #play_cont{
    display: flex;
      justify-content: space-between;
      flex-direction: row;
      align-content: center;
      align-items: center;
      min-width: 100px;
      margin-right: 7px;
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  #boxes_cont::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  #boxes_cont {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  #play-toggle, #download, #purchase, #glow-hover-play, #glow-hover-stop, #glow-hover-download {
    border: 0;
    position: relative;
    min-width: 45px;
    min-height: 38px;
    max-width: 45px;
    max-height: 50px;
    height: 50px;
    width: 50px;
    bottom: 0px;
    z-index: 2;
    /* top: 250px; */
    /* left: 387px; */
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    cursor: pointer;
    display: flex;
    /* margin-left: 10px; */
    /* margin-right: 10px; */
  }
  
  #purchase {
    background-color: yellow;
  }
  #slider_cont.hide {
    visibility: hidden !important;
    pointer-events: none;
    cursor: initial;

  }
  #slider_cont.play {
    display: initial;
  }
  
  #slider_cont.stop {
    /* display: none */
    opacity:0.2 !important;
  }
  
  .pointer-events-none {
    pointer-events: none;
  }

  #play-toggle.play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--btn-play);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  }
  
  #play-toggle.stop::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid var(--btn-stop);
    border-bottom: 8px solid var(--btn-stop);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    clip-path: polygon(0% 25%, 25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%);
  }
  
  /* #play-toggle.play::after {
    content: "";
    display: block;
    width: 4px;
    height: 12px;
    background-color: white;
    margin: 0 0 0 16px;
  }
  
  #play-toggle.stop::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: white;
    margin: 2px 0 0 10px;
    border-radius: 50%;
  } */

  
  
 #play-toggle.play {
    /* background-color: var(--btn-play);
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    background-image: var(--img-master-play); */

    width: 100px;
    height: 100px;
    border: none;
    clip-path: polygon(25% 25%, 69.09% 48.59%, 69.09% 48.59%, 25% 75%);

    position: relative;
    /* left: 10px;
    top: 5px; */
    cursor: pointer;
    display: block;
    background-color: #576B68;
    border-radius:20px;
  } 

#play-toggle.stop {
    /* background-color: var(--btn-stop);
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    background-image: var(--img-master-stop); */

    width: 100px;
    height: 100px;
    border: none;
    clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
    position: relative;
    /* left: 10px;
    top: 5px; */
    cursor: pointer;
    display: block;
    background-color: #6B5757;
    /* border-radius:20px; */
  } 
  
  #download {
    background-image: var(--img-download);
    background-color: var(--color-download);
    font-size: 0.5rem;
    display: block;
  }
  
  #purchase {
    background-image: var(--img-purchase);
    background-color: var(--color-purchase);
    font-size: 0.5rem;
    display: contents;
    margin-right: 10px;
    /* margin-right: 10px; */
    visibility: visible; 
    display: block;
      left: 0px;
    /* display:none; */
    /* background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; */
    /* background-image:url("download_img.svg") */
    /* width:auto; */
  }
  
  .preview {
    /* position: relative;
    height: 48px;
    width: 44px;
    cursor: pointer;
    border: 0;
    border-right: 1px solid var(--border); */
    /* background-color: var(--bg-btn-updown); */
    /* background-size: contain;
    background-position: 50% 50%;
    border-bottom-left-radius: var(--radius-sm);
    border-top-left-radius: var(--radius-sm); */
    /* margin-left:20px; */

        /* background-image: var(--img-box-stop);

  }
  
  .preview:hover{
    /* background-color: var(--btn-hover); */
  }
  
  .preview.play {
    display: block;
    width: 15px;
    height: 15px;
    padding:15px;
    /* border-top: 8px solid transparent;
    border-bottom: 8px solid transparent; */
    /* border-left: 12px solid var(--btn-play); */
    clip-path: polygon(25% 25%, 69.09% 48.59%, 69.09% 48.59%, 25% 75%);
    background-color: #576B68;
    cursor: pointer;
    /* padding:5px; */
  }
  
  .preview.stop {
    display: block;
    width: 15px;
    height: 15px;
    padding:15px;
    /* border-top: 8px solid red;
    border-bottom: 8px solid red; */
    border-left: 12px solid var(--btn-play);
    clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
    background-color: #576B68;
    cursor: pointer;
  }
  
  #totalDuration {
    margin: 0 10px;
    font-family: poppinsBlk;
  }
  
  .loopinteract {
    position: relative;
    height: 52px;
    width: 44px;
    /* border-left: 1px solid var(--border); */
    /* left:10px; */
  }
  
  
  #masterUp {
    top:5px;
    left:6px;
    border-top-right-radius:8px;
    background-image: var(--master--img-box-btn-up);
      }
    
      #masterDown {
    bottom:5px;
    left:6px;
    background-image: var(--master--img-box-btn-down);

      }
  
  
  .loopinteract button:is(.up, .down) {
    position: absolute;
    width: 43px;
    height: 24px;
    background-repeat: no-repeat;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -ms-backface-visibility: visible;
    cursor: pointer;
    border: none;
    /* background-color: var(--bg-btn-updown); */
  }
  .loopinteract button.up {
    top: 0;
    left: 0px;
    border-top-right-radius: var(--radius-sm);
    background-position: top;
    background-image: var(--img-box-btn-up);
    top:5px;
  }

  
  .loopinteract button.up:hover {
    /* background-color: var(--btn-hover); */
  }
  
  .loopinteract button.down:hover {
    /* background-color: var(--btn-hover); */
  }
  
  .loopinteract button.down {
    bottom: 5px;
    left: 0;
    border-bottom-right-radius: var(--radius-sm);
    background-position: bottom;
    background-image: var(--img-box-btn-down);
  }
  .loopinteract button.up{
    /* border-bottom: 0.5px solid var(--border); */
    background-color:var(--loop-up)
  }
  .loopinteract button.down{
    /* border-top: 0.5px solid var(--border); */
    background-color:var(--loop-down)
  }
  
  button.down {
    bottom: 0;
  }
  
  button.up {
    top: 5px;
  }
  
  .repeat-container {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    height: 48px;
    /* border-left: 1px solid var(--border); */
  }
  
  .repeat, .repeat-text{
    position: relative;
    width: 30px;
    /* top: 96px;
    left: 42px; */
    background-color: transparent;
    border: none;
    /* color: black; */
    /* padding: 16px 32px; */
    text-decoration: none;
    cursor: pointer;
    font-size:12px;
    text-align: center;
    font-family: Poppins;
    outline:none;
  }

  .master_repeat {
    font-family: poppinsBlk;
  }

  .repeat {
    font-size: 0.9rem;
  }
  
  .repeat-text {
    font-size: 0.5rem;
  }
  
  .previewProgress {
    width: 30px;
    max-width: 30px;
    margin-right: 5px;
    bottom: 0px;
    height: 1px;
  }
  
  /* background: */
  progress::-webkit-progress-bar {
    background-color: var(--txt-box); width: 100%;
  }
  progress {
    background-color:yellow;
  }
  
  /* value: */
  progress::-webkit-progress-value {background-color: var(--progress-color) !important;}
  progress::-moz-progress-bar {background-color: var(--progress-color) !important;}
  progress {color: var(--progress-color);}
  
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    
  }
  
  /* scroll */
  
  * {
    box-sizing: border-box;
    margin:0;
  }
  
  #wrapper_cont{
    padding: 20px;
    background-image: var(--img-wrapper-bg-large);
    background-color: #CEC6B3;
    opacity: 1;
    visibility: inherit;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: top;
    width: 600px;
    max-width: 90vw;
    max-height: 90vh;
    border: 20px;
    /* border-radius: 530px; */
    min-width:350px;
    height:420px;
    display:flex; position:fixed; justify-content: center;align-items: center; width: 300px;height: 250px;opacity: 1;visibility: inherit;max-width: 90vw;max-height: 90vh;align-content: center;flex-direction: column;background-color:#DED8CB ;border-radius: 30px;border-width:10px !important; border-color: #576B68 !important; border: 1px solid;
    border-color: #576B68; padding:0px; width:420px; height:420px;
   
  }

    /* @font-face {
  font-family: Poppins;
  src: url(Poppins-Regular.otf);
  }
  @font-face {
    font-family: PoppinsBlk;
    src: url(Poppins-Black.otf);
    }
  
  @font-face {
  font-family: Digitalism;
  src: url(digitalism.ttf);
  }
  
  @font-face {
  font-family: Randhu;
  src: url(Poppins-Regular.otf);
  } */

  
  .btn {
    background-color: #fa8072;
    color: white;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.25em;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    transition: all 0.2s ease-in-out;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    padding: 1em 2em;
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: all 0.15s ease;
    cursor: pointer;
  }
  
  .btn:hover,
  .btn:focus {
    background-color: #f97263;
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 50, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    outline:0;
  }
  
  .btn:focus-visible {
    outline:2px solid #f97263;
    outline-offset: 5px;
  }
  
  .btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 12px -2px inset rgba(50, 50, 50, 0.25);
  }
  
  /* input:focus, textarea:focus {
    background-color: #FFFF66;
    border: 1px solid #F47E58;
  }
  
  input:focus {
    outline: none !important;
  }
  
  textarea:focus, input:focus{
    outline: none;
  } */



  body {
    font-family: 'Lato'
 }
 .wdt-loading-screen {
   width: 100%;
   height: 100%;
   background-color: #fff;
   position: fixed;
   z-index: 999998;
   top: 0;
   left: 0;
   overflow: hidden;
   display: none;
 }
 
 .wdt-loading-phrases {
   width: 300px;
   margin: 0 auto;
   height: 106px;
   overflow: hidden;
   position: relative;
   padding: 10px 0;
   text-align: center;
   top: 50%;
   transform: translateY(-50%);
 }
 
 .wdt-loading-phrases:before {
   content: " ";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 999999;
   background: rgba(255,255,255,1);
   background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(50%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
   background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
 }
 
 .wdt-loading-phrase {
   padding-left: 30px;
   position: relative;
   -webkit-transition: all 1s ease;
   transition: all 1s ease;
   transform: translateY(30px);
   line-height: 30px;
   height: 30px;
 }
 
 .wdt-loading-phrase:before {
   content: " ";
   width: 18px;
   height: 18px;
   position: absolute;
   top: 6px;
   left: 0;
   border: 1px solid #ccc;
   border-radius: 50%;
 }
 
 .wdt-loading-phrase:after {
   opacity: 0;
   height: 11px;
   width: 7px;
   -webkit-transform-origin: left top;
   -moz-transform-origin: left top;
   -ms-transform-origin: left top;
   -o-transform-origin: left top;
   transform-origin: left top;
   border-right: 3px solid #2EB150;
   border-top: 3px solid #2EB150;
   border-radius: 2.5px !important;
   content: '';
   left: 3px;
   top: 16px;
   position: absolute;
   -webkit-transform: scaleX(-1) rotate(135deg);
   -moz-transform: scaleX(-1) rotate(135deg);
   -ms-transform: scaleX(-1) rotate(135deg);
   -o-transform: scaleX(-1) rotate(135deg);
   transform: scaleX(-1) rotate(135deg);
 }
 
 .wdt-loading-phrase.wdt-checked:after {
   -webkit-animation-delay: 100ms;
   -moz-animation-delay: 100ms;
   animation-delay: 100ms;
   -webkit-animation-duration: 200ms;
   -moz-animation-duration: 200ms;
   animation-duration: 200ms;
   -webkit-animation-timing-function: ease;
   -moz-animation-timing-function: ease;
   animation-timing-function: ease;
   -webkit-animation-name: checkmark;
   -moz-animation-name: checkmark;
   animation-name: checkmark;
   -webkit-transform: scaleX(-1) rotate(135deg);
   -moz-transform: scaleX(-1) rotate(135deg);
   -ms-transform: scaleX(-1) rotate(135deg);
   -o-transform: scaleX(-1) rotate(135deg);
   transform: scaleX(-1) rotate(135deg);
   -webkit-animation-fill-mode: forwards;
   -moz-animation-fill-mode: forwards;
   animation-fill-mode: forwards;
 }
 
 @-webkit-keyframes checkmark {
   0% {
     height: 0;
     width: 7px;
     opacity: 1;
   }
   20% {
     height: 2px;
     width: 7px;
     opacity: 1;
   }
   40% {
     height: 5px;
     width: 7px;
     opacity: 1;
   }
   100% {
     height: 11px;
     width: 7px;
     opacity: 1;
   }
 }
 
 @-moz-keyframes checkmark {
   0% {
     height: 0;
     width: 7px;
     opacity: 1;
   }
   20% {
     height: 2px;
     width: 7px;
     opacity: 1;
   }
   40% {
     height: 5px;
     width: 7px;
     opacity: 1;
   }
   100% {
     height: 11px;
     width: 7px;
     opacity: 1;
   }
 }
 
 @keyframes checkmark {
   0% {
     height: 0;
     width: 7px;
     opacity: 1;
   }
   20% {
     height: 2px;
     width: 7px;
     opacity: 1;
   }
   40% {
     height: 5px;
     width: 7px;
     opacity: 1;
   }
   100% {
     height: 11px;
     width: 7px;
     opacity: 1;
   }
 }






  
  
  input {
    font-size:16px;
  }


  
  html, body {
    width: 100%;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: flex;
    font-family: var(--font);
    /* min-height:725px; */
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    overflow:hidden;
    background-color: black;
    /* min-height:500px; */
  }
  
  html {	
    flex-direction: column;
    
  }
  
  .loader{
    margin: 0 0 2em;
    height: 20px;
    width: 50px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
  }
  
  /*
    Set the color of the icon
  */
  .loader svg path,
  .loader svg rect{
    fill: var(--primary);
  }
  
  .radio {
  
    min-width: 20px;
    min-height: 20px;
    background: white;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border:2px solid #ccc;
    display:inline-block;
    border: 2px solid #004c97;
  }
  
  #radio input{
    display:none;
  }
  
  body {
    flex-direction: column;
    /* overflow: hidden; */
    touch-action: none;
    /* background: linear-gradient(
  115.51deg, #3C0E6D 2.65%, #C62C85 61.29%, #F29565 85.58%); */
  background-color:white;
    background-image: var(--img-bg);
    background-size: cover;
    background-position: center;
    height: auto;
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Poppins;
    /* min-height: 725px; */
    align-content: center;
    /* justify-content: flex-start; */
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
      align-items: center;
      justify-content: center;
      align-content: center;
  }
  
  #status {
    position: relative;
    color: var(--txt-master);
    text-align: center;
    font-size: 11px;
    line-height: 1;
    width: 120px;
    font-family:poppinsBlk;
    /* top: 22px; */
    /* left: 8px; */
    /* text-shadow: 1px  1px 0px #555, 
  -1px -1px 0px #555, 
   1px -1px 0px #555, 
  -1px  1px 0px #555; */
  }
  
  #preview {
    background-color: transparent;
    width: 300px;
    height: 250px;
    position: absolute;
    z-index: 999999;
    cursor: auto;
    cursor: pointer;
    background-Image:var(--preview-img);
    border-radius:var(--preview-border-radius);
    /* border:var(--preview-border-stroke); */
  }
  
  #content {
    position: relative;
    /* margin-top:-70px; */
    /* margin: auto; */
    /* width: 100%; */
    max-width: 90vw;
    height: auto;
    /* max-height: 500px; */
    min-height:250px;
    min-width:300px;
    /* background-image: url(bg_img.jpg); */
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 1;
  }
  
  #content_back {
    position: relative;
    /* margin: auto; */
    width: 100%;
    max-width: 90vw;
    height: 100%;
    /* background-image: url(1_player_cover_front_OnlyYou.png); */
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 00px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 1;
    /* padding:20px; */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* color:white; */
    /* border-radius: var(--radius-lg); */
  }
  
  
  
  #info_cta {
    /* position: absolute; */
    /* top: 20px;
    right: 20px; */
  }
  
  #play_cont{
    display: flex;
      justify-content: space-between;
      flex-direction: row;
      align-content: center;
      align-items: center;
      min-width: 100px;
      margin-right: 7px;
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  #boxes_cont::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  #boxes_cont {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  #play-toggle, #download, #purchase, #glow-hover-play, #glow-hover-stop, #glow-hover-download {
    border: 0;
    position: relative;
    min-width: 45px;
    min-height: 38px;
    max-width: 45px;
    max-height: 50px;
    height: 50px;
    width: 50px;
    bottom: 0px;
    z-index: 2;
    /* top: 250px; */
    /* left: 387px; */
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    cursor: pointer;
    display: flex;
    /* margin-left: 10px; */
    /* margin-right: 10px; */
  }
  
  #purchase {
    background-color: yellow;
  }
  #slider_cont.hide {
    visibility: hidden !important;
    pointer-events: none;
    cursor: initial;

  }
  #slider_cont.play {
    display: initial;
  }
  
  #slider_cont.stop {
    /* display: none */
    opacity:0.2 !important;
  }
  
  .pointer-events-none {
    pointer-events: none;
  }

  #play-toggle.play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--btn-play);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  }
  
  #play-toggle.stop::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid var(--btn-stop);
    border-bottom: 8px solid var(--btn-stop);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    clip-path: polygon(0% 25%, 25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%);
  }
  
  /* #play-toggle.play::after {
    content: "";
    display: block;
    width: 4px;
    height: 12px;
    background-color: white;
    margin: 0 0 0 16px;
  }
  
  #play-toggle.stop::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: white;
    margin: 2px 0 0 10px;
    border-radius: 50%;
  } */

  
  
 #play-toggle.play {
    /* background-color: var(--btn-play);
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    background-image: var(--img-master-play); */

    width: 100px;
    height: 100px;
    border: none;
    clip-path: polygon(25% 25%, 69.09% 48.59%, 69.09% 48.59%, 25% 75%);

    position: relative;
    /* left: 10px;
    top: 5px; */
    cursor: pointer;
    display: block;
    background-color: #576B68;
    border-radius:20px;
  } 

#play-toggle.stop {
    /* background-color: var(--btn-stop);
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    background-image: var(--img-master-stop); */

    width: 100px;
    height: 100px;
    border: none;
    clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
    position: relative;
    /* left: 10px;
    top: 5px; */
    cursor: pointer;
    display: block;
    background-color: #6B5757;
    /* border-radius:20px; */
  } 
  
  #download {
    background-image: var(--img-download);
    background-color: var(--color-download);
    font-size: 0.5rem;
    display: block;
  }
  
  #purchase {
    background-image: var(--img-purchase);
    background-color: var(--color-purchase);
    font-size: 0.5rem;
    display: contents;
    margin-right: 10px;
    /* margin-right: 10px; */
    visibility: visible; 
    display: block;
      left: 0px;
    /* display:none; */
    /* background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; */
    /* background-image:url("download_img.svg") */
    /* width:auto; */
  }
  
  .preview {
    /* position: relative;
    height: 48px;
    width: 44px;
    cursor: pointer;
    border: 0;
    border-right: 1px solid var(--border); */
    /* background-color: var(--bg-btn-updown); */
    /* background-size: contain;
    background-position: 50% 50%;
    border-bottom-left-radius: var(--radius-sm);
    border-top-left-radius: var(--radius-sm); */
    /* margin-left:20px; */

        /* background-image: var(--img-box-stop);

  }
  
  .preview:hover{
    /* background-color: var(--btn-hover); */
  }
  
  .preview.play {
    display: block;
    width: 15px;
    height: 15px;
    padding:15px;
    /* border-top: 8px solid transparent;
    border-bottom: 8px solid transparent; */
    /* border-left: 12px solid var(--btn-play); */
    clip-path: polygon(25% 25%, 69.09% 48.59%, 69.09% 48.59%, 25% 75%);
    background-color: #576B68;
    cursor: pointer;
    padding: 22px;
    /* padding:5px; */
  }
  
  .preview.stop {
    display: block;
    width: 15px;
    height: 15px;
    padding:15px;
    /* border-top: 8px solid red;
    border-bottom: 8px solid red; */
    border-left: 12px solid var(--btn-play);
    clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
    background-color: #576B68;
    cursor: pointer;
    padding: 22px;
  }
  
  #totalDuration {
    margin: 0 10px;
    font-family: poppinsBlk;
  }
  
  .loopinteract {
    position: relative;
    height: 52px;
    width: 44px;
    /* border-left: 1px solid var(--border); */
    /* left:10px; */
  }
  
  
  #masterUp {
    top:5px;
    left:6px;
    border-top-right-radius:8px;
    background-image: var(--master--img-box-btn-up);
      }
    
      #masterDown {
    bottom:5px;
    left:6px;
    background-image: var(--master--img-box-btn-down);

      }
  
  
  .loopinteract button:is(.up, .down) {
    position: absolute;
    width: 43px;
    height: 24px;
    background-repeat: no-repeat;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -ms-backface-visibility: visible;
    cursor: pointer;
    border: none;
    /* background-color: var(--bg-btn-updown); */
  }
  .loopinteract button.up {
    top: 0;
    left: 0px;
    border-top-right-radius: var(--radius-sm);
    background-position: top;
    background-image: var(--img-box-btn-up);
    top:5px;
  }

  
  .loopinteract button.up:hover {
    /* background-color: var(--btn-hover); */
  }
  
  .loopinteract button.down:hover {
    /* background-color: var(--btn-hover); */
  }
  
  .loopinteract button.down {
    bottom: 5px;
    left: 0;
    border-bottom-right-radius: var(--radius-sm);
    background-position: bottom;
    background-image: var(--img-box-btn-down);
  }
  .loopinteract button.up{
    /* border-bottom: 0.5px solid var(--border); */
    background-color:var(--loop-up)
  }
  .loopinteract button.down{
    /* border-top: 0.5px solid var(--border); */
    background-color:var(--loop-down)
  }
  
  button.down {
    bottom: 0;
  }
  
  button.up {
    top: 5px;
  }
  
  .repeat-container {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    height: 48px;
    /* border-left: 1px solid var(--border); */
  }
  
  .repeat, .repeat-text{
    position: relative;
    width: 30px;
    /* top: 96px;
    left: 42px; */
    background-color: transparent;
    border: none;
    /* color: black; */
    /* padding: 16px 32px; */
    text-decoration: none;
    cursor: pointer;
    font-size:12px;
    text-align: center;
    font-family: Poppins;
    outline:none;
  }

  .master_repeat {
    font-family: poppinsBlk;
  }

  .repeat {
    font-size: 0.9rem;
  }
  
  .repeat-text {
    font-size: 0.5rem;
  }
  
  .previewProgress {
    width: 30px;
    max-width: 30px;
    margin-right: 5px;
    bottom: 0px;
    height: 1px;
  }
  
  /* background: */
  progress::-webkit-progress-bar {
    background-color: var(--txt-box); width: 100%;
  }
  progress {
    background-color:yellow;
  }
  
  /* value: */
  progress::-webkit-progress-value {background-color: var(--progress-color) !important;}
  progress::-moz-progress-bar {background-color: var(--progress-color) !important;}
  progress {color: var(--progress-color);}
  
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    
  }
  
  /* scroll */
  
  * {
    box-sizing: border-box;
    margin:0;
  }
  
  /* #wrapper_cont{
    height: 100%;
    width:100%;
    padding: 20px;
    background-image: var(--img-wrapper-bg-large);
    background-color: #CEC6B3;
    opacity: 1;
    visibility: inherit;
    background-size: contain;
    background-repeat:no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: top;
    width: 100vw;
    max-width: 440px;
    border:20px;
  } */
  
  p {
    color: var(--txt);
  }
  
  #wrapper, #wrapper_bg {
    position: absolute;
    /* pointer-events: auto; */
    cursor: pointer;
    /* border-radius: var(--radius-lg); */
    /* border-radius: 18px; */
    /* width: var(--card-init-width);
    height: var(--card-init-height); */
    /* width: 836px;
    height:1218px; */
    max-width: 836px;
    /* max-height:1218px; */
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: fit;
    font-family: Poppins;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.151);
    backdrop-filter: saturate(100%) blur(10px); */
    flex-direction: column;
    /* border: var(--card-border); */
    /* border: solid 0.5px white; */
  
  }

  #wrapper {
    /* background-color: rgba(247, 239, 230, 0.5); */
    /* border-radius: var(--card-border-radius); */
    min-width:326px;
    /* background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(2px); */
    border-radius: 300px;

    /* background-color: red; */
  }
  
  #wrapper_bg {
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  
  /*alert is in its own css*/
  
  #wrapper_bg2 {
    height: 100%;
    width: 100%;
    opacity: 1;
    visibility: inherit;
    /* background-color: red; */
    position: absolute;
    /* z-index: 9999; */
    border-radius: 30px;
  }
  
  #wrapper, #wrapper_back{
    min-height:var(--card-init-height);
    /* max-width:var(--card-init-width); */
    position:relative;
    /* background-color:red; */
    /* background-color:var(--bg-card); */
    /* box-shadow: var(--shadow); */
    transform-style: preserve-3d;	
    /* z-index:1000; */
    /* border-radius: var(--radius-lg);
    border: var(--card-border); */
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    /* max-height: 70vh;
    max-width: 90vw;
    min-height:250px;
    min-width:300px; */
    /* height:100%; */
    /* margin-top:20px; */
    width:100%;
    height:100%;
  }
  
  #wrapper_front {
    z-index: 99;
    /* min-height:var(--card-init-height); */
    /* max-width:var(--card-init-width); */
    position:relative;
    /* background-color:red; */
    /* background-color:var(--bg-card); */
    /* box-shadow: var(--shadow); */
    transform-style: preserve-3d;	
    /* z-index:1000; */
    /* border-radius: var(--radius-lg);
    border: var(--card-border); */
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    /* max-height: 70vh;
    max-width: 90vw;
    min-height:250px;
    min-width:300px; */
    /* height:100%; */
    /* margin-top:20px; */
    width:300px;
    /* max-width:80vw; */
    height:100%;
    /* max-height:250px; */
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #6B5757;
    position:absolute;
    /* margin:80% */
  }
  
  #glow-card{
    transform-style: preserve-3d;
  }
  
  #wrapper_back{
    border-radius: var(--card-border-radius);
    /* border-radius: var(--radius-lg); */
    /* background-color:red; */
  
    /* margin-top:500px; */
    position:absolute;
    /* backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden; */
    /* background: var(--img-card-bg);
    background-color:var(--bg-card-bk); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform-style: preserve-3d;	
    display: flex;
      transform: rotateY(
  -180deg);
      backface-visibility: hidden;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      align-content: center;
  }
  
  #wrapper {
    /* box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.35); */
    border-radius: var(--card-border-radius);
    /* background-color: red; */
    background-image: var(--img-card-front);
    background-size: cover;
    /* background-color: var(--wrapper-color-front);  */
    /* min-height:90vh; */
    /* max-width:80vw;
    max-height:80vh;   */
    
  }
  
  #wrapper_bg {
    /* background-image: var(--back-bg-image); */
    /* background-color:red; */
  }
  
  #content_back_img, #content_back_img_direx {
    position: absolute;
    /* border-radius: var(--radius-lg); */
    color: var(--txt);
    pointer-events:auto;
    /* top: 0; */
    /* width: var(--alert-width);
    height: var(--alert-height); */
    width: 100%;
    height: 100%;
    /* background-color:yellow; */
    /* background-color: var(--alert-bg-color); */
    background-image:  var( --back-bg-image);
    /* padding: 1rem; */
    /* margin: 1rem; */
    z-index: 6;
    /* box-shadow: var(--shadow); */
    /* max-width:300px;
    max-height:250px; */
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: flex;
    margin-left:auto;
    margin-right:auto;    
    /* background-color: red;  */
    
  }
  
  #content_back_img_direx {
    background-image: var(--img-direx-bg-large);
    /* background-color:yellow; */
    max-width:90%;
    max-height:90%;
    opacity: 1;
    visibility: inherit;
    background-size: contain;
    background-repeat:no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: contain;
    background-position: center;
  }
  
  
  .viewport {
    position: absolute;
    pointer-events: none;  
    width: 100%;
    bottom: 100px;
    left: 50%;
  }
  
  .num {
    position: relative;
    font-size: 11px; 
    line-height: 1;
    text-align:center;
    min-width:40px;
    /* top: 22px; */
    /* left: 8px;   */
    /* text-shadow: 
       1px  1px 0px #555, 
      -1px -1px 0px #555, 
       1px -1px 0px #555, 
      -1px  1px 0px #555; */
  }
  
  .box {
    position: absolute;
    display: flex;
    align-items: center;
    /* max-width: 289px; */
    /* height: 20px; */
    position: relative;
    margin: 0px;
    height: 15px;
    transform: translate(0px, 0px);
    border-radius: var(--radius-sm-samples);
    margin-bottom: 5px;
    background-color: var(--bg-box);
    border: 1px solid var(--border);
    width: 91%!important;
    margin-left: 48px;
    /* padding-left: 20px; */
    align-content: center;
    justify-content: space-between;
    border: 0px solid #576B68;
    /* min-width: 320px; */
  }
  
  .box.isactive {
    /* border: 1px solid var(--active-border); */
    border: 1px solid #576B68;
    border-radius: 10px;
    font-size:10px;
    width: 91%!important;
    text-align:center;
    color:#576B68;
    /* margin-left: */
    /* background-color:#576B68; */
    
  }
  
  .box.isnotactive {
    opacity: var(--notactive-opacity);
  }
  
  .boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color:red; */
    width: 100%;
    border: 0px solid #576B68;
    border-radius: 10px;
    font-size:10px;
    width: 91%!important;
    text-align:center;
    /* color:#576B68; */
    /* height: 100%; */
  }
  
  
  #slider_cont{
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    z-index: 99998;
    visibility: inherit;
    border-radius:70px;
    display:none;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  
  #cont_slider_boxes {
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    border: 1px solid;
    border-color: transparent;
    height:0px;
  }


  #slider_bg{
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: var(--bg-slider);
  }
  
  #slider{
    position: relative;
    left: calc(((var(--slider-size)/2) * -1) + 1px);
    width: var(--slider-size);
    height: var(--slider-size);
    border-radius: 100%;
    background-color: var(--slider);
    cursor: pointer;
    /* border: 0.9px solid white; */
  }
  
  #boxes_cont {
    overflow-y: auto;
    background-color: var(--boxes_cont_bg);
    padding:  var(--boxes_cont_padding);
    border-radius: var(--boxes_cont_border-radius);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    opacity: 1;
    visibility: inherit;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    width:320px;
    /* background-color:green; */
    
  }

  #box_cont.isactiveBoxCont {

    /* margin-left:0px; */
  }
  
  #cont_slider_boxes {
    max-height: var(--max_height_slider_boxes);
    /* height:100%; */
  }
 /* #slider_cont{
    height: 100%;
  } */

  #boxes_cont {
    height: 100%;
    /* width:100%; */
    min-height:100%;
    margin-top:0px;
    margin-left:0px;
  }

  #box_cont.isactiveBoxCont {
/* display:none;
    margin-left:50px; */
  }
  
  .labels {
    color: var(--txt);
  }
  
  #status, #purchase{
    color: var(--txt-master);
    /* font-family:PoppinsBlk: */
  }
  
  .previewDuration, .repeat, .repeat-text, .num, #trackRepeat,#totalDuration {
    color: var(--txt-box);
    font-size: 12px;
  }

  #trackRepeat{
    color:#576B68;

  }

  #totalDuration {
    color:#576B68;
  }
  
  #progress_total, #progress_current{
    color: var(--txt_progress_color);
  }
  
  
  #top_cont {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  #bottom_cont {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  #master_controls {
    /* padding-top: 25px; */
    /* padding-bottom: 25px; */
    /* padding-left: 10px; */
    /* padding-right: 13px; */
    display: flex;
    align-items: center;
    position: relative;
    width: 300px;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    margin-top: 10px;
    width: 100vw;
    height:53px;
    max-width: 300px;
    /* max-height: 20px; */
    border: 1px solid;
    border-color: #576B68;
    border-radius: var(--radius-sm);
    /* background-color: var(--bg-master); */
    /* border-top: solid 1px white;
    border-bottom: solid 1px white;    
    border-left: solid 1px white;
    border-right: solid 1px white; */
    /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.55); */

  
    /* opacity:0; */
  }
  
  #preset_cont {
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    margin-top:0px;
  
  }
  
  #presets {
    overflow: hidden;
    display: flex;
    left: 4px;
    align-items: center;
    justify-content: space-between;
    height: 29px;
    max-height: 29px;
    width: 300px;
    z-index: -1;
    position: relative;
    perspective: 0px;
    margin-bottom: 10px;
    backface-visibility: hidden;
    transform: translate3d(0px, 0px, 0px);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  
  #presets :is(#preset_img_1, #preset_img_2,#preset_img_3,#preset_img_4){
    flex: 1 auto;
    height: 28px;
    max-height: 28px;
    max-width:70px;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 6px;
    /* color:#576B68 */
  }
  
  #preset_img_1 {
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_1:hover {
  }
  #preset_img_1.active,
  #preset_img_1.active:hover {
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  #preset_img_2 {
    /* background-image: url("lrge_hover2.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_2:hover {
    /* background-image: url("lrge_active2.svg"); */
  }
  #preset_img_2.active,
  #preset_img_2.active:hover {
    /* background-image: url("lrge2.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  
  #preset_img_3 {
    /* background-color: var(--pre_3_col);
    background-image: url("lrge_hover3.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_3:hover {
    /* background-color: var(--pre_3_col_hover); */
    /* background-image: url("lrge_active3.svg"); */
  }
  #preset_img_3.active,
  #preset_img_3.active:hover {
    /* background-color: var(--pre_3_col_active); */
    /* background-image: url("lrge3.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  #preset_img_4 {
    /* background-color: var(--pre_4_col);
    background-image: url("lrge_hover4.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_4:hover {
    /* background-color: var(--pre_4_col_hover); */
    /* background-image: url("lrge_active4.svg"); */
  }
  #preset_img_4.active,
  #preset_img_4.active:hover {
    /* background-color: var(--pre_4_col_active); */
    /* background-image: url("lrge4.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  #pre, #pre2 {
    font-family: Poppins;
    color:var(--txt);
    font-size: 10px;
  }
  
  #pre2 {
    font-family: Poppins;
    color:var(--txt-pre2);
    font-size: 10px;
  }
  
  #progress_cont {
    margin-top: 10px;
    margin-bottom: 0px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: inherit;
    background-color:transparent;
    padding-top: 10px;
    padding-bottom: 10px;
    /* max-width: 284px; */
    /* border-radius: 10px; */
    /* border-bottom: solid 1px white;
    border-top: solid 1px white;
    border-left: solid 1px white;
    border-right: solid 1px white; */
    /* border-bottom: solid 0px white; */
    padding-left: 10px;
    padding-right: 10px;
  }
  
  #progress_cont progress {
    background-color: var(--txt-box);
    height: 1px;
    width: 200px;
    margin: 5px 5px;
  }
  
  #loop {
  width:30px;
  height:10px;
  margin-left:20px;
  background-image:url('1540764857.svg');
  background-position: center;
  background-repeat: no-repeat;
  /* margin-left:30px */
  
  }
  
  .buy-fly {
    width: 90px;
    top: 0;
    float: none;
  }
  
  .alb-only {
    background-color: #eee;
    color: #007BFE;
    font-size: 9pt;
    padding: 0 5px;
    line-height: 30px;
    border-radius: 3px;
    cursor: default;
  }
  
  .buy-cont {
    background-color: #121212;
    color: #ccc;
    font-family: 'Noto Sans',sans-serif;
    font-size: 9pt;
  }
  
  #avatar{
    width:100px;
    height:100px;
    border-radius:0px;
    /* background-color:red; */
    font-size:32px;
    background-image:url("Viva_Acid.png");
    font-color:white;
    width: 100px;
    height: 100px;
    border-radius: 0px;
    /* background-color: red; */
    font-size: 32px;
    background-image: url("Viva_Acid.png");
    font-color: white;
    background-size: contain;
    z-index:9;
  
  }
  
  #artist_name, #track_name {
    /* position:absolute; */
    letter-spacing: 0px;
  
    color: white;
        /* position: absolute; */
        letter-spacing: 0px;
        font-size: 34px;
        color: white;
        /* top: 15px; */
        /* margin-right: 17px; */
      /* top:15px; */
  
  
  }
  
  #artist_name{
    font-size:20px;
    /* top:15px; */
    position: relative;
    /* top: 16px; */
    font-size: 20px;
    /* top: 15px; */
    position: relative;
    /* top: 16px; */
    pointer-events: auto;
    cursor: pointer;
  }
  
  #header {
    
    display: flex;
    align-content: flex-start;
    align-items: top;
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
    /* min-width: 360px; */
    /* margin: 20px; */
    /* padding: 30px; */
    padding-bottom: 0px;
    margin-bottom: 0px;
    justify-content: space-around;
    /* background-image: url("header.svg");  */
    /* background-color: red; */
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    /* min-height: 80px; */
    padding-left: 0px;
    padding-right: 0px;
    background-size: fit;
    margin-left: auto;
    margin-right: auto;
    /* margin-top: -30px; */
    min-height: 64px;
    min-width: 287px;
    /* max-width: 628px; */
    background-size: contain;
    /* margin-top: 20px; */
    margin-bottom: 10px;
    max-width: 100%;
    background-image: url(header_mobile.png);
    height: 83px;
    /* min-height: 133px; */
    padding: 0;
    background-size: contain;
    margin-bottom: 0px;
    height:110px;
    width:100%;
  }
  
  #artist_cont {
  
  }
  
  #circle {
    /* background-color:black; */
    position:fixed;
    height:100vh;
    width:100vw;
    z-index: 1;
    /* background-image: url("ezgif-4-16827508f2 (1).gif"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    /* min-width: 1000px;
    min-height:1000px; */
    /* opacity:0.2; */
    pointer-events:none;
  
  }
  
  #stageBlock {
    background-color:black;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99999;
  
  }
  
  
  #stageBlock2 {
    background-color:#75FA4C;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99998;
  
  }
  
  #stageBlock3 {
    background-color:#EA3CF7;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99997;
  
  }
  
  #stageBlock4 {
    background-color: #F09135;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99996;
  
  }
  
  #stageBlock5 {
    background-color: #3482F7;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99995;
  
  }
  
  #stageBlock6 {
    background-color:#F8D247;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99994;
  
  }
  
  #bg_circle, #bg_circle2 {
    position:fixed;
    top:0;
    left:0;
    width: 200px; 
    height: 200px; 
    background-color: #00FF00;
    /* background-image: linear-gradient(315deg, #000000 0%, #1a1a1a 74%); */
    border-radius: 9999px;
    z-index: -1;
    opacity:0.4;
    }
    
    #bg_circle2 {
    width: 20px;
    height: 20px;
    background-color: #EA3CF7;
    border-radius: 9999px;
    opacity:1;
    position:absolute;
    }
  
    #footer {
      z-index: -1;
      color: white;
      /* width: 200px; */
      /* height: 40px; */
      border-radius: 100px;
      font-size: 12px;
      /* background-image: url("editTraxLogo.svg"); */
      background-size: contain;
      position: relative;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 30px;
      margin-top: 10px;
      margin-bottom: 0px;
      color: rgb(104, 104, 104);
      font-size: 9px;
      z-index: 1;
      font-family: PoppinsReg;
      -webkit-perspective: 0;
      -webkit-backface-visibility: hidden;
      -webkit-transform: translate3d(0,0,0);
    }
  
    #info{
      cursor:pointer;
  
    }
  
    #artist_name_cont {
      display: flex;
      align-content: center;
      align-items: center;
      justify-content: space-between;
      position:relative;
      top:11px;
    }
  
    .copy{
      width:100%;
      height:100%;
      background-color:yellow;
      position:relative;
    }
  
    #label_custom, #label_master{
      font-size:10px;
      margin-top:10px;
    }
  
  
  
  
    .marquee__part {
      flex-shrink: 0;
      padding: 0 4px;
      font-smooth: always;
      width:auto;
      /* font:PoppinsReg */
    }
    
    .marquee {
      max-width: 281px;
      /* background: #000000; */
      color: var(--txt-marquee);
      text-transform: uppercase;
      font-weight: 600;
      font-size: 15px;
      padding-top:0px;
      position: relative;
      overflow: hidden;
      bottom: 19px;
      font-family:digitalism;
      letter-spacing:3px;
    }
    
    .marquee__inner {
      -webkit-font-smoothing: antialiased;
        width: fit-content;
        display: flex;
        flex: auto;
        flex-direction: row;
    }
    
    .spacer {
      height: 150px;
    }
  
    #click_icon {
      width:25px;
      height:25px;
      position:absolute;
      top:240px;
      fill: white;
      pointer-events:none;
      }
  
  
  
      #close{
        position: absolute;
        width: 20px;
        height: 20px;
        animation-play-state: paused;
        background-size: cover;
        right: 18px;
        top: 12px;
        border: 0;
        background-image: url(Close.svg);
        cursor: pointer;
        background-color: transparent;
        background-position: center;
        background-repeat:no-repeat;
        z-index: 500;
    }
  
    #vivaLogo{
      background-image: var(--img-header-right);
      background-color: var(--bg-header-right);
      background-position: center;
      background-repeat:no-repeat;
      background-size: contain;
      width:117px;
      height:93px;
      position:absolute;
      /* left:250px;
      top:10px */
    }
  
    button:is(.close, #flipMe){
      position: absolute;
      margin: 20px;
      top: 0px;
      left: 0px;
      width: 50px;
      height: 50px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      border: none;
      background-color: transparent;
      
    }
  
    button:is(#flipMe_return){
      margin: 20px;
      position: absolute;
      margin-top:211px;
      top: 0px;
      left: 0px;
      width: 20px;
      height: 20px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      border: none;
      background-color: transparent;
  
    }
  
    button:is(#flipMe_return_direx){
      margin: 20px;
      position: absolute;

      /* top: 11px;
      left: -98px; */
      width: 50px;
      height:34px;
      top: 0px;
      right: 0px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      /* border: none; */
      /* background-color: transparent; */
      /* top: 9px;
      left: 298px; */
    }
  
    #flipMe  {
      /* background-image: url("info.svg"); */
      /* min-width:23px;
      min-height:23px;
      max-width:30px;
      max-height:30px; */
      display:"none";
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      width: 390px;
      height: 350px;
    } 
  
    #flipMe_return{
      background-image: url("continue.svg");
      min-width:172px;
      min-height:47px;
      max-width:172px;
      max-height:47px;
      margin-left:auto;
      margin-right:auto;
      z-index: 9999;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
    /* top: 309px !important;
    left: 190px  !important; */
    }
  
    #flipMe_return_direx{
      /* background-image: url("info.svg"); */
      min-width:92px;
      max-width:172px;
      max-height:47px;
      margin-left:auto;
      margin-right:auto;
      z-index: 9999;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      background-color:#CEC6B3;
      border: 1px solid #576B68;
      /* background-color:#576B68;
       */
      color:#576B68;
      border-radius:7px;
      font-size:10px;
      font-size: 12px;
      font-family:poppinsBlk
      /* min-width:23px;
      min-height:23px;
      max-width:30px;
      max-height:30px; */
      /* position: relative; */
      /* margin-left:auto;
      margin-right:auto; */
    /* top: 309px !important;
    left: 190px  !important; */
    }
  
    .flipMePointer{
      background-image: url("close.svg") !important;
      top:7px !important;
      left:7px !important;
      max-width:25px !important;
      max-height:25px !important;
      min-width:25px !important;
      min-height:25px !important;
    }
  
    #flipMeAlert{
      background-image: url("circle.svg");
      width:20px;
      height:20px;
    }
  
    #flipMe_return {
      opacity: 0;
    }
  
    #flipMe_return_direx {
      /* opacity: 0;
       */
      position: static;
    }
  
    #flipMe {
      position: relative;
      /* top: 34px;
      left: -134px; */
      width: 55px;
      height: 55px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      /* border: none; */
      background-color: transparent;
      
      /* pointer-events:none; */
  }
  
  
  @media screen and (min-width: 300px) and (max-width: 380px) {



    /* #footer {
      display: none;
    } */

    /* #progress_cont {
      display:none;

    } */

    /* #slider_cont {
      display:none;
    }

    .marquee {
      display:none;
    } */



    body {
      max-width:100vw;
      overflow:hidden;
      /* min-height:500px; */
    }

    #slider_cont{
      display: none;
    }

    #content {

      border-radius:200px;

    }

    #wrapper, #wrapper_back {
      border:0px !important;
    }

    .marquee {
      max-width:217px;
    }

   
    #info_cta {     
      display: flex;
      width: 300px;
      justify-content: center;
      align-items: center;
      align-content: center;
    }
    .info_cta {     
      width:300px;
    }

    #header{

      /* background-color: yellow;  */
      max-width:320px;

    }

    #vivaLogo{
      left:250px;
      width:90px;
      top:0px;
    }



  }

    @media screen and (min-height: 250px),
           screen and (max-height: 400px){

            #content_back_img_direx{
              /* background-image: var(--img-direx-bg-small);
              width:300px;
              height: 250px;
              min-height: 250px; */
              /* background-color:yellow; */
            }

            button:is(#flipMe_return_direx) {

              /* top:6vh; */

            }



            /* #footer {
              display: none;
            } */
        
            /* #progress_cont {
              display:none;
        
            } */



  
    }
  
    @media screen and (max-width: 90px),
           screen and (max-height: 800px){


  }
  
  
  
    @media screen and (max-height: 512px){


      #cont_slider_boxes {

        /* height:110px; */
      }

      #progress_cont {
        display:none;
  
      }

      .marquee {
        /* display:none; */
  
      }

      #preset_cont {

          /* margin-top:-26px; */
    
        
      }

      /* #wrapper {
        padding-top: 30px;
      }
   */


  #content_back_img_direx{
    /* background-image: var(--img-direx-bg-small);
    width:300px;
    height: 250px;
    min-height: 250px; */
    
    /* background-color:yellow; */
  }


      #slider_cont {
        /* display:none; */
      }



      #flipMe {
        /* top: 15px;
    left: 13px; */
      
      }

      #flipMe_return_direx {
    /* top: -9px;
    left: 22px; */
    }
      }
    
  
    @media screen and (max-height: 305px){
      #wrapper{
        /* background-color: transparent; */
        /* background-image:null; */
      }

      #wrapper {
        /* padding-top: 30px; */
      }

      #boxes_cont {
        display:none;
      }
  
    }
  
  
  
  
  
  
    
    
  
  
  
  
  p {
    color: var(--txt);
  }
  
  #wrapper, #wrapper_bg {
    position: absolute;
    /* pointer-events: auto; */
    cursor: pointer;
    /* border-radius: var(--radius-lg); */
    /* border-radius: 18px; */
    /* width: var(--card-init-width);
    height: var(--card-init-height); */
    /* width: 836px;
    height:1218px; */
    max-width: 836px;
    /* max-height:1218px; */
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: fit;
    font-family: Poppins;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.151);
    backdrop-filter: saturate(100%) blur(10px); */
    flex-direction: column;
    /* border: var(--card-border); */
    /* border: solid 0.5px white; */
  
  }

  #wrapper {
    /* background-color: rgba(247, 239, 230, 0.5); */
    /* border-radius: var(--card-border-radius); */
    min-width:326px;
    /* background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(2px); */
    border-radius: 300px;

    /* background-color: red; */
  }
  
  #wrapper_bg {
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  
  /*alert is in its own css*/
  
  #wrapper_bg2 {
    height: 100%;
    width: 100%;
    opacity: 1;
    visibility: inherit;
    /* background-color: red; */
    position: absolute;
    /* z-index: 9999; */
    border-radius: 30px;
  }
  
  #wrapper, #wrapper_back{
    min-height:var(--card-init-height);
    /* max-width:var(--card-init-width); */
    position:relative;
    /* background-color:red; */
    /* background-color:var(--bg-card); */
    /* box-shadow: var(--shadow); */
    transform-style: preserve-3d;	
    /* z-index:1000; */
    /* border-radius: var(--radius-lg);
    border: var(--card-border); */
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    /* max-height: 70vh;
    max-width: 90vw;
    min-height:250px;
    min-width:300px; */
    /* height:100%; */
    /* margin-top:20px; */
    width:100%;
    height:100%;
  }
  
  #wrapper_front {
    z-index: 99;
    /* min-height:var(--card-init-height); */
    /* max-width:var(--card-init-width); */
    position:relative;
    /* background-color:red; */
    /* background-color:var(--bg-card); */
    /* box-shadow: var(--shadow); */
    transform-style: preserve-3d;	
    /* z-index:1000; */
    /* border-radius: var(--radius-lg);
    border: var(--card-border); */
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    /* max-height: 70vh;
    max-width: 90vw;
    min-height:250px;
    min-width:300px; */
    /* height:100%; */
    /* margin-top:20px; */
    width:300px;
    /* max-width:80vw; */
    height:100%;
    /* max-height:250px; */
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #6B5757;
    position:absolute;
    /* margin:80% */
  }
  
  #glow-card{
    transform-style: preserve-3d;
  }
  
  #wrapper_back{
    border-radius: var(--card-border-radius);
    /* border-radius: var(--radius-lg); */
    /* background-color:red; */
  
    /* margin-top:500px; */
    position:absolute;
    /* backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden; */
    /* background: var(--img-card-bg);
    background-color:var(--bg-card-bk); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform-style: preserve-3d;	
    display: flex;
      transform: rotateY(
  -180deg);
      backface-visibility: hidden;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      align-content: center;
  }
  
  #wrapper {
    /* box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.35); */
    border-radius: var(--card-border-radius);
    /* background-color: red; */
    background-image: var(--img-card-front);
    background-size: cover;
    /* background-color: var(--wrapper-color-front);  */
    /* min-height:90vh; */
    /* max-width:80vw;
    max-height:80vh;   */
    
  }
  
  #wrapper_bg {
    /* background-image: var(--back-bg-image); */
    /* background-color:red; */
  }
  
  #content_back_img, #content_back_img_direx {
    position: absolute;
    /* border-radius: var(--radius-lg); */
    color: var(--txt);
    pointer-events:auto;
    /* top: 0; */
    /* width: var(--alert-width);
    height: var(--alert-height); */
    width: 100%;
    height: 100%;
    /* background-color:yellow; */
    /* background-color: var(--alert-bg-color); */
    background-image:  var( --back-bg-image);
    /* padding: 1rem; */
    /* margin: 1rem; */
    z-index: 6;
    /* box-shadow: var(--shadow); */
    /* max-width:300px;
    max-height:250px; */
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: flex;
    margin-left:auto;
    margin-right:auto;    
    /* background-color: red;  */
    
  }
  
  #content_back_img_direx {
    background-image: var(--img-direx-bg-large);
    /* background-color:yellow; */
    max-width:90%;
    max-height:90%;
    opacity: 1;
    visibility: inherit;
    background-size: contain;
    background-repeat:no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: contain;
    background-position: center;
  }
  
  
  .viewport {
    position: absolute;
    pointer-events: none;  
    width: 100%;
    bottom: 100px;
    left: 50%;
  }
  
  .num {
    position: relative;
    font-size: 11px; 
    line-height: 1;
    text-align:center;
    min-width:40px;
    /* top: 22px; */
    /* left: 8px;   */
    /* text-shadow: 
       1px  1px 0px #555, 
      -1px -1px 0px #555, 
       1px -1px 0px #555, 
      -1px  1px 0px #555; */
  }
  
  .box {
    position: absolute;
    display: flex;
    align-items: center;
    /* max-width: 289px; */
    /* height: 20px; */
    position: relative;
    margin: 0px;
    height: 15px;
    transform: translate(0px, 0px);
    border-radius: var(--radius-sm-samples);
    margin-bottom: 5px;
    background-color: var(--bg-box);
    border: 1px solid var(--border);
    width: 91%!important;
    margin-left: 48px;
    /* padding-left: 20px; */
    align-content: center;
    justify-content: space-between;
    border: 0px solid #576B68;
    /* min-width: 320px; */
  }
  
  .box.isactive {
    /* border: 1px solid var(--active-border); */
    border: 1px solid #576B68;
    border-radius: 10px;
    font-size:10px;
    width: 91%!important;
    text-align:center;
    color:#576B68;
    /* margin-left: */
    /* background-color:#576B68; */
    
  }
  
  .box.isnotactive {
    opacity: var(--notactive-opacity);
  }
  
  .boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color:red; */
    width: 100%;
    border: 0px solid #576B68;
    border-radius: 10px;
    font-size:10px;
    width: 91%!important;
    text-align:center;
    /* color:#576B68; */
    /* height: 100%; */
  }
  
  
  #slider_cont{
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    z-index: 99998;
    visibility: inherit;
    border-radius:70px;
    display:none;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  
  #cont_slider_boxes {
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    border: 1px solid;
    border-color: transparent;
    height:0px;
  }


  #slider_bg{
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: var(--bg-slider);
  }
  
  #slider{
    position: relative;
    left: calc(((var(--slider-size)/2) * -1) + 1px);
    width: var(--slider-size);
    height: var(--slider-size);
    border-radius: 100%;
    background-color: var(--slider);
    cursor: pointer;
    /* border: 0.9px solid white; */
  }
  
  #boxes_cont {
    overflow-y: auto;
    background-color: var(--boxes_cont_bg);
    padding:  var(--boxes_cont_padding);
    border-radius: var(--boxes_cont_border-radius);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    opacity: 1;
    visibility: inherit;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    width:320px;
    /* background-color:green; */
    
  }

  #box_cont.isactiveBoxCont {

    /* margin-left:0px; */
  }
  
  #cont_slider_boxes {
    max-height: var(--max_height_slider_boxes);

    /* height:100%; */
  }
 #slider_cont{
    height: 100%;
  }

  #boxes_cont {
    height: 100%;
    /* width:100%; */
    min-height:100%;
    margin-top:0px;
    margin-left:0px;
  }

  #box_cont.isactiveBoxCont {
display:none;
    /* margin-left:50px; */
  }
  
  .labels {
    color: var(--txt);
  }
  
  #status, #purchase{
    color: var(--txt-master);
    /* font-family:PoppinsBlk: */
  }
  
  .previewDuration, .repeat, .repeat-text, .num, #trackRepeat,#totalDuration {
    color: var(--txt-box);
    font-size: 12px;
  }

  #trackRepeat{
    color:#576B68;

  }

  #totalDuration {
    color:#576B68;
  }
  
  #progress_total, #progress_current{
    color: var(--txt_progress_color);
  }
  
  
  #top_cont {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  #bottom_cont {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  #master_controls, #master_controls_expand {
    /* padding-top: 25px; */
    /* padding-bottom: 25px; */
    /* padding-left: 10px; */
    /* padding-right: 13px; */
    display: flex;
    align-items: center;
    position: relative;
    width: 300px;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    margin-top: 10px;
    width: 100vw;
    height:53px;
    max-width: 300px;
    /* max-height: 20px; */
    border: 1px solid;
    border-color: #576B68;
    border-radius: var(--radius-sm);
    /* background-color: var(--bg-master); */
    /* border-top: solid 1px white;
    border-bottom: solid 1px white;    
    border-left: solid 1px white;
    border-right: solid 1px white; */
    /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.55); */

  
    /* opacity:0; */
  }
  

#master_controls_expand, #albumExpand {

  font-weight: bold;
  font-size: sm;
  pointer-events:auto;
  cursor: pointer;
  height:35px;
  padding-left:20px;
  padding-right:20px;
  margin-top:0px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid #776388  !important;;
  color:#576B68;
  /* background-color:#576B68; */
  color:#CBC1AE;
  font-size: 10px;
  width: 48%;
  text-align: center;
  background-color:#776388 !important;
  /* color:#576B68; */
  font-size: 11px;
    line-height: 1;
    /* width: 50px; */
    font-family: poppinsBlk;
    margin-left: 0px;
}

#master_controls_expand {
  background-color:#576B68;
  color:#e3d9cd;
  border: 1px solid #576B68;
  width:100%
}

#albumExpand {
  position: fixed;
  top: 0;
  background-color: #576B68;
  color: #CBC1AE;
  border: 1px solid #576B68;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 2;
  width:auto;
}

  #preset_cont {
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    margin-top:0px;
  
  }
  
  #presets {
    overflow: hidden;
    display: flex;
    left: 4px;
    align-items: center;
    justify-content: space-between;
    height: 29px;
    max-height: 29px;
    width: 300px;
    z-index: -1;
    position: relative;
    perspective: 0px;
    margin-bottom: 10px;
    backface-visibility: hidden;
    transform: translate3d(0px, 0px, 0px);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  
  #presets :is(#preset_img_1, #preset_img_2,#preset_img_3,#preset_img_4){
    flex: 1 auto;
    height: 28px;
    max-height: 28px;
    max-width:70px;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 6px;
    /* color:#576B68 */
  }
  
  #preset_img_1 {
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_1:hover {
  }
  #preset_img_1.active,
  #preset_img_1.active:hover {
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  #preset_img_2 {
    /* background-image: url("lrge_hover2.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_2:hover {
    /* background-image: url("lrge_active2.svg"); */
  }
  #preset_img_2.active,
  #preset_img_2.active:hover {
    /* background-image: url("lrge2.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  
  #preset_img_3 {
    /* background-color: var(--pre_3_col);
    background-image: url("lrge_hover3.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_3:hover {
    /* background-color: var(--pre_3_col_hover); */
    /* background-image: url("lrge_active3.svg"); */
  }
  #preset_img_3.active,
  #preset_img_3.active:hover {
    /* background-color: var(--pre_3_col_active); */
    /* background-image: url("lrge3.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  #preset_img_4 {
    /* background-color: var(--pre_4_col);
    background-image: url("lrge_hover4.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_4:hover {
    /* background-color: var(--pre_4_col_hover); */
    /* background-image: url("lrge_active4.svg"); */
  }
  #preset_img_4.active,
  #preset_img_4.active:hover {
    /* background-color: var(--pre_4_col_active); */
    /* background-image: url("lrge4.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  #pre, #pre2 {
    font-family: Poppins;
    color:var(--txt);
    font-size: 10px;
  }
  
  #pre2 {
    font-family: Poppins;
    color:var(--txt-pre2);
    font-size: 10px;
  }
  
  #progress_cont {
    margin-top: 10px;
    margin-bottom: 0px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: inherit;
    background-color:transparent;
    padding-top: 10px;
    padding-bottom: 10px;
    /* max-width: 284px; */
    /* border-radius: 10px; */
    /* border-bottom: solid 1px white;
    border-top: solid 1px white;
    border-left: solid 1px white;
    border-right: solid 1px white; */
    /* border-bottom: solid 0px white; */
    padding-left: 10px;
    padding-right: 10px;
  }
  
  #progress_cont progress {
    background-color: var(--txt-box);
    height: 1px;
    width: 200px;
    margin: 5px 5px;
  }
  
  #loop {
  width:30px;
  height:10px;
  margin-left:20px;
  background-image:url('1540764857.svg');
  background-position: center;
  background-repeat: no-repeat;
  /* margin-left:30px */
  
  }
  
  .buy-fly {
    width: 90px;
    top: 0;
    float: none;
  }
  
  .alb-only {
    background-color: #eee;
    color: #007BFE;
    font-size: 9pt;
    padding: 0 5px;
    line-height: 30px;
    border-radius: 3px;
    cursor: default;
  }
  
  .buy-cont {
    background-color: #121212;
    color: #ccc;
    font-family: 'Noto Sans',sans-serif;
    font-size: 9pt;
  }
  
  #avatar{
    width:100px;
    height:100px;
    border-radius:0px;
    /* background-color:red; */
    font-size:32px;
    background-image:url("Viva_Acid.png");
    font-color:white;
    width: 100px;
    height: 100px;
    border-radius: 0px;
    /* background-color: red; */
    font-size: 32px;
    background-image: url("Viva_Acid.png");
    font-color: white;
    background-size: contain;
    z-index:9;
  
  }
  
  #artist_name, #track_name {
    /* position:absolute; */
    letter-spacing: 0px;
  
    color: white;
        /* position: absolute; */
        letter-spacing: 0px;
        font-size: 34px;
        color: white;
        /* top: 15px; */
        /* margin-right: 17px; */
      /* top:15px; */
  
  
  }
  
  #artist_name{
    font-size:20px;
    /* top:15px; */
    position: relative;
    /* top: 16px; */
    font-size: 20px;
    /* top: 15px; */
    position: relative;
    /* top: 16px; */
    pointer-events: auto;
    cursor: pointer;
  }
  
  #header {
    
    display: flex;
    align-content: flex-start;
    align-items: top;
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
    /* min-width: 360px; */
    /* margin: 20px; */
    /* padding: 30px; */
    padding-bottom: 0px;
    margin-bottom: 0px;
    justify-content: space-around;
    /* background-image: url("header.svg");  */
    /* background-color: red; */
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    /* min-height: 80px; */
    padding-left: 0px;
    padding-right: 0px;
    background-size: fit;
    margin-left: auto;
    margin-right: auto;
    /* margin-top: -30px; */
    min-height: 64px;
    min-width: 287px;
    /* max-width: 628px; */
    background-size: contain;
    /* margin-top: 20px; */
    margin-bottom: 10px;
    max-width: 100%;
    background-image: url(header_mobile.png);
    height: 83px;
    /* min-height: 133px; */
    padding: 0;
    background-size: contain;
    margin-bottom: 0px;
    height:110px;
    width:100%;
  }
  
  #artist_cont {
  
  }
  
  #circle {
    /* background-color:black; */
    position:fixed;
    height:100vh;
    width:100vw;
    z-index: 1;
    /* background-image: url("ezgif-4-16827508f2 (1).gif"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    /* min-width: 1000px;
    min-height:1000px; */
    /* opacity:0.2; */
    pointer-events:none;
  
  }
  
  #stageBlock {
    background-color:black;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99999;
  
  }
  
  
  #stageBlock2 {
    background-color:#75FA4C;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99998;
  
  }
  
  #stageBlock3 {
    background-color:#EA3CF7;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99997;
  
  }
  
  #stageBlock4 {
    background-color: #F09135;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99996;
  
  }
  
  #stageBlock5 {
    background-color: #3482F7;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99995;
  
  }
  
  #stageBlock6 {
    background-color:#F8D247;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99994;
  
  }
  
  #bg_circle, #bg_circle2 {
    position:fixed;
    top:0;
    left:0;
    width: 200px; 
    height: 200px; 
    background-color: #00FF00;
    /* background-image: linear-gradient(315deg, #000000 0%, #1a1a1a 74%); */
    border-radius: 9999px;
    z-index: -1;
    opacity:0.4;
    }
    
    #bg_circle2 {
    width: 20px;
    height: 20px;
    background-color: #EA3CF7;
    border-radius: 9999px;
    opacity:1;
    position:absolute;
    }
  
    #footer {
      z-index: -1;
      color: white;
      /* width: 200px; */
      /* height: 40px; */
      border-radius: 100px;
      font-size: 12px;
      /* background-image: url("editTraxLogo.svg"); */
      background-size: contain;
      position: relative;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 30px;
      margin-top: 10px;
      margin-bottom: 0px;
      color: rgb(104, 104, 104);
      font-size: 9px;
      z-index: 1;
      font-family: PoppinsReg;
      -webkit-perspective: 0;
      -webkit-backface-visibility: hidden;
      -webkit-transform: translate3d(0,0,0);
    }
  
    #info{
      cursor:pointer;
  
    }
  
    #artist_name_cont {
      display: flex;
      align-content: center;
      align-items: center;
      justify-content: space-between;
      position:relative;
      top:11px;
    }
  
    .copy{
      width:100%;
      height:100%;
      background-color:yellow;
      position:relative;
    }
  
    #label_custom, #label_master{
      font-size:10px;
      margin-top:10px;
    }
  
  
  
  
    .marquee__part {
      flex-shrink: 0;
      padding: 0 4px;
      font-smooth: always;
      width:auto;
      /* font:PoppinsReg */
    }
    
    .marquee {
      max-width: 281px;
      /* background: #000000; */
      color: var(--txt-marquee);
      text-transform: uppercase;
      font-weight: 600;
      font-size: 15px;
      padding-top:0px;
      position: relative;
      overflow: hidden;
      bottom: 19px;
      font-family:digitalism;
      letter-spacing:3px;
    }
    
    .marquee__inner {
      -webkit-font-smoothing: antialiased;
        width: fit-content;
        display: flex;
        flex: auto;
        flex-direction: row;
    }
    
    .spacer {
      height: 150px;
    }
  
    #click_icon {
      width:25px;
      height:25px;
      position:absolute;
      top:240px;
      fill: white;
      pointer-events:none;
      }
  
  
  
      #close{
        position: absolute;
        width: 20px;
        height: 20px;
        animation-play-state: paused;
        background-size: cover;
        right: 18px;
        top: 12px;
        border: 0;
        background-image: url(Close.svg);
        cursor: pointer;
        background-color: transparent;
        background-position: center;
        background-repeat:no-repeat;
        z-index: 500;
    }
  
    #vivaLogo{
      background-image: var(--img-header-right);
      background-color: var(--bg-header-right);
      background-position: center;
      background-repeat:no-repeat;
      background-size: contain;
      width:117px;
      height:93px;
      position:absolute;
      /* left:250px;
      top:10px */
    }
/*   
    button:is(.close, #flipMe){
      position: absolute;
      margin: 20px;
      top: 0px;
      left: 0px;
      width: 50px;
      height: 50px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      border: none;
      background-color: transparent;
      
    }
  
    button:is(#flipMe_return){
      margin: 20px;
      position: absolute;
      margin-top:211px;
      top: 0px;
      left: 0px;
      width: 20px;
      height: 20px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      border: none;
      background-color: transparent;
  
    } */
  
    button:is(#flipMe_return_direx){
      margin: 20px;
      position: absolute;

      /* top: 11px;
      left: -98px; */
      width: 50px;
      height:34px;
      top: 0px;
      right: 0px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      /* border: none; */
      /* background-color: transparent; */
      /* top: 9px;
      left: 298px; */
    }
  
    #flipMe  {
      /* background-image: url("info.svg"); */
      /* min-width:23px;
      min-height:23px;
      max-width:30px;
      max-height:30px; */
      display:"none";
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      width: 390px;
      height: 350px;
    } 
  
    #flipMe_return{
      background-image: url("continue.svg");
      min-width:172px;
      min-height:47px;
      max-width:172px;
      max-height:47px;
      margin-left:auto;
      margin-right:auto;
      z-index: 9999;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
    /* top: 309px !important;
    left: 190px  !important; */
    }
  
    #flipMe_return_direx{
      /* background-image: url("info.svg"); */
      min-width:92px;
      max-width:172px;
      max-height:47px;
      margin-left:auto;
      margin-right:auto;
      z-index: 9999;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      background-color:#CEC6B3;
      border: 1px solid #576B68;
      /* background-color:#576B68;
       */
      color:#576B68;
      border-radius:7px;
      font-size:10px;
      font-size: 12px;
      font-family:poppinsBlk
      /* min-width:23px;
      min-height:23px;
      max-width:30px;
      max-height:30px; */
      /* position: relative; */
      /* margin-left:auto;
      margin-right:auto; */
    /* top: 309px !important;
    left: 190px  !important; */
    }
  
    .flipMePointer{
      background-image: url("close.svg") !important;
      top:7px !important;
      left:7px !important;
      max-width:25px !important;
      max-height:25px !important;
      min-width:25px !important;
      min-height:25px !important;
    }
  
    #flipMeAlert{
      background-image: url("circle.svg");
      width:20px;
      height:20px;
    }
  
    #flipMe_return {
      opacity: 0;
    }
  
    #flipMe_return_direx {
      /* opacity: 0; */
      /* position: static; */
    }
  
    #flipMe {
      position: relative;
      /* top: 34px;
      left: -134px; */
      width: 55px;
      height: 55px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      /* border: none; */
      background-color: transparent;
      
      /* pointer-events:none; */
  }

  #secondaryControls {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    width:88%;
  
    /* border-radius: var(--radius-sm); */
  }
  
  
  @media screen and (min-width: 300px) and (max-width: 380px) {



    /* #footer {
      display: none;
    } */

    /* #progress_cont {
      display:none;

    } */

    /* #slider_cont {
      display:none;
    }

    .marquee {
      display:none;
    } */



    body {
      max-width:100vw;
      overflow:hidden;
      /* min-height:500px; */
    }

    #slider_cont{
      display: none;
    }

    #content {

      border-radius:200px;

    }

    #wrapper, #wrapper_back {
      border:0px !important;
    }

    .marquee {
      max-width:217px;
    }

   
    #info_cta {     
      display: flex;
      width: 300px;
      justify-content: center;
      align-items: center;
      align-content: center;
    }
    .info_cta {     
      width:300px;
    }

    #header{

      /* background-color: yellow;  */
      max-width:320px;

    }

    #vivaLogo{
      left:250px;
      width:90px;
      top:0px;
    }



  }

    @media screen and (min-height: 250px),
           screen and (max-height: 400px){

            #content_back_img_direx{
              /* background-image: var(--img-direx-bg-small);
              width:300px;
              height: 250px;
              min-height: 250px; */
              /* background-color:yellow; */
            }

            button:is(#flipMe_return_direx) {

              /* top:6vh; */

            }



            /* #footer {
              display: none;
            } */
        
            /* #progress_cont {
              display:none;
        
            } */



  
    }
  
    @media screen and (max-width: 90px),
           screen and (max-height: 800px){


  }
  
  
  
    @media screen and (max-height: 512px){


      #cont_slider_boxes {

        /* height:110px; */
      }

      #progress_cont {
        display:none;
  
      }

      .marquee {
        /* display:none; */
  
      }

      #preset_cont {

          /* margin-top:-26px; */
    
        
      }

      /* #wrapper {
        padding-top: 30px;
      }
   */


  #content_back_img_direx{
    /* background-image: var(--img-direx-bg-small);
    width:300px;
    height: 250px;
    min-height: 250px; */
    
    /* background-color:yellow; */
  }


      #slider_cont {
        /* display:none; */
      }



      #flipMe {
        /* top: 15px;
    left: 13px; */
      
      }

      #flipMe_return_direx {
    /* top: -9px;
    left: 22px; */
    }
      }
    
  
    @media screen and (max-height: 305px){
      #wrapper{
        /* background-color: transparent; */
        /* background-image:null; */
      }

      #wrapper {
        /* padding-top: 30px; */
      }

      #boxes_cont {
        display:none;
      }
  
    }
  
  
  
  
  
  
    
    
  
  
  
  p {
    color: var(--txt);
  }
  
  #wrapper, #wrapper_bg {
    position: absolute;
    /* pointer-events: auto; */
    cursor: pointer;
    /* border-radius: var(--radius-lg); */
    /* border-radius: 18px; */
    /* width: var(--card-init-width);
    height: var(--card-init-height); */
    /* width: 836px;
    height:1218px; */
    max-width: 836px;
    /* max-height:1218px; */
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: fit;
    font-family: Poppins;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.151);
    backdrop-filter: saturate(100%) blur(10px); */
    flex-direction: column;
    /* border: var(--card-border); */
    /* border: solid 0.5px white; */
  
  }

  #wrapper {
    /* background-color: rgba(247, 239, 230, 0.5); */
    /* border-radius: var(--card-border-radius); */
    min-width:326px;
    /* background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(2px); */
    border-radius: 300px;

    /* background-color: red; */
  }
  
  #wrapper_bg {
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  
  /*alert is in its own css*/
  
  #wrapper_bg2 {
    height: 100%;
    width: 100%;
    opacity: 1;
    visibility: inherit;
    /* background-color: red; */
    position: absolute;
    /* z-index: 9999; */
    border-radius: 30px;
  }
  
  #wrapper, #wrapper_back{
    min-height:var(--card-init-height);
    /* max-width:var(--card-init-width); */
    position:relative;
    /* background-color:red; */
    /* background-color:var(--bg-card); */
    /* box-shadow: var(--shadow); */
    transform-style: preserve-3d;	
    /* z-index:1000; */
    /* border-radius: var(--radius-lg);
    border: var(--card-border); */
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    /* max-height: 70vh;
    max-width: 90vw;
    min-height:250px;
    min-width:300px; */
    /* height:100%; */
    /* margin-top:20px; */
    width:100%;
    height:100%;
  }
  
  #wrapper_front {
    z-index: 99;
    /* min-height:var(--card-init-height); */
    /* max-width:var(--card-init-width); */
    position:relative;
    /* background-color:red; */
    /* background-color:var(--bg-card); */
    /* box-shadow: var(--shadow); */
    transform-style: preserve-3d;	
    /* z-index:1000; */
    /* border-radius: var(--radius-lg);
    border: var(--card-border); */
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    /* max-height: 70vh;
    max-width: 90vw;
    min-height:250px;
    min-width:300px; */
    /* height:100%; */
    /* margin-top:20px; */
    width:300px;
    /* max-width:80vw; */
    height:100%;
    /* max-height:250px; */
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #6B5757;
    position:absolute;
    /* margin:80% */
  }
  
  #glow-card{
    transform-style: preserve-3d;
  }
  
  #wrapper_back{
    border-radius: var(--card-border-radius);
    /* border-radius: var(--radius-lg); */
    /* background-color:red; */
  
    /* margin-top:500px; */
    position:absolute;
    /* backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden; */
    /* background: var(--img-card-bg);
    background-color:var(--bg-card-bk); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform-style: preserve-3d;	
    display: flex;
      transform: rotateY(
  -180deg);
      backface-visibility: hidden;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      align-content: center;
  }
  
  #wrapper {
    /* box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.35); */
    border-radius: var(--card-border-radius);
    /* background-color: red; */
    background-image: var(--img-card-front);
    background-size: cover;
    /* background-color: var(--wrapper-color-front);  */
    /* min-height:90vh; */
    /* max-width:80vw;
    max-height:80vh;   */
    
  }
  
  #wrapper_bg {
    /* background-image: var(--back-bg-image); */
    /* background-color:red; */
  }
  
  #content_back_img, #content_back_img_direx {
    position: absolute;
    /* border-radius: var(--radius-lg); */
    color: var(--txt);
    pointer-events:auto;
    /* top: 0; */
    /* width: var(--alert-width);
    height: var(--alert-height); */
    width: 100%;
    height: 100%;
    /* background-color:yellow; */
    /* background-color: var(--alert-bg-color); */
    background-image:  var( --back-bg-image);
    /* padding: 1rem; */
    /* margin: 1rem; */
    z-index: 6;
    /* box-shadow: var(--shadow); */
    /* max-width:300px;
    max-height:250px; */
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: flex;
    margin-left:auto;
    margin-right:auto;    
    /* background-color: red;  */
    
  }
  
  #content_back_img_direx {
    background-image: var(--img-direx-bg-large);
    /* background-color:yellow; */
    max-width:90%;
    max-height:90%;
    opacity: 1;
    visibility: inherit;
    background-size: contain;
    background-repeat:no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: contain;
    background-position: center;
  }
  
  
  .viewport {
    position: absolute;
    pointer-events: none;  
    width: 100%;
    bottom: 100px;
    left: 50%;
  }
  
  .num {
    position: relative;
    font-size: 11px; 
    line-height: 1;
    text-align:center;
    min-width:40px;
    /* top: 22px; */
    /* left: 8px;   */
    /* text-shadow: 
       1px  1px 0px #555, 
      -1px -1px 0px #555, 
       1px -1px 0px #555, 
      -1px  1px 0px #555; */
  }
  
  .box {
    position: absolute;
    display: flex;
    align-items: center;
    /* max-width: 289px; */
    /* height: 20px; */
    position: relative;
    margin: 0px;
    height: 15px;
    transform: translate(0px, 0px);
    border-radius: var(--radius-sm-samples);
    margin-bottom: 5px;
    background-color: var(--bg-box);
    border: 1px solid var(--border);
    width: 100%!important;
    /* margin-left: 48px; */
    /* padding-left: 20px; */
    align-content: center;
    justify-content: space-between;
    border: 0px solid #576B68;
    width: 300px !important;
  }
  
  .box.isactive {
    /* border: 1px solid var(--active-border); */
    border: 1px solid #576B68;
    border-radius: 10px;
    text-align:center;
    color:#576B68;
    width: 300px !important;
    
    /* margin-left: */
    /* background-color:#576B68; */
    
  }
  
  .box.isnotactive {
    opacity: var(--notactive-opacity);
  }
  
  .boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color:red; */
    width: 100%;
    border: 0px solid #576B68;
    border-radius: 10px;
    font-size:10px;
    width: auto!important;
    text-align:center;
    /* color:#576B68; */
    /* height: 100%; */
  }
  
  
  #slider_cont{
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    z-index: 99998;
    visibility: inherit;
    border-radius:70px;
    /* display:none; */
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  
  #cont_slider_boxes {
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    border: 1px solid;
    border-color: transparent;
    height:0px;
  }


  #slider_bg{
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: var(--bg-slider);
  }
  
  #slider{
    position: relative;
    left: calc(((var(--slider-size)/2) * -1) + 1px);
    width: var(--slider-size);
    height: var(--slider-size);
    border-radius: 100%;
    background-color: var(--slider);
    cursor: pointer;
    /* border: 0.9px solid white; */
  }
  
  #boxes_cont {
    overflow-y: auto;
    background-color: var(--boxes_cont_bg);
    padding:  var(--boxes_cont_padding);
    border-radius: var(--boxes_cont_border-radius);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    opacity: 1;
    visibility: inherit;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    width:auto !important;
    /* background-color:green; */
    
  }

  #box_cont.isactiveBoxCont {

    /* margin-left:0px; */
  }
  
  #cont_slider_boxes {
    max-height: var(--max_height_slider_boxes);

  }


 #slider_cont{
    /* height: 100%; */
  }

  #boxes_cont {
    height: 100%;
    /* width:100%; */
    min-height:100%;
    margin-top:0px;
    margin-left:0px;
  }

  #box_cont.isactiveBoxCont {
display:none;
    /* margin-left:50px; */
  }
  
  .labels {
    color: var(--txt);
  }
  
  #status, #purchase{
    color: var(--txt-master);
    /* font-family:PoppinsBlk: */
    text-align:left;
    width: 98px;
  }
  
  .previewDuration, .repeat, .repeat-text, .num, #trackRepeat,#totalDuration {
    color: var(--txt-box);
    font-size: 12px;
  }

  #trackRepeat{
    color:#576B68;

  }

  #totalDuration {
    color:#576B68;
  }
  
  #progress_total, #progress_current{
    /* color: var(--txt_progress_color); */
    width: 47px;
    font-family: poppinsBlk;
    color:#776388;
    font-size:13px;
    text-align:right;
  }
  
  
  #top_cont {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  #bottom_cont {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
  }
  #master_controls {
    /* padding-top: 25px; */
    /* padding-bottom: 25px; */
    /* padding-left: 10px; */
    /* padding-right: 13px; */
    display: flex;
    align-items: center;
    position: relative;
    width: 300px;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    margin-top: 10px;
    width: 100vw;
    height:53px;
    max-width: 300px;
    /* max-height: 20px; */
    border: 1px solid;
    border-color: #576B68;
    border-radius: var(--radius-sm);
    /* background-color: var(--bg-master); */
    /* border-top: solid 1px white;
    border-bottom: solid 1px white;    
    border-left: solid 1px white;
    border-right: solid 1px white; */
    /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.55); */

  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  /* opacity:0; */
  }
  
  #preset_cont {
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    margin-top:0px;
  
  }
  
  #presets {
    overflow: hidden;
    display: flex;
    left: 0px;
    align-items: center;
    justify-content: space-evenly;
    height: 29px;
    max-height: 29px;
    width: 297px;
    z-index: -1;
    position: relative;
    perspective: 0px;
    margin-bottom: 10px;
    backface-visibility: hidden;
    transform: translate3d(0px, 0px, 0px);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    font-weight:900;
    font-family: poppins;
  }
  
  #presets :is(#preset_img_1, #preset_img_2,#preset_img_3,#preset_img_4){
    flex: 1 auto;
    height: 28px;
    max-height: 28px;
    max-width:70px;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 6px;
    font-weight: 900;
    /* color:#576B68 */
  }
  
  #preset_img_1 {
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_1:hover {
  }
  #preset_img_1.active,
  #preset_img_1.active:hover {
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  #preset_img_2 {
    /* background-image: url("lrge_hover2.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_2:hover {
    /* background-image: url("lrge_active2.svg"); */
  }
  #preset_img_2.active,
  #preset_img_2.active:hover {
    /* background-image: url("lrge2.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  
  #preset_img_3 {
    /* background-color: var(--pre_3_col);
    background-image: url("lrge_hover3.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_3:hover {
    /* background-color: var(--pre_3_col_hover); */
    /* background-image: url("lrge_active3.svg"); */
  }
  #preset_img_3.active,
  #preset_img_3.active:hover {
    /* background-color: var(--pre_3_col_active); */
    /* background-image: url("lrge3.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  #preset_img_4 {
    /* background-color: var(--pre_4_col);
    background-image: url("lrge_hover4.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#CBC1AE;
    background-color:#576B68;
  }
  
  #preset_img_4:hover {
    /* background-color: var(--pre_4_col_hover); */
    /* background-image: url("lrge_active4.svg"); */
  }
  #preset_img_4.active,
  #preset_img_4.active:hover {
    /* background-color: var(--pre_4_col_active); */
    /* background-image: url("lrge4.svg"); */
    border: 1px solid #576B68;
    border-radius: 5px;
    font-size:10px;
    width:100%;
    text-align:center;
    color:#576B68;
    background-color:transparent;
  }
  
  #pre, #pre2 {
    font-family: Poppins;
    color:var(--txt);
    font-size: 10px;
  }
  
  #pre2 {
    font-family: Poppins;
    color:var(--txt-pre2);
    font-size: 10px;
  }
  
  #progress_cont {
    margin-top: -3px;
    margin-bottom: 0px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: inherit;
    background-color:#e1dbcd;
    padding-top: 10px;
    padding-bottom: 10px;
    /* max-width: 284px; */
    /* border-radius: 10px; */
    /* border-bottom: solid 1px white;
    border-top: solid 1px white;
    border-left: solid 1px white;
    border-right: solid 1px white; */
    /* border-bottom: solid 0px white; */
    padding-left: 10px;
    padding-right: 10px;
  }
  
  #progress_cont progress {
    background-color: var(--txt-box);
    height: 2px;
    width: 291px;
    margin: 5px 5px;
    border-radius:3;
    margin-left:8px;
  }
  
  #loop {
  width:30px;
  height:10px;
  margin-left:20px;
  background-image:url('1540764857.svg');
  background-position: center;
  background-repeat: no-repeat;
  /* margin-left:30px */
  
  }
  
  .buy-fly {
    width: 90px;
    top: 0;
    float: none;
  }
  
  .alb-only {
    background-color: #eee;
    color: #007BFE;
    font-size: 9pt;
    padding: 0 5px;
    line-height: 30px;
    border-radius: 3px;
    cursor: default;
  }
  
  .buy-cont {
    background-color: #121212;
    color: #ccc;
    font-family: 'Noto Sans',sans-serif;
    font-size: 9pt;
  }
  
  #avatar{
    width:100px;
    height:100px;
    border-radius:0px;
    /* background-color:red; */
    font-size:32px;
    background-image:url("Viva_Acid.png");
    font-color:white;
    width: 100px;
    height: 100px;
    border-radius: 0px;
    /* background-color: red; */
    font-size: 32px;
    background-image: url("Viva_Acid.png");
    font-color: white;
    background-size: contain;
    z-index:9;
  
  }
  
  #artist_name, #track_name {
    /* position:absolute; */
    letter-spacing: 0px;
  
    color: white;
        /* position: absolute; */
        letter-spacing: 0px;
        font-size: 34px;
        color: white;
        /* top: 15px; */
        /* margin-right: 17px; */
      /* top:15px; */
  
  
  }
  
  #artist_name{
    font-size:20px;
    /* top:15px; */
    position: relative;
    /* top: 16px; */
    font-size: 20px;
    /* top: 15px; */
    position: relative;
    /* top: 16px; */
    pointer-events: auto;
    cursor: pointer;
  }
  
  #header {
    
    display: flex;
    align-content: flex-start;
    align-items: top;
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
    /* min-width: 360px; */
    /* margin: 20px; */
    /* padding: 30px; */
    padding-bottom: 0px;
    margin-bottom: 0px;
    justify-content: space-around;
    /* background-image: url("header.svg");  */
    /* background-color: red; */
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    /* min-height: 80px; */
    padding-left: 0px;
    padding-right: 0px;
    background-size: fit;
    margin-left: 20px;
    margin-right: auto;
    /* margin-top: -30px; */
    min-height: 64px;
    min-width: 287px;
    /* max-width: 628px; */
    background-size: contain;
    /* margin-top: 20px; */
    margin-bottom: 10px;
    max-width: 100%;
    background-image: url(header_mobile.svg);
    height: 83px;
    /* min-height: 133px; */
    padding: 0;
    background-size: contain;
    margin-bottom: 0px;
    height:110px;
    width:90%;
  }
  
  #artist_cont {
  
  }
  
  #circle {
    /* background-color:black; */
    position:fixed;
    height:100vh;
    width:100vw;
    z-index: 1;
    /* background-image: url("ezgif-4-16827508f2 (1).gif"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    /* min-width: 1000px;
    min-height:1000px; */
    /* opacity:0.2; */
    pointer-events:none;
  
  }
  
  #stageBlock {
    background-color:black;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99999;
  
  }
  
  
  #stageBlock2 {
    background-color:#75FA4C;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99998;
  
  }
  
  #stageBlock3 {
    background-color:#EA3CF7;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99997;
  
  }
  
  #stageBlock4 {
    background-color: #F09135;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99996;
  
  }
  
  #stageBlock5 {
    background-color: #3482F7;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99995;
  
  }
  
  #stageBlock6 {
    background-color:#F8D247;
    position:absolute;
    height:100vh;
    width:100vw;
    z-index: 99994;
  
  }
  
  #bg_circle, #bg_circle2 {
    position:fixed;
    top:0;
    left:0;
    width: 200px; 
    height: 200px; 
    background-color: #00FF00;
    /* background-image: linear-gradient(315deg, #000000 0%, #1a1a1a 74%); */
    border-radius: 9999px;
    z-index: -1;
    opacity:0.4;
    }
    
    #bg_circle2 {
    width: 20px;
    height: 20px;
    background-color: #EA3CF7;
    border-radius: 9999px;
    opacity:1;
    position:absolute;
    }
  
    #footer {
      z-index: -1;
      color: white;
      /* width: 200px; */
      /* height: 40px; */
      border-radius: 100px;
      font-size: 12px;
      /* background-image: url("editTraxLogo.svg"); */
      background-size: contain;
      position: relative;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 30px;
      margin-top: 10px;
      margin-bottom: 0px;
      color: rgb(104, 104, 104);
      font-size: 9px;
      z-index: 1;
      font-family: PoppinsReg;
      -webkit-perspective: 0;
      -webkit-backface-visibility: hidden;
      -webkit-transform: translate3d(0,0,0);
    }
  
    #info{
      cursor:pointer;
  
    }
  
    #artist_name_cont {
      display: flex;
      align-content: center;
      align-items: center;
      justify-content: space-between;
      position:relative;
      top:11px;
    }
  
    .copy{
      width:100%;
      height:100%;
      background-color:yellow;
      position:relative;
    }
  
    #label_custom, #label_master{
      font-size:10px;
      margin-top:10px;
    }
  
  
  
  
    .marquee__part {
      flex-shrink: 0;
      padding: 0 4px;
      font-smooth: always;
      width:auto;
      /* font:PoppinsReg */
    }
    
    .marquee {
      max-width: 281px;
      /* background: #000000; */
      color: var(--txt-marquee);
      text-transform: uppercase;
      font-weight: 600;
      font-size: 15px;
      padding-top:0px;
      position: relative;
      overflow: hidden;
      bottom: 19px;
      font-family:digitalism;
      letter-spacing:3px;
    }
    
    .marquee__inner {
      -webkit-font-smoothing: antialiased;
        width: fit-content;
        display: flex;
        flex: auto;
        flex-direction: row;
    }
    
    .spacer {
      height: 150px;
    }
  
    #click_icon {
      width:25px;
      height:25px;
      position:absolute;
      top:240px;
      fill: white;
      pointer-events:none;
      }
  
  
  
      #close{
        position: absolute;
        width: 20px;
        height: 20px;
        animation-play-state: paused;
        background-size: cover;
        right: 18px;
        top: 12px;
        border: 0;
        background-image: url(Close.svg);
        cursor: pointer;
        background-color: transparent;
        background-position: center;
        background-repeat:no-repeat;
        z-index: 500;
    }
  
    #vivaLogo{
      background-image: var(--img-header-right);
      background-color: var(--bg-header-right);
      background-position: center;
      background-repeat:no-repeat;
      background-size: contain;
      width:117px;
      height:93px;
      position:absolute;
      /* left:250px;
      top:10px */
    }
  
    button:is(.close, #flipMe){
      position: absolute;
      margin: 20px;
      top: 0px;
      left: 0px;
      width: 50px;
      height: 50px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      border: none;
      background-color: transparent;
      
    }
  
    button:is(#flipMe_return){
      margin: 20px;
      position: absolute;
      margin-top:211px;
      top: 0px;
      left: 0px;
      width: 20px;
      height: 20px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      border: none;
      background-color: transparent;
  
    }
  
    button:is(#flipMe_return_direx_NO){
      margin: 20px;
      position: absolute;

      /* top: 11px;
      left: -98px; */
      width: 50px;
      height:34px;
      top: 0px;
      right: 0px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      /* border: none; */
      /* background-color: transparent; */
      /* top: 9px;
      left: 298px; */
    }
  
    #flipMe  {
      /* background-image: url("info.svg"); */
      /* min-width:23px;
      min-height:23px;
      max-width:30px;
      max-height:30px; */
      display:"none";
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      width: 390px;
      height: 350px;
    } 
  
    #flipMe_return{
      background-image: url("continue.svg");
      min-width:172px;
      min-height:47px;
      max-width:172px;
      max-height:47px;
      margin-left:auto;
      margin-right:auto;
      z-index: 9999;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
    /* top: 309px !important;
    left: 190px  !important; */
    }
  
    #flipMe_return_direx_NO{
      /* background-image: url("info.svg"); */
      min-width:92px;
      max-width:172px;
      max-height:47px;
      margin-left:auto;
      margin-right:auto;
      z-index: 9999;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      background-color:#CEC6B3;
      border: 1px solid #576B68;
      /* background-color:#576B68;
       */
      color:#576B68;
      border-radius:7px;
      font-size:10px;
      font-size: 12px;
      font-family:poppinsBlk
      /* min-width:23px;
      min-height:23px;
      max-width:30px;
      max-height:30px; */
      /* position: relative; */
      /* margin-left:auto;
      margin-right:auto; */
    /* top: 309px !important;
    left: 190px  !important; */
    }
  
    .flipMePointer{
      background-image: url("close.svg") !important;
      top:7px !important;
      left:7px !important;
      max-width:25px !important;
      max-height:25px !important;
      min-width:25px !important;
      min-height:25px !important;
    }
  
    #flipMeAlert{
      background-image: url("circle.svg");
      width:20px;
      height:20px;
    }
  
    #flipMe_return {
      opacity: 0;
    }
  
    #flipMe_return_direx_NO {
      opacity: 0;
      position: static;
    }
  
    #flipMe {
      position: relative;
      /* top: 34px;
      left: -134px; */
      width: 400px;
      height: 500px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 999999;
      pointer-events: auto;
      backface-visibility: visible;
      -webkit-backface-visibility: visible;
      -moz-backface-visibility: visible;
      -ms-backface-visibility: visible;
      pointer-events: auto;
      cursor: pointer;
      /* border: none; */
      background-color: transparent;

      /* //SEE INLINE CODE */
      
      /* pointer-events:none; */
  }
  
  
  @media screen and (min-width: 300px) and (max-width: 380px) {



    /* #footer {
      display: none;
    } */

    /* #progress_cont {
      display:none;

    } */

    /* #slider_cont {
      display:none;
    }

    .marquee {
      display:none;
    } */



    body {
      max-width:100vw;
      overflow:hidden;
      /* min-height:500px; */
    }

    #slider_cont{
      /* display: none; */
    }

    #content {

      border-radius:200px;

    }

    #wrapper, #wrapper_back {
      border:0px !important;
    }

    .marquee {
      max-width:217px;
    }

   
    #info_cta {     
      display: flex;
      width: 300px;
      justify-content: center;
      align-items: center;
      align-content: center;
    }
    .info_cta {     
      width:300px;
    }

    #header{

      /* background-color: yellow;  */
      max-width:320px;

    }

    #vivaLogo{
      left:250px;
      width:90px;
      top:0px;
    }



  }

    @media screen and (min-height: 250px),
           screen and (max-height: 400px){

            #content_back_img_direx{
              /* background-image: var(--img-direx-bg-small);
              width:300px;
              height: 250px;
              min-height: 250px; */
              /* background-color:yellow; */
            }

            button:is(#flipMe_return_direx) {

              /* top:6vh; */

            }



            /* #footer {
              display: none;
            } */
        
            /* #progress_cont {
              display:none;
        
            } */



  
    }
  
    @media screen and (max-width: 90px),
           screen and (max-height: 800px){


  }
  
  
  
    @media screen and (max-height: 512px){


      #cont_slider_boxes {

        /* height:110px; */
      }

      #progress_cont {
        display:none;
  
      }

      .marquee {
        /* display:none; */
  
      }

      #preset_cont {

          /* margin-top:-26px; */
    
        
      }

      #master_controls_expand {

        /* display:none; */
  

        
      }

      #master_controls_expand {
        display:none;
      }
  
      #albumExpand {
        display:none;
      }

    }

      /* #wrapper {
        padding-top: 30px;
      }
   */


  #content_back_img_direx{
    /* background-image: var(--img-direx-bg-small);
    width:300px;
    height: 250px;
    min-height: 250px; */
    
    /* background-color:yellow; */
  }


      #slider_cont {
        /* display:none; */
      }



      #flipMe {
        /* top: 15px;
    left: 13px; */
      
      }

      #flipMe_return_direx {
    /* top: -9px;
    left: 22px; */
    }

    #master_controls_expand {

      /* display:none; */


      
    }




    
  
    @media screen and (max-height: 305px){
      #wrapper{
        /* background-color: transparent; */
        /* background-image:null; */
      }

      #wrapper {
        /* padding-top: 30px; */
      }

      #boxes_cont {
        display:none;
      }

      #master_controls_expand {

        display:none;

      }

      #slider_cont {

        /* display:none;  */
      }

      #wrapper_cont {
          width:100vw;
          height:100vh;
          border:0px;
          max-width: 90vw;
          max-height: 90vh;
          border-radius:0px;
      }
      
      #master_controls_expand {
        display:none;
      }

      #albumExpand {
        display:none;
      }
  

      
    }
  
  
  
  






  
  
    
    
  
  






