.abc {
  display: none;
}
@media screen and (max-width: 600px) {
  .abc {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    position: fixed;
    z-index: 9999999;
    left: 0;
    bottom: 0;
  }
}
