@import url('https://fonts.googleapis.com/css?family=Jaldi');
/* Baloo+Paaji */
#alertContainer {
    width: 0px;
    height: 0px;
    background-color: rgba(80, 80, 80, 0.0);
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    display: block;
    color: white;
    font-family: 'Jaldi';
    font-weight: bold;
    /* -webkit-box-shadow: 0px 0px 20px #0f3369; */
    -webkit-animation: animateAlert 7s 0s 1;
    }
#alertHeader {
    width: 320px;
    height: 80px;
    border-radius: 10px;
    background-color: #2AAAE0;
    /* text-shadow: 1px 1px 2px black; */
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 20px;
    }
#alertContent {
    width: 300px;
    height: 160px;
    word-wrap: break-word;
    background-color: rgba(80, 80, 80, 0.4);
    position: relative;
    overflow: hidden;
    color: white;
    display: table;
    }
#twitterLogo {
    width: 80px;
    height: 80px;
    float: left;
}
#twitterLogoDiv {
  width: 100px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
#twitterTextDiv {
    width: 300px;
    display: table-cell;
    vertical-align: middle;
}
span {
  font-size: 50px;
  float: left;
}
@-webkit-keyframes animateAlert {
    0%, 100% {
        width: 0px;
        height: 80px;
        }
    20%, 80% {
        width: 300px;
        height: 80px;
        }
    30%, 70% {
        width: 300px;
        height: 80px;
        }
    }
