body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

h1>span {
    color: blue;
}

/* DEBUT ¤¤¤ Style concernant la page de base du projet HEROES (base.html.twig) */
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }

  .b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }

  .b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
  }

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
  }
  .bd-mode-toggle {
    z-index: 1500;
  }
  /* FIN ¤¤¤ Style concernant la page de base du projet HEROES (base.html.twig)  */

  /* DEBUT ¤¤¤ Style Perso */
  .larg-form {
    @media (min-width: 1641px) { 
      width: 40%;
    }
    @media (min-width: 1080px) and (max-width: 1640px) { 
      width: 60%;
    }
    @media (min-width: 991px) and (max-width: 1079px) { 
      width: 85%;
    }
    @media (min-width: 410px) and (max-width: 990px) { 
      width: 85%;
    }
    @media (max-width: 409px) { 
      width: 95%;
    }
  }

  button, a, label {
    font-size: 1.2em !important;
}
 
/* DEBUT ** Concerne la mise en place de l'oeil et l'oeil barré dans les inputs password */
.password-icon-login,
.password-icon-change,
.password-icon-register {
  display: flex;
  margin-top: 0.5em;
  margin-right: 1em;
}

.password-icon-login:hover,
.password-icon-change:hover,
.password-icon-register:hover {
  cursor: pointer;
}

.password-icon-login .bi-eye-slash,
.password-icon-change .bi-eye-slash,
.password-icon-register .bi-eye-slash {
  display: none;
}
/* FIN ** Concerne la mise en place de l'oeil et l'oeil barré dans les inputs password */

/* DEBUT ** Animation de l'oeil dans les inputs password */
.password-icon-login:hover,
.password-icon-change:hover,
.password-icon-register:hover {
  animation: mymove 1s infinite;
  animation-timing-function: linear;
  /* transform: scale(1.2,1.2); */
}

@keyframes mymove {
  /* from {transform:scale(1,1);}
  to {transform:scale(1.4,1.4);} */
  0% {transform:scale(1,1)}
  50% {transform:scale(1.5,1.5)}
  100% {transform:scale(1,1)}
}
/* FIN ** Animation de l'oeil dans les inputs password */

/* DEBUT ** Délimitation hauteur content et footer */
.content-principal {
  @media (min-width: 1650px) { 
    min-height: 80vh;
  } 
  @media (min-width: 1240px) and (max-width: 1649px) { 
    min-height: 70vh;
  }
  @media (min-width: 770px) and (max-width: 1239px) and (min-height: 700px) and (max-height: 1400px){ 
    min-height: 80vh;
  }
  @media (min-width: 770px) and (max-width: 1239px) and (min-height: 400px) and (max-height: 699px){ 
    min-height: 50vh;
  }
  @media (min-width: 576px) and (max-width: 769px) { 
    min-height: 70vh;
  }
  @media (min-width: 120px) and (max-width: 575px) { 
    min-height: 40vh;
  }
}

.content-footer {
  height: 5vh;
}
/* FIN ** Délimitation hauteur content et footer */

/* DEBUT ** Délimitation largeur message flash quand il n'y pas de résultat pour la recherche demandée */
.noResult {
  @media (min-width: 1240px) { 
    width: 50%;
  }
  @media (min-width: 740px) and (max-width: 1239px) { 
    width: 50%;
  }
  @media (min-width: 576px) and (max-width: 739px) { 
    width: 75%;
  }
  @media (min-width: 120px) and (max-width: 575px) { 
    width: 80%;
  }
}
/* FIN ** Délimitation largeur message flash quand il n'y pas de résultat pour la recherche demandée */

/* DEBUT ** Délimitation des champs SELECT pour le formulaire "Ajouter" un film */
.selectRdoFilm {
  padding: 0.25em;
  margin-top: 0.25em;
}
/* FIN ** Délimitation des champs SELECT pour le formulaire "Ajouter" un film */

/* DEBUT ** Configuration du bouton flêche vers le haut */
.arrow-toTop {
  bottom :4em;
  display: none;
  position: fixed;
  width: 3em;
  
  @media (min-width: 576px) { /* Placement à droite pour les grand écrans */
    right: 3em;
  }
  @media (min-width: 120px) and (max-width: 575px) { /* Placement à gauche pour les écrans de téléphone et de petite tablette */
    left: 3em;
  }
  
  text-align: center;
  overflow:hidden;
}

.arrow-toTop i {
  font-size: 1.8em;
}

.arrow-toTop i:hover {
  color: #FE9A2E;
}
/* FIN ** Configuration du bouton flêche vers le haut */

/* DEBUT ** Style concernant la consultation d'un DVD */
th a {
  text-decoration: none;
  color :rgb(250, 143, 3);
}
th a:hover {
  cursor: pointer;
 }
 /* FIN ** Style concernant la consultation d'un DVD */

/* DEBUT ** Concerne la modal de consultation détail d'un film ... */
.orange {
  color : orangered !important;
}
/* FIN ** Concerne la modal de consultation détail d'un film ... */

/* DEBUT ** Concerne le lien modal consultation et modal dévérouillage du champ numéro pour la modification ... */
.link-modal,
.link-unlocked {
  text-decoration: none;
  color : #FF6347 !important;
  font-size: 0.9em !important; 
}

.link-modal:hover,
.link-unlocked:hover {
  cursor: pointer !important;
}
/* FIN ** Concerne le lien modal consultation et modal dévérouillage du champ numéro pour la modification ... */

/* DEBUT ** Image Loader (attente réponse Réseau par Ajax ) */
#divImgLoader {
  display: none;
  text-align: center;
}
.imgLoader{
  width: 4em;
  height: 4em;
}
/* FIN ** Image Loader (attente réponse Réseau par Ajax ) */

/* DEBUT ** Message erreur sur Formulaire standard dans fichiers "templates/liste_film/_modalFormEdit.html.twig" 
et "templates/liste_film/_modalFormDelete.html.twig"*/
.span-input{
  visibility: hidden;
}
/* FIN ** Message erreur sur Formulaire standard dans fichier "templates/liste_film/_modalFormEdit.html.twig" */

/* DEBUT ** Délimitation largeur visualisation page Suppression d'un film */
.visu-delete-film {
  @media (min-width: 1240px) { 
    width: 50vw;
  }
  @media (min-width: 740px) and (max-width: 1239px) { 
    width: 70vw;
  }
  @media (min-width: 576px) and (max-width: 739px) { 
    width: 80vw;
  }
  @media (min-width: 120px) and (max-width: 575px) { 
    width: 90vw;
  }
}
/* FIN ** Délimitation largeur visualisation page Suppression d'un film  */

/* DEBUT ** Texte justifié */
.textJustify {
  text-align: justify;
  text-justify: inter-word;
}
/* FIN ** Texte justifié */

/* DEBUT ** Concerne affichage message alerte résultat ajout "Acteur ou Actrice" ou "Année de sortie" ou "Genre de film" dans la page Nouveu film */
.msg-add {
  display : none;
}
/* FIN ** Concerne affichage message alerte résultat ajout "Acteur ou Actrice" ou "Année de sortie" ou "Genre de film" dans la page Nouveu film */

/* DEBUT ** Concerne affichage du lien permettant d'appeler la modal d'ajout Acteur Actrice, Année et Genre */
.div-linkCallModalAddActeurActrice,
.div-linkCallModalAddAnnee,
.div-linkCallModalAddGenre {
  display : none;
}

.link-callModalAddActeurActrice,
.link-callModalAddAnnee,
.link-callModalAddGenre {
  animation: lienAppelModalClignotte 250ms infinite;
  font-size: 1.2em !important; 
}
.link-callModalAddActeurActrice:hover,
.link-callModalAddAnnee:hover,
.link-callModalAddGenre:hover {
  cursor: pointer;
  color:chocolate;
}

@keyframes lienAppelModalClignotte {
  from{
     opacity: 0;
  }
  to {
     opacity: 1;
  }
}
/* FIN ** Concerne affichage du lien permettant d'appeler la modal d'ajout Acteur Actrice, Année et Genre */


/* DEBUT ** Concerne les liens "Mot de passe oublié" et "Ou souhaitez-vous créer un compte ?" de la page Connexion ... */
.link-psdforbidden {
  text-decoration: none;
  color : #ffa16a !important;
  font-size: 1.1em !important; 
}

.span-createaccount {
  font-size: 1em !important; 
}

.link-createaccount {
  text-decoration: none;
  color : #6ea8fe !important;
  font-size: 1em !important;
}

.link-psdforbidden:hover,
.link-createaccount:hover {
  cursor: pointer !important;
  color : #0d6efd !important;
}
/* FIN ** Concerne les liens "Mot de passe oublié" et "Ou souhaitez-vous créer un compte ?" de la page Connexion ... */

/* DEBUT ** Concerne le texte accompagnant la CheckBox RemenberMe sur la vue Login ... */
.remenberMe {
  color : #20B2AA !important;
  font-size: 1em !important;
}
/* FIN ** Concerne le texte accompagnant la CheckBox RemenberMe sur la vue Login ... */

/* DEBUT ** Concerne les lignes informations dans le formulaire "Edition du profil" ... */
.text-infos {
  color : #ffa16a !important;
  font-size: 1em !important;
}
/* FIN ** Concerne les lignes informations dans le formulaire "Edition du profil" ... */

/* DEBUT ** Concerne textarea du formulaire de contact */
textarea {
  resize: none !important;
}

.span-compteur {
  position:absolute;
  width: 10em;
  top: 0.5em;
  right:2em;
}
/* FIN ** Concerne textarea du formulaire de contact */


/* FIN ¤¤¤ Style Perso */
