@media only screen and (max-width: 600px){
  .buyer-overlay {
    display: none;
  }
}

@media only screen and (min-width: 601px){
  .buyer-overlay {
    position: fixed;
    top: 130px;
    left: calc(100% - 90px);
    right: 0;
    bottom: 0;
    width: 60px;
    height: 190px;
    display: flex;
    z-index: 10000;
  }

  .buyer-overlay .close-button {
    width: 20px;
    height: 20px;
  }

  .buyer-overlay .banner-image {
    background-color: #fff;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    font-size: 15px;
    word-break: break-all;
    text-align: center;
  }

  .hide {
    display: none;
  }
}
