@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif !important;
}

a {
  color: black;
  text-decoration: none;
}

/** Demandes **/
.dem {
  min-height: 100vh;
  width: 100vw;
  background: radial-gradient(circle at top, #1E1B4B 0%, #0F172A 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #F1F5F9;
  overflow: hidden;
}
.dem::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 1px, transparent, 1px);
  background-size: 40px 40px;
  animation: move 40s linear infinite;
  z-index: 0;
}
.dem__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 35px;
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
  animation: fadeIn 0.8s ease-out;
}
.dem__ttl {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.dem__help {
  text-align: center;
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.dem__inpgrp {
  position: relative;
  margin-bottom: 20px;
}
.dem__inp {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #334155;
  background: #0F172A;
  color: white;
  outline: none;
  transition: 0.3s;
}
.dem__inp:focus {
  border-color: #8B5CF6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}
.dem__btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #8B5CF6, #06B6D4);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.dem__btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

@keyframes move {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-200px, -200px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@font-face {
  font-family: "Brizel";
  src: url("../Brizel-riK_OZ-.ttf") format("TrueType");
}
/** Admin **/
.adm {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow-y: auto;
  overflow-x: hidden;
  background: #15202b;
  /** Gauche **/
}
.adm__left {
  width: 10vw;
  height: 100%;
  background: #006c97;
}
.adm__ttl {
  color: white;
  font-size: 1.4vw;
  line-height: 1.6vw;
  font-weight: 500;
  margin-bottom: 1.4vw;
}
.adm__nav {
  width: 100%;
  height: 100%;
  padding: 3vw 1vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1vw;
}
.adm__btnplyr {
  background: #03445e;
  color: white;
  border-radius: 10px;
  transition: 0.5s;
  font-size: 1vw;
  line-height: 1.2vw;
  padding: 0.6vw 1.2vw;
  margin: 0 auto;
}
.adm__btnplyr:hover {
  cursor: pointer;
  background: #2594c0;
}
.adm__link {
  font-size: 1vw;
  line-height: 1.2vw;
  font-weight: 500;
  color: white;
  transition: 0.5s;
}
.adm__link:hover {
  cursor: pointer;
  color: #03445e;
}
.adm {
  /** Milieu **/
}
.adm__mid {
  width: 75vw;
}
.adm__hdr {
  width: 100%;
  height: 8vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1vw 2vw;
  background: #0976a1;
  gap: 1vw;
  border-bottom: 3px solid #006c97;
}
.adm__hdr__ttl {
  color: white;
  font-size: 1.6vw;
  line-height: 1.8vw;
  font-weight: 500;
}
.adm__hdr__btn {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 2vw;
  height: 2vw;
  font-size: 1vw;
  line-height: 1.2vw;
  background: white;
  color: #006c97;
  transition: 0.5s;
  border: none;
}
.adm__hdr__btn:hover {
  color: white;
  background: #006c97;
}
.adm__hdr__btn--red {
  background: red;
  color: white;
}
.adm__hdr__btn--import {
  margin-left: auto;
  margin-right: 0;
  align-self: flex-end;
}
.adm__ctnr {
  width: 90%;
  height: 95vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding-top: 3vw;
}
.adm__searchbar {
  position: relative;
  border-radius: 20px;
  background: white;
  border: 3px solid #03445e;
  height: 2vw;
  width: 30vw;
  color: #03445e;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1vw;
  line-height: 1.2vw;
  margin-bottom: 3vw;
}
.adm__searchbar svg {
  padding-left: 1vw;
}
.adm__searchinp {
  background: none;
  color: none;
  font-size: 1vw;
  line-height: 1.2vw;
  padding: 0;
  border: none;
  color: #03445e;
  padding-left: 1vw;
}
.adm__karalist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.adm__karattl {
  font-size: 1.8vw;
  line-height: 2vw;
  color: #03445e;
  font-weight: 600;
}
.adm__karaitem {
  width: 100%;
  border-radius: 20px;
  padding: 0.6vw 2vw 0.6vw 0;
  display: grid;
  grid-template-columns: 30vw 10vw auto;
  grid-template-rows: auto auto;
  gap: 0.4vw;
  background: #dfdfdf;
  padding: 0.6vw;
}
.adm__karaitem--song {
  grid-template-columns: 30vw 15vw 10vw auto;
}
.adm__karaitem--bt {
  grid-template-columns: 25vw 15vw 3vw 5vw auto;
  position: relative;
  transition: 0.5s;
  top: 0;
}
.adm__karabtnvert {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4vw;
}
.adm__karabtnordre {
  color: white;
  background: #006c97;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1vw;
  line-height: 1.2vw;
  padding: 0.4vw;
  border-radius: 10px 0 0 10px;
  transition: 0.5s;
}
.adm__karabtnordre:hover {
  cursor: pointer;
  background: #03445e;
}
.adm__karabtnordre:last-child {
  border-radius: 0 10px 10px 0;
}
.adm__karaplaylist {
  grid-row: 1/3;
  grid-column: 2;
  border-radius: 20px;
  padding: 0.6vw;
  background: #3a3a3a;
  color: white !important;
  margin-right: auto;
  margin-left: 0;
}
.adm__karatxt {
  font-size: 1vw;
  line-height: 1.2vw;
  color: black;
}
.adm__karatitre {
  grid-row: 1;
  grid-column: 1;
}
.adm__karasinger {
  grid-row: 2;
  grid-column: 1;
  font-size: 0.8vw;
  line-height: 1vw;
  color: #3a3a3a;
}
.adm__karaduree {
  font-size: 1vw;
  line-height: 1.2vw;
  color: #3a3a3a;
  grid-row: 1/3;
  grid-column: 2;
  margin: auto 0;
}
.adm__karaduree--song {
  grid-column: 3;
}
.adm__karalistbtn {
  grid-row: 1/3;
  grid-column: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1vw;
}
.adm__karalistbtn--song {
  grid-column: 4;
}
.adm__karalistbtn--bt {
  grid-column: 5;
}
.adm__karabtn {
  border-radius: 10px;
  width: 2vw;
  height: 2vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  font-size: 1vw;
  line-height: 1.2vw;
  background-color: #2594c0;
  color: white;
  transition: 0.5s;
  border: none;
}
.adm__karabtn:hover {
  cursor: pointer;
  background-color: white;
  color: #2594c0;
}
.adm__karabtn--del {
  background: red;
}
.adm {
  /** Droite **/
}
.adm__dems {
  width: 15vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 3vw 1vw;
  background: #006c97;
}
.adm__dems__ttl {
  color: #03445e;
  font-weight: 500;
  font-size: 1.4vw;
  line-height: 1.6vw;
  margin: 0 auto;
  text-align: center;
}
.adm__dems__sep {
  width: 90%;
  height: 5px;
  background-color: #03445e;
  margin: 2vw auto;
  border: none;
  outline: none;
}
.adm__dems__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1vw;
}
.adm__dems__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1vw;
  font-size: 1vw;
  line-height: 1.2vw;
  color: white;
}
.adm__dems__btn {
  border-radius: 50%;
  width: 2.2vw;
  height: 2.2vw;
  font-size: 0.6vw;
  line-height: 0.8vw;
  background: red;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: none;
}
.adm {
  /** Formulaire **/
}
.adm__form {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.adm__inpgrp {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
}
.adm__inplab {
  font-size: 1vw;
  line-height: 1.2vw;
  color: white;
}
.adm__inp {
  border: 3px solid #006c97;
  border-radius: 10px;
  background: unset;
  color: white;
  font-size: 1vw;
  line-height: 1.2vw;
  width: 20vw;
  height: 3vw;
  padding: 0.6vw 0.4vw;
}
.adm__inp--multisel {
  grid-row: 1;
  grid-column: 1;
}
.adm .inphidden {
  display: none;
}
.adm__inpgrpmultisel {
  display: grid;
  grid-template-columns: 20vw 3vw 20vw;
  grid-template-rows: auto;
  position: relative;
  gap: 0.6vw;
}
.adm__btnsend {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #006c97;
  color: white;
  font-size: 1vw;
  line-height: 1.2vw;
  width: 2vw;
  height: 2vw;
  border: none;
  margin: auto;
}
.adm__inplist {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1vw;
  grid-row: 1;
  grid-column: 3;
}
.adm__inpitem {
  background: #3a3a3a;
  color: white;
  font-size: 0.8vw;
  line-height: 1vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4vw;
  border: none;
  border-radius: 20px;
  padding: 0.2vw;
}
.adm__inpsel {
  position: absolute;
  top: 3vw;
  left: 0;
  width: 20vw;
  height: 3vw;
  background: white;
  border-radius: 0 0 10px 10px;
  color: #006c97;
  display: none;
}
.adm__inpsel--active {
  display: block;
}
.adm__btnsubmit {
  background: white;
  color: #006c97;
  transition: 0.5s;
  border-radius: 10px;
  border: 3px solid white;
  font-size: 1vw;
  line-height: 1.2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1vw;
  margin: 0 auto;
  margin-left: 0;
  padding: 0.6vw 1vw;
}
.adm__btnsubmit:hover {
  cursor: pointer;
  background-color: #006c97;
  color: white;
}

.modal {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 400;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.5s;
}
.modal--active {
  top: 0;
}
.modal__ctt {
  border-radius: 10px;
  border: 3px solid #006c97;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  position: relative;
  width: 30vw;
  height: 40vh;
}
.modal__ttl {
  font-size: 1.4vw;
  line-height: 1.6vw;
  color: #006c97;
  font-weight: 500;
  text-align: center;
}
.modal__sel {
  background: white;
  border: 3px solid #006c97;
  border-radius: 10px;
  font-size: 1vw;
  line-height: 1.2vw;
  width: 20vw;
}
.modal__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2vw;
  margin: 0 auto;
}
.modal__btn {
  border-radius: 10px;
  background: #006c97;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1vw;
  padding: 0.6vw 0.8vw;
  font-size: 1vw;
  line-height: 1.2vw;
  transition: 0.5s;
  border: 3px solid #006c97;
}
.modal__btn:hover {
  cursor: pointer;
  background: white;
  color: #006c97;
}
.modal__btn--del {
  background: white;
  color: #006c97;
}
.modal__btn--del:hover {
  background: #006c97;
  color: white;
}

.empty {
  font-style: italic;
}

.bt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bt__ctnr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bt__ttl {
  font-family: Brizel !important;
  font-size: 6vw;
  line-height: 6.2vw;
  color: white;
  font-weight: 600;
  text-align: center;
}
.bt__ttl--tel {
  font-size: 10vw;
  line-height: 11vw;
}
.bt__vinyle {
  height: 50vh;
  width: auto;
  z-index: 500;
}
.bt__res {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
}
.bt__restxt {
  font-size: 3vw;
  line-height: 3.2vw;
  color: white;
  font-weight: 500;
  text-align: center;
}
.bt__ftr {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  width: 80vw;
  justify-content: space-between;
}
.bt__equipe {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6vw;
  border-radius: 20px;
  border: 3px solid white;
  background: red;
  padding: 1vw;
}
.bt__equipe:last-child {
  background: blue;
}
.bt__equipe__pts {
  font-size: 2.6vw;
  line-height: 2.8vw;
  color: white;
  font-weight: 500;
  position: relative;
  transition: 0.5s;
}
.bt__equipe__name {
  color: white;
  font-weight: 500;
  font-size: 2vw;
  line-height: 2.2vw;
}

.grossissement {
  transform: scale(1.4);
}

.bttel {
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4vw;
}
@media (min-width: 992px) {
  .bttel {
    gap: 1vw;
  }
}
.bttel__linkhome {
  position: fixed;
  top: 3vw;
  left: 3vw;
  font-size: 4vw;
  line-height: 5vw;
  border-radius: 50%;
  width: 8vw;
  height: 8vw;
  background: white;
  border: 3px solid #006c97;
  color: #006c97;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .bttel__linkhome {
    top: 1vw;
    left: 1vw;
    font-size: 1vw;
    line-height: 1.2vw;
    width: 3vw;
    height: 3vw;
  }
}
.bttel__equipes {
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
@media (min-width: 992px) {
  .bttel__equipes {
    gap: 1vw;
  }
}
.bttel__equipe {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4vw;
}
@media (min-width: 992px) {
  .bttel__equipe {
    gap: 1vw;
  }
}
.bttel__inp {
  background: white;
  border-radius: 10px;
  font-size: 3vw;
  line-height: 4vw;
  padding: 1vw;
}
@media (min-width: 992px) {
  .bttel__inp {
    font-size: 1vw;
    line-height: 1.2vw;
    padding: 0.6vw;
  }
}
.bttel__inp--rouge {
  border: 3px solid red;
}
.bttel__inp--bleu {
  border: 3px solid blue;
}
.bttel__score {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.bttel__scorebtn {
  background: #006c97;
  color: white;
  border: 3px solid #006c97;
  font-size: 3vw;
  line-height: 4vw;
  padding: 1vw;
  border-radius: 10px 0 0 10px;
}
@media (min-width: 992px) {
  .bttel__scorebtn {
    font-size: 1vw;
    line-height: 1.2vw;
    padding: 0.6vw;
  }
}
.bttel__scorebtn:last-child {
  border-radius: 0 10px 10px 0;
}
.bttel__scoretxt {
  background: white;
  color: #006c97;
  font-size: 3vw;
  line-height: 4vw;
  padding: 1vw;
  border-top: 3px solid #006c97;
  border-bottom: 3px solid #006c97;
}
@media (min-width: 992px) {
  .bttel__scoretxt {
    font-size: 1vw;
    line-height: 1.2vw;
    padding: 0.6vw;
  }
}
.bttel__btnsave {
  border-radius: 10px;
  background: #006c97;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 50%;
  font-size: 3vw;
  line-height: 4vw;
  width: 7vw;
  height: 7vw;
  border: none;
  text-align: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .bttel__btnsave {
    font-size: 1vw;
    line-height: 1.2vw;
    width: 3vw;
    height: 3vw;
  }
}
.bttel__mscencours {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  font-size: 6vw;
  line-height: 7vw;
  color: white;
}
@media (min-width: 992px) {
  .bttel__mscencours {
    font-size: 2vw;
    line-height: 2.2vw;
  }
}
.bttel__btnsuivant {
  border: 10px;
  background: #006c97;
  color: white;
  border: 3px solid #006c97;
  font-size: 5vw;
  line-height: 6vw;
  padding: 1vw;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .bttel__btnsuivant {
    font-size: 1.4vw;
    line-height: 1.6vw;
    padding: 0.6vw;
  }
}
.bttel__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6vw;
}
@media (min-width: 992px) {
  .bttel__btns {
    gap: 2vw;
  }
}
.bttel__btnmsc {
  border: 3px solid #006c97;
  background: white;
  color: #006c97;
  font-size: 5vw;
  line-height: 6vw;
  padding: 2vw;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2vw;
}
@media (min-width: 992px) {
  .bttel__btnmsc {
    font-size: 1.4vw;
    line-height: 1.6vw;
    padding: 0.8vw;
    gap: 0.8vw;
  }
}

.z1000 {
  z-index: 1000;
}

/** Projo **/
.projo::before {
  overflow: hidden;
}
.projo__invite {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}
.projo__invite--active {
  display: flex;
}
.projo__ttl {
  font-size: 3.8vw;
  line-height: 2vw;
  color: white;
  font-weight: 600;
  text-align: center;
}
.projo__desc {
  font-size: 2.4vw;
  line-height: 2.6vw;
  color: #fff;
  font-weight: 500;
  text-align: center;
  max-width: 56vw;
}
.projo__qr {
  width: auto;
  height: 50vh;
}
.projo__player {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 61vw;
  gap: 3vw;
  margin: auto;
}
.projo__player--active {
  display: flex;
}
.projo__ytb {
  width: 100%;
  height: 34.125vw;
  display: none;
  z-index: 500;
}
.projo__ytb--active {
  display: block;
}
.projo__ytb iframe {
  width: 100%;
  height: 28.125vw;
}
.projo__video {
  width: 100%;
  height: 34.125vw;
  display: none;
  z-index: 500;
}
.projo__video--active {
  display: block;
}
.projo__infos {
  font-size: 3.8vw;
  line-height: 3vw;
  color: white;
  font-weight: 600;
  text-align: left;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/** Player **/
.admplyr {
  width: 90%;
  display: flex;
  flex-direction: column;
  margin: 2vw auto;
  max-height: 100vh;
  overflow-y: auto;
  /** Vinyles **/
}
.admplyr__vinyles {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 2vw;
  margin: 0 auto;
}
.admplyr__disque {
  width: 100%;
  display: grid;
  grid-template-columns: 20vw 3vw;
  grid-template-rows: 20vw 2.2vw auto;
  gap: 1vw;
}
.admplyr__disque--right {
  grid-template-columns: 3vw 20vw;
}
.admplyr__vinyle {
  margin: auto;
  position: relative;
  width: 20vw;
}
.admplyr__vinyle--right {
  grid-column: 2;
}
.admplyr__vinyle__img {
  width: 100%;
  height: auto;
}
.admplyr__vinyle__lab {
  font-size: 1.6vw;
  font-weight: 600;
  line-height: 1.8vw;
  position: absolute;
  left: 9.4vw;
  top: 9.1vw;
}
.admplyr__interac {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 20vw;
  gap: 2vw;
}
.admplyr__interac--right {
  grid-column: 1;
  grid-row: 1;
}
.admplyr__vol {
  width: 15vw;
  height: 1vw;
  position: absolute;
  top: 0;
  transform: rotate(-90deg);
  transform-origin: 11vw 4vw;
}
.admplyr__btn {
  position: absolute;
  bottom: 0;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1vw;
  line-height: 1.2vw;
  background: #006c97;
  color: white;
  padding: 0.6vw;
  border: none;
  transition: 0.5s;
}
.admplyr__btn:hover {
  cursor: pointer;
  background: white;
  color: #006c97;
}
.admplyr__duree {
  grid-row: 2;
  grid-column: 1/3;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: 1.4vw 0.8vw;
}
.admplyr__timer {
  grid-row: 1;
  grid-column: 3;
  font-size: 1vw;
  line-height: 1.2vw;
  color: white;
  margin: 0;
  margin-left: auto;
  margin-right: 0;
}
.admplyr__timer--encours {
  margin-right: auto;
  margin-left: 0;
  grid-column: 1;
}
.admplyr__timerbarre {
  grid-column: 1/4;
  grid-row: 2;
  width: 100%;
  height: 0.6vw;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #3a3a3a;
}
.admplyr__timerrempli {
  position: absolute;
  top: 0;
  transition: 0.5s;
  height: 100%;
  background: #006c97;
}
.admplyr__infos {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  text-align: left;
  margin-right: auto;
  margin-left: 0;
  grid-column: 1/3;
}
.admplyr__infos--right {
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}
.admplyr__ttl {
  color: white;
  font-size: 1.4vw;
  line-height: 1.6vw;
  font-weight: 500;
}
.admplyr__singers {
  color: white;
  font-size: 1.2vw;
  line-height: 1.4vw;
}
.admplyr__volgen {
  grid-row: 2;
  grid-column: 1/3;
  width: 15vw;
  margin: 0 auto;
}
.admplyr {
  /** Répertoires **/
}
.admplyr__repertoires {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.admplyr__search {
  border: 3px solid #006c97;
  border-radius: 10px;
  background: white;
  color: #006c97;
  font-size: 1vw;
  line-height: 1.2vw;
  padding: 0.6vw;
  width: 15vw;
}
.admplyr__lists {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 3vw;
}
.admplyr__list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1vw;
  margin-bottom: 3vw;
}
.admplyr__item, .admplyr__plstitem {
  width: 90%;
  background: #3a3a3a;
  border-radius: 10px;
  padding: 0.6vw;
  display: grid;
  grid-template-columns: 5vw 19vw auto;
}
.admplyr__item--isread, .admplyr__plstitem--isread {
  background: red;
}
.admplyr__item__duree, .admplyr__plstitem__duree {
  font-size: 1vw;
  line-height: 1.2vw;
  color: rgb(194, 194, 194);
  grid-row: 1/3;
}
.admplyr__item__infos, .admplyr__plstitem__infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6vw;
}
.admplyr__item__titre, .admplyr__plstitem__titre {
  font-size: 1.2vw;
  line-height: 1vw;
  font-weight: 500;
  color: white;
}
.admplyr__item__chanteurs, .admplyr__plstitem__chanteurs {
  font-size: 1vw;
  line-height: 1.2vw;
  color: white;
}
.admplyr__item__btns, .admplyr__plstitem__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8vw;
}
.admplyr__item__btn, .admplyr__plstitem__btn {
  border-radius: 10px;
  border: none;
  background: #006c97;
  color: white;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1vw;
  line-height: 1.2vw;
  padding: 0.4vw;
  margin: auto;
}
.admplyr__item__btn:hover, .admplyr__plstitem__btn:hover {
  cursor: pointer;
  background: white;
  color: #006c97;
}

.rotate {
  animation: tourner 3s linear infinite;
}

@keyframes tourner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/** Alert **/
.alert {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 70vw;
  border-radius: 24px;
  gap: 10px;
  padding: 28px;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
  position: fixed;
  top: -100vh;
  left: 15vw;
  transition: 1s;
  z-index: 500;
}
.alert--active {
  top: 10px;
}
.alert--wait {
  background: #fff3cd;
  color: #856404;
}
.alert--succ {
  background: #d4edda;
  color: #155724;
}
.alert--error {
  background: #f8d7da;
  color: #721c24;
}
.alert__ttl {
  font-size: 1.4rem;
  font-weight: 600;
}
.alert__desc {
  font-size: 0.9rem;
}

/*# sourceMappingURL=app.output.css.map */
