.progon-btn-square {
  min-width: 30px;
  min-height: 20px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 5px;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  cursor: pointer;
  i.halflings {
    margin-top: -2px;
  }
  i.halflings.halflings-plus {
    margin-top: -3px;
    left: 1px;
  }
  &:hover {
    color: #333 !important;
    background-color: #e6e6e6;
    background-image: none;
  }
  &.disabled,
  &[disabled] {
    cursor: auto;
    position: relative; 
    isolation: isolate;
    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: white;
      opacity: 0.6;
      pointer-events: none;
    }
  }
  &.blue {
    color: #2f96b4 !important;
    border-color: #91cbdd !important;
  }
  &.green {
    color: #4a9463 !important;
    border-color: #a3d6b4 !important;
  }
  &.red {
    color: #c44037 !important;
    border-color: #de9c96 !important;
  }
}

@media print {
  .progon-btn-square {
    display: none;
  }
}
