.global-notifications{
  color: white !important;
  background-color: #101325 !important;
  display: none;
  padding: 20px 60px !important;
  font-family: "Exo 2", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}
.global-notifications p{
  margin:0 !important;
  display: inline-block;
  position: relative;
  z-index: 5;
}
.global-notifications p::after{
  content: '';
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  bottom: -2px;
  background-color: #02a1de;
  z-index: -1;
}
.global-notifications .fa-times-circle{
  display: block;
  position: absolute;
  right: 60px;
  top: 23px;
  cursor: pointer;
}
.global-notifications .fa-times-circle:hover{
  opacity: .7;
}

@media (max-width:920px){
  .global-notifications{
    padding: 20px 80px 20px 20px !important;
    font-size: 1.8rem !important;
  }
  .global-notifications .fa-times-circle{
    right: 20px;
    font-size: 3rem;
  }
}

@media (max-width:520px){
  .global-notifications{
    padding: 20px 80px 20px 20px !important;
    font-size: 1.6rem !important;
  }
  .global-notifications .fa-times-circle{
    right: 20px;
    font-size: 3.2rem;
  }
}