.showMe {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
        overflow: hidden;
}

@keyframes showLater {
    to{
    padding:10px 20px;
    margin:0 10px 20px 10px;
    overflow: visible;
    height:auto;
    }
}
@-webkit-keyframes showLater {
    to{
    padding:10px 20px;
    margin:0 10px 20px 10px;
    overflow: visible;
    height:auto;
    }
}
.wrapper-hide{
    padding:0;
    margin:0;
    height:0;
    overflow: hidden;
}

.hideMe {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    padding:0;
    margin:0;
    height:0;
    overflow: hidden;
}

@keyframes hideLater {
    0%{
    height:0;
    overflow: hidden;
    }
    50%{
    height:0;
    overflow: hidden;
    }
    50.01%{
    overflow: visible;
    height:auto;
    }
    99.99%{
    overflow: visible;
    height:auto;
    }
    100%{
    height:0;
    overflow: hidden;
    }
}
@-webkit-keyframes hideLater {
    0%{
    padding:0;
    margin:0;
    height:0;
    overflow: hidden;
    }
    50%{
    padding:0;
    margin:0;
    height:0;
    overflow: hidden;
    }
    50.01%{
    padding:10px 20px;
    margin:0 10px 20px 10px;
    overflow: visible;
    height:auto;
    }
    99.8%{
    padding:10px 20px;
    margin:0 10px 20px 10px;
    overflow: visible;
    height:auto;
    }
    99.9%{
    padding:0;
    margin:0;
    height:0;
    overflow: hidden;
    }
    100%{
    padding:0;
    margin:0;
    height:0;
    overflow: hidden;
    }
}
.typing-indicator{
  padding:15px;
  display: table;
}
.typing-indicator span {
  height: 6px;
  width: 6px;
  float: left;
  margin: 0 2px;
  background-color: #ffffff;
  display: block;
  border-radius: 50%;
  opacity: 0.8;
}
.typing-indicator span:nth-of-type(1) {
  -webkit-animation: 1s blink infinite 0.3333s;
          animation: 1s blink infinite 0.3333s;
}
.typing-indicator span:nth-of-type(2) {
  -webkit-animation: 1s blink infinite 0.6666s;
          animation: 1s blink infinite 0.6666s;
}
.typing-indicator span:nth-of-type(3) {
  -webkit-animation: 1s blink infinite 0.9999s;
          animation: 1s blink infinite 0.9999s;
}

@-webkit-keyframes blink {
  50% {
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px);
  }
}

@keyframes blink {
  50% {
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px);
  }
}
@-webkit-keyframes bulge {
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes bulge {
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
