
/* Alert BAR CSS */
.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
  float: left;
  width: 99%;
  text-align: center;
  font-size: 21px;
  font-weight: normal;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.mobile {
    display:none;
}

.desktop{
    display:block;
}

@media only screen and (max-width:540px){
  .mobile {
    display:block;
  }

  .desktop{
    display:none;
  }
}