
 #notifyOffline #notification-bar {
    font-family: Titre !important;
    position: fixed;
    width: 104%;
    top: 0;
    background-color: #444;
    border-bottom: 1px solid #333;
    clear: both;
    z-index: 999;
    height: 60px;
  }
  
  #notifyOffline #notification-bar .container {
    width: 90% !important;
    max-width: 90% !important;
    height: 45px;
    margin: 0 auto;
    padding: 7px;
    background-color: #444;
  }
  
  #notifyOffline  #notification-bar .fa-gift,
  #notifyOffline  #notification-bar  .fa-exclamation-triangle {
    display: inline-block;
    font-size: 45px;
    float: right;
    margin-right: 20px;
    color: #ffbe03;
  }
  
  #notifyOffline  #notification-bar p {
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
    float: right;
    margin: 0 25px 0 0;
    padding: 0;
    line-height: 45px;
    color: #fff;
    overflow-wrap: break-word;
  }
  
  #notifyOffline  #notification-bar a.btn-action {
    display: inline-block;
    width: 110px;
    height: 35px;
    line-height: 35px;
    margin-top: 5px;
    padding: 0px 12px;
    float: right;
    margin-right: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: bold;
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    
    -webkit-border-radius: 5px;
    /* Firefox 1-3.6 */
    
    -moz-border-radius: 5px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    
    border-radius: 5px;
    text-align: center;
    background-color: #ffbe03;
    color: #111;
    text-decoration: none;
  }
  
  #notifyOffline  #notification-bar a.btn-action:hover {
    background-color: #ffd24d;
  }
  
  #notifyOffline   input[type=checkbox] {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  #notifyOffline  .fa-times-circle {
    float: left;
    margin-top: 8px;
    font-size: 30px;
    color: #222;
    text-align: right;
    z-index: 9;
    cursor: pointer;
  }
  
  #notifyOffline  .fa-times-circle:hover {
    color: #fff;
  }
  
  #notifyOffline  input[type=text] {
    width: 230px;
    height: 30px;
    font-size: 18px;
    margin: 5px 0 0 0;
    padding: 0 0 0 5px;
    border: 1px solid #555;
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    
    -webkit-border-radius: 3px;
    /* Firefox 1-3.6 */
    
    -moz-border-radius: 3px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    
    border-radius: 3px;
  }
  
  #notifyOffline   input[type=text] + input[type=text] {
    margin-left: 10px;
  }
  /* Initial bar stage  */
  
  #notifyOffline  input[type=checkbox] ~ #notification-bar {
    /* Animation */
    
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /* Start animation to go down */
    
    -webkit-animation-name: goDown;
    animation-name: goDown;
  }
  /* Close the bar */
  
  #notifyOffline  input[type=checkbox]:checked ~ #notification-bar {
    /* Animation */
    
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /* Start animation to go up */
    
    -webkit-animation-name: goUp;
    animation-name: goUp;
  }

  
  @-webkit-keyframes goUp {
    0% {
      -webkit-transform: none;
      transform: none;
    }
    100% {
      -webkit-transform: translate3d(0, -500px, 0);
      transform: translate3d(0, -500px, 0);
    }
  }
  
  @keyframes goUp {
    0% {
      -webkit-transform: none;
      transform: none;
    }
    100% {
      -webkit-transform: translate3d(0, -500px, 0);
      transform: translate3d(0, -500px, 0);
    }
  }
  /* ANIMATION for go down */
  
  @-webkit-keyframes goDown {
    0% {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes goDown {
    0% {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @media (max-width: 950px) {
    #notifyOffline  #notification-bar p {
      font-size: 10px;
      line-height: 20px;
      width: 68%;
    }
}