body {
  overflow: hidden;
  min-height: 800px;
  background-color: #0D2273;
}

body.sidebar-blur::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter:blur(10px);
  background: rgba(0, 0, 0, 0.3);
  /* petit assombrissement */
  z-index: 9997;
  pointer-events: auto;
}

main {
  overflow: hidden;
}

#intro-screen.with-bg {
  background: url('intro-bg.jpg') center/cover no-repeat;
}

#intro-screen {
  background-color: #000;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

#intro-screen.fade-out {
  opacity: 0;
  transition: opacity .8s .2s ease-in-out;
  pointer-events: none;
}

#intro-screen.hidden-fade {
  display: none;
}

#intro-screen.hidden-fade {
  display: none;
}

.fade-out {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hidden-fade {
  visibility: hidden;
}

.intro-content {
  text-align: center;
}

.intro-content p {
  font-size: 1.4vw;
  line-height: 1.5vw;
  font-family: 'Martell', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .2vw;
  margin-bottom: 1vw;
}

.intro-content h1 {
  font-size: 5.4vw;
  line-height: 6vw;
  letter-spacing: .4vw;
}

@media screen and (max-width: 768px) {
  .intro-content h1 {
    font-size: 12vw;
    line-height: 16vw;
  }

  .intro-content p {
    font-size: 4vw;
    line-height: 4vw;
    font-family: 'Martell', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .6vw;
    margin-bottom: 1vw;
  }
}

#video-container {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  /* en dessous de l’intro */
  pointer-events: none;
}

#video-container.visible {
  opacity: 1;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#intro-text {
  font-family: 'Martell', sans-serif;
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3vw;
  line-height: 2vw;
  font-weight: 500;
  text-align: center;
  letter-spacing: .1vw;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

@media screen and (max-width: 768px) {
  #intro-text {
    font-size: 1rem;
    line-height: 1.5rem;
    width: 80%;
    top: 30%;
}
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: url('image.jpg') center/cover no-repeat;
  z-index: -1;
  pointer-events: none;
}

/* Ajout ou modification des styles */

#main-content.hiddenBis {
  opacity: 0;
  pointer-events: none;
  display: none !important;
}

#main-content {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100dvh;
  transition: opacity 1s ease;
  padding: 0 5vw;
  width: 100%;
  top: 0;
  /* adaptatif si besoin */

}

@media screen and (max-width: 768px) {
  #main-content {
    overflow: hidden;
  }
}

.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: -1;
  overflow: hidden;
}

#fixed-bg {
  position: absolute;
  top: 0;
  height: 100dvh;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
  object-position: 50% 70%;
}

@media screen and (max-width: 768px) {
  #fixed-bg {
    transform: translateY(-2vh);

    position: absolute;
    top: 6vh;
    object-position: 50% 50%;
  }
}


.glide__arrows {
  position: fixed;
  top: 50%;
  width: 97%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  left: 24px;
  right: 24px;
}

.glide__arrow {
  cursor: pointer;
  transition: all .4s ease-in-out;
}

.glide__arrow:hover {
  transform: scale(.95);
  opacity: .7;
}


@media screen and (max-width: 768px) {
  .glide__arrows {
    width: 94%;
    left: 3%;
    right: 10%;
  }
}

.glide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 10px;
  height: 34px;
  width: 34px;
}

.glide__arrow--left {
  transform: rotate(180deg);
}

.hiddenBis {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  /* Ajoute ça pour éviter les flash */
  transition: opacity 0.3s ease;
}

#reset-filters {
  background: linear-gradient(190.32deg, rgba(255, 255, 255, 0) -8.34%, rgba(133, 158, 215, 0.3) 5.22%, rgba(12, 62, 176, 0.6) 76.41%);
  font-family: 'Martell', sans-serif;
  font-size: 10px;
  line-height: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  color: #fff;
  padding: 10px;
  font-weight: 500;
  width: 120px;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

html[lang="fr-fr"] #reset-filters {
  width: 150px;
}

#reset-filters:hover {
  background: white;
  background: linear-gradient(190.32deg, rgb(255 255 255) -8.34%, rgb(185 185 185) 76.41%);
  color: var(--dark-blue);
}

.glide {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 32vh;
}



@media screen and (max-width: 768px) {
  .glide {
    bottom: 22vh;
  }
}

.glide__slides {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0px 0px 0px 0px;
  overflow: visible;
}

.glide__slide {
  flex: 0 0 auto;
  width: auto;
  padding: 0px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.glide__slide:hover .cocktail img {
  transform: scale(1.05);
  transform-origin: bottom center;
}

.glide__slide.hidden {
  opacity: 0;
  /*transform: scale(0.8);*/
  pointer-events: none;
}

.glide__track {
  overflow: visible;
  min-width: 100%;
}

.glide__slide--active .cocktail img {
  transform: scale(1.05);
  transform-origin: bottom center;
  z-index: 2;
}

.glide__slide--active .title-hover {
  opacity: 1;

}

.title-hover {
  opacity: 0;
}

.glide__slide:not(.glide__slide--active) .title-hover {
  opacity: 0;
}

.cocktail {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cocktail img {
  width: 90%;
  display: block;
  transition: all .4s ease-in-out;
  transform-origin: bottom center;
  /* max-width: 300px;*/

    height: 100%;
    aspect-ratio: 528/700;
    object-fit: cover;

}

@media screen and (max-width: 768px) {
  .cocktail img {
    width: 65%;
  }
}

.title-hover {
  position: absolute;
  font-family: 'Martell', sans-serif;
  font-size: 1.2vw;
  line-height: 1.6vw;
  font-weight: 500;
  letter-spacing: 2px;
  bottom: -6vh;
  transform: translateY(50%);
  text-align: center;
  color: white;
  opacity: 0;
  width: 12vw;
  transition: opacity .4s ease-in-out;
}

@media screen and (max-width: 768px) {
  .title-hover {
    font-size: 1.2rem;
    line-height: 1.5rem;
    bottom: -30px;
    width: 300px;
  }
}

/* .cocktail:hover .title-hover {
    opacity: 1;
  } */

.filters-wrapper {
  position: absolute;
  z-index: 50000;
  left: 50%;
  bottom: -20px;
  width: 1200px;
  transform: translateX(-50%);
}

  .filters-toggle {
    display: none;
    font-weight: 500;
    font-size: 16px;
    background: #001545;
    color: white;
    border: 1px solid #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: 'Martell', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter:blur(15px);
    box-shadow: 0px 3px 6px 0px #00000012;
  }




.filters.filters-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
}

@media screen and (max-width: 768px) {
  .filters-wrapper .filters-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter:blur(40px);
    border: 1px solid white;
    border-radius: 0;
  }

  .icon-filter {
    margin-left: 10px;
    min-height: 10px;
  }

  .filter-close,
  .filter-open {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filter-close {
    position: absolute;
  }

  .filter-close.off,
  .filter-open.off {
    opacity: 0;
  }

  .filters-wrapper .filters-panel {
    display: block;
    opacity: 0;
    width: 100%;
    pointer-events: none;
    transition: all .4s ease-in-out;
    transform: translate(-50%, 20px);
  }

  .filters-wrapper .filters-panel.active {
    display: block;
    width: 100%;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter:blur(40px);
    border: 1px solid white;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0px);
  }

  .filters-wrapper {
    bottom: calc(25px + env(safe-area-inset-bottom));
    /* Adjust for iOS safe area */
    width: 90%;
  }

  #reset-filters {
    width: 100%;
  }

  .filters {
    flex-direction: column;
    bottom: 40px;
    width: 90%;
    left: 5%;
    transform: none;
  }

  .filter-option {
    border-radius: 0 !important;
  }
}

.filter-group {
  /* position: relative; */
  z-index: 1;
}

.filter-toggle {
  width: 130px;
  height: 37px;
  padding: 12px 10px 15px 10px;
  background: linear-gradient(190.32deg, rgb(70 57 135 / 87%) -8.34%, rgb(24 46 96 / 83%) 5.22%, rgb(3 23 70 / 98%) 76.41%);
  color: #fff;
  font-family: 'Martell', sans-serif;
  font-size: 10px;
  line-height: 1rem;
  letter-spacing: 2px;
  font-weight: 500;
  border: none;
  border-right: 1px solid #9aa1b37c;
  cursor: pointer;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  transition: all .4s ease-in-out;

  background: var(--Linear, linear-gradient(190deg, rgba(255, 255, 255, 0.10) -8.34%, rgba(0, 0, 0, 0.10) 76.41%));
}

.filter-option:hover,
.filter-toggle:hover {
  background: linear-gradient(190.32deg, rgb(70 57 135 / 87%) -8.34%, rgb(24 46 96 / 83%) 5.22%, rgb(3 23 70 / 98%) 76.41%);
  background: linear-gradient(190.32deg, rgba(255, 255, 255, 0) -8.34%, rgba(133, 158, 215, 0.3) 5.22%, rgb(0 0 0 / 60%) 76.41%);
}

.filter-option:hover {
  transform: scale(.95);
}


.filter-toggle .count {
  float: right;
  margin-left: auto;
}

.filter-options {

  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 100%;
  border-radius: 8px;
  z-index: 10;

  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: all .4s ease-in-out;
}

.filter-group.active .filter-options {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;

  opacity: 1;
  pointer-events: all;
}

.icon-arrow {
  display: none;
}


@media screen and (max-width: 768px) {

  .icon-arrow {
    display: block;
    transition: all .4s ease-in-out;
  }

  .filter-group.active .icon-arrow {
    transform: rotate(90deg)
  }

  #reset-filters,
  .filter-toggle {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid white;
    padding: 12px 20px;
  }

  #reset-filters {
    background: linear-gradient(190.32deg, rgba(255, 255, 255, 0) -8.34%, rgba(133, 158, 215, 0.3) 5.22%, rgb(0 0 0 / 60%) 76.41%);
  }

  .filter-toggle .count {
    float: none;
    margin-left: 5px;
  }

  .sidebar-inner img {
    margin-bottom: 20px !important;
  }


}


@media screen and (max-width: 768px) {
  .filter-options {
    background: linear-gradient(190.32deg, rgb(70 57 135 / 87%) -8.34%, rgb(24 46 96 / 83%) 5.22%, rgb(3 23 70 / 98%) 76.41%);
  }

  .filter-group.active .filter-options {
    position: relative;
    /*
    border: 1px solid #fff;
    display: inline-grid;
    */
  }
}

.filter-option {
  padding: 12px 24px;
  background: linear-gradient(190.32deg, rgb(255 255 255 / 18%) -8.34%, rgb(0 0 0) 76.41%);
  color: #fff;
  font-family: 'Martell', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.filter-option.selected {
  background: linear-gradient(190.32deg, rgb(255 255 255) -8.34%, rgb(185 185 185) 76.41%);
  color: #000;
}


#glide-slides-wrapper {
  transition: opacity 0.4s ease;
  opacity: 1;
}

#glide-slides-wrapper.fade-out {
  opacity: 0;
}

#glide-slides-wrapper.fade-in {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .title-hover {
    opacity: 1;
  }

}

/* .cocktail:hover img {
    transform: scale(1.05);
  } */
#sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 550px;
  height: 100%;
  background-color: #fff;
  z-index: 9998;
  transform: translateX(100%);
  transition: transform .4s ease-in-out;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  #sidebar {
    width: 100%;
  }
}

#sidebar.active {
  transform: translateX(0);
}

#sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter:blur(10px);
  z-index: 9997;
  /* Juste en dessous de la sidebar */
  opacity: 0;
  pointer-events: none;
  transition: all .4s ease-in-out;
  cursor: pointer;
}

#sidebar-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.filter-option.disabled {
  cursor: not-allowed;
}

.sidebar-inner {
  overflow-y: auto;
}

.sidebar-inner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
}

.sidebar-inner h3 {
  font-family: 'Martell', sans-serif;
  font-size: 3vw;
  line-height: 3vw;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding: 20px 48px;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .sidebar-inner h3 {
    font-size: 2rem;
    line-height: 2.5rem;
    padding: 0px 24px;
  }
}

.sidebar-inner #sidebar-terms {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-family: 'Martell', sans-serif;
  font-weight: 500;
  padding: 0px 48px;
}

@media screen and (max-width: 768px) {
  .sidebar-inner #sidebar-terms {
    padding: 0px 25px;
  }
}

.sidebar-inner #sidebar-terms span {
  display: inline-block;
  font-family: 'Martell', sans-serif;
  font-size: 10px;
  border: 1px solid #001545;
  border-radius: 38px;
  border: 1px solid #001545;
  padding: 6px 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all .3s ease-in-out;
}

.sidebar-inner #sidebar-terms span:hover {
  background-color: #001545;
  color: #fff;
  transition: all .3s ease-in-out;
}

.sidebar-actions {
  padding: 30px 48px;
}

@media screen and (max-width: 768px) {
  .sidebar-actions {
    padding: 30px 25px;
  }
}

.sidebar-actions a {
  color: #001545;
  font-family: 'Martell', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  margin-right: 15px;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .sidebar-actions a {
    margin-bottom: 15px;
  }
}

.sidebar-actions .button-blue {
  background: #001545;
  color: #fff;
  margin-right: 15px;

}

.sidebar-actions .button-blue:hover {
  background: #fff;
  color: #001545;
  border: 1px solid #001545;
}

.close-btn {
  cursor: pointer;
  font-size: 1.2rem;
  color: #001545;
  padding: 20px 48px;
}


.img-cocktail-content {
  /*height: 300px;*/
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.slider-heading {
  position: absolute;
  left: 50%;
  top: 18vh;
  transform: translateX(-50%) !important;
  text-align: center;
  margin-bottom: 20px;
  transition: opacity .4s ease-in-out;
  opacity: 1;
  width: 100%;
  display: none;
}

.slider-heading h2 {
  margin-bottom: 1.4vw;
  font-size: 3vw;
  line-height: 3vw;
  letter-spacing: .2vw;
  font-family: 'Martell', sans-serif;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .slider-heading {
    top: 12vh;
    width: 90%;
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .slider-heading h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .slider-heading br {
    display: none;
  }

}

.slider-heading p {
  font-size: 1vw;
  line-height: 1.4vw;
  color: #fff;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsletter-section,
footer {
  display: none;
}


.slider-heading.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

#global-loader {
  position: fixed;
  z-index: 9999;
  background: #fff;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

#global-loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #3F4CCA;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#no-results {
  display: none;
  text-align: center;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  position: fixed;
  top: 150px;
  background: #ffff;
  z-index: 555555;
  left: 50%;
  transform: translateX(-50%);
  color: #070A1D;

}


.slide-appear {
  transform: translateX(100%);
  opacity: 0;
  transition: all .4s ease-out;
}

.slide-disappear {
  transform: translateX(-100%);
  opacity: 0;
  transition: all .4s ease-in;
}


.filter-btn-left {
  display: flex;
  justify-content: center;
  align-items: center;

}

.filter-btn-left {
  display: flex;
  justify-content: center;
  align-items: center;

}


@media screen and (max-width: 768px) {

  .filter-btn-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }


  .close-btn {
    padding: 20px 25px;
  }

  .slider-heading h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .slider-heading p {
    font-size: .7rem;
    line-height: 1rem;
    color: #fff;
    width: 80%;
  }
}



/* ------ playlist ------- */


.playlist {
  position: fixed;
  top: 17vh;
  left: 1vw;
  width: 14vw;
  height: 3vw;
  background: rgb(255 255 255 / 20%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter:blur(40px);
  border-radius: 10vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity .4s ease-in-out;
}

.playlist-top {
  display: flex;
  align-items: center;
}

.playlist-title {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: .85vw;
}

.playlist-title-content {
  text-transform: uppercase;
  white-space: nowrap;
  color: white;
  font-size: .6vw;
  line-height: 1vw;
  font-weight: 600;
  transform: translateY(-.04vw);
}

.playlist-title-content-wrapper {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  top: 0;
  animation: playlist-title 15s infinite linear;
}


@keyframes playlist-title {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.playlist-controls {
  display: flex;
  padding-left: .4vw;
}

.playlist-bottom,
.playlist-top {
  width: 80%;
  margin-top: .1vw;
}

.playlist-bottom {
  height: .7vw;
  display: flex;
  align-items: center;
  position: relative;
}

.playlist-line {
  background: rgba(255, 255, 255, 0.25);
  height: 1px;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}

.playlist-progress {
  width: 0%;
  height: 100%;
  background: white;
}

.playlist-round {
  background: white;
  width: .4vw;
  height: .4vw;
  border-radius: 1vw;
  position: absolute;
}

.playlist-control {
  width: 1vw;
  margin: 0 0 0 .1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .4s ease-in-out;
}

.playlist-control:hover {
  opacity: .7;
  transform: scale(.9);
}

.playlist-control img {
  height: .8vw;
  transition: all .4s ease-in-out;
}

.off {
  opacity: 0;
}

.icon-pause {
  position: absolute;
}


@media screen and (max-width: 768px) {

  .playlist {
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 70vw;
    height: 15vw;
    border-radius: 10vw;

  }

  .playlist-control {
    width: 5vw;
    margin: 0 0 0 1vw;
  }

  .playlist-control img {
    height: 4vw;
  }

  .playlist-title-content {
    font-size: 3vw;
    line-height: 3vw;
    transform: translateY(0.6vw);
  }

  .playlist-title {
    height: 4vw;
  }

  .playlist-bottom {
    height: 3vw;
  }

  .playlist-round {
    width: 2vw;
    height: 2vw;
  }

  .playlist-line {
    height: 2px;
  }

  .playlist-controls {
    padding-left: 2vw;
  }

  .playlist-bottom,
  .playlist-top {
    margin-top: .7vw;
    margin-bottom: .3vw;
  }

  .mobile-off{
   /* opacity: 0;
    pointer-events: none;
*/
  }

  html,body{
    position: fixed;
    touch-action: pan-x;
  }

  body{
    height: 100dvh;
    width: 100%;
    overflow: hidden;
  }
}