/**handles:pellegrini-flash**/
/** POUR LE theme pellegrini **/
.admin-bar .master_header {
  top: 62px;
}
@media only screen and (max-width: 1023px) {
  .admin-bar .master_header {
    top: 30px;
  }
}
/** normal **/
.admin-bar #pellegrini-flash-ribbon {
  top: 30px;
}
#pellegrini-flash-ribbon {
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #eeeeee;
  width: 100%;
  height: 30px;
  box-sizing: border-box;
  padding: 0px;
  z-index: 101;
  overflow: hidden;
}
#pellegrini-flash-ribbon .pellegrini-flash-text {
  color: black;
  text-decoration: none;
  display: none;
  text-align: center;
  width: auto;
  position: absolute;
  line-height: 30px;
  padding: 0 50px;
  font-size: 20px;
  left: 50%;
  animation-duration: 10s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  white-space: nowrap;
}
#pellegrini-flash-ribbon .pellegrini-flash-text.active {
  display: block;
}
@keyframes slidein {
  from {
    left: 100%;
    transform: translateX(0%);
  }
  to {
    left: 0%;
    transform: translateX(-100%);
  }
}
/** Specifique pellegrini **/
.pellegrini-flash-bar .master_header {
  top: 30px;
}