.delete_button__container {
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;

  .tip_wrapper_bottom {
    position: absolute;
    left: -100%;
    z-index: 9999;
  }
  .tip_wrapper_top {
    position: absolute;
    z-index: 9999;
    left: -100%;
    top: -150%
  }

  .tip {
    background: #fafafa;
    padding: 4px 8px;
    border-radius: 3px;
    box-shadow: 1px 2px 2px #ededed;
    white-space: nowrap;
  }

  .arrow {
    width: 0;
    height: 0;
    border: 8px solid transparent;
    margin: 0 auto;
  }

  .arrow_top {
    border-top-color: #fafafa;
  }
  .arrow_bottom {
    border-bottom-color: #fafafa;
  }
}