.dddd,.ouro.ouro3{height:100%;width:100%;position:fixed;z-index:10000000000001}.please{background:#292b2c;border-radius:40px;bottom:4px;color:#fefefe;font-size:12px;left:6px;padding:6px;position:fixed;text-align:center}.dddd{background:rgba(0,0,0,.5);right:0;top:0}.ouro.ouro3{background:url(/img/gif/3.gif) no-repeat;left:46%;top:35%}.modal-backdrop{background-color:rgba(0,0,0,.8)!important}.valdiate_login {
  color: #e10d0d;
  position: absolute;
  right: 11px;
  top: 10px;
  z-index: 2147483647;
}
                                                                                                                                                                                                                                                                                                                                                                                                            
.block {
  display: block;
}

.hide {
  display: none;
}

#notification-bar {
  position: fixed;
    width: 100%;
    top: 0;
    background-color: #444444b0;
    border-bottom: 1px solid #579ddb;
    clear: both;
    z-index: 999;
}

#notification-bar .container {
 height: 65px;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 5px;
}

#notification-bar .fa-info-circle {
  font-size: 35px;
  margin-right: 20px;
  color: #579ddb;
}

#notification-bar p {

  font-size: 20px;
  font-weight: 600;
  margin: 0 25px 0 0;
  padding: 0;
  line-height: 45px;
  color: #fff;
}
/*****************************/

input[type=checkbox]#notify-2 {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

input[type=checkbox]#notify-2 ~ #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 */

input[type=checkbox]#notify-2: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;
}

input[type=checkbox]#notify-2 ~ .fa-long-arrow-down {
  position: absolute;
  display: none;
  right: 10%;
  cursor: pointer;
  transition:all 0.3s ease;
}

input[type=checkbox]#notify-2:checked ~ .fa-long-arrow-down {
  display: block;
  top: -35px;
  padding: 10px;
  font-size: 50px;
  color: #579ddb;
  background-color: #444;
  /* 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;
}

input[type=checkbox]#notify-2:checked ~ .fa-long-arrow-down:hover {
  top: -15px;
  color: #ccc;
}
/******************/
.fa-times-circle {
 font-size: 26px;
    color: #b7b7b7;
  text-align: right;
  z-index: 9;
  cursor: pointer;
}

.fa-times-circle:hover {
  color: #fff;
}

/* ANIMATION for go up */

@-webkit-keyframes goUp {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  100% {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
}

@keyframes goUp {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  100% {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 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;
  }
}

