a.modal-logic-alert {
  position: relative;
}

a.modal-logic-alert:before {
  content: '';
  border: 2px solid #a5915f;
  border-radius: 4px;
  position: absolute;
  left: -12px;
  top: -10px;
  right: -12px;
  bottom: -10px;
  display: block;
}

a.modal-logic-alert:after {
  content: '1';
  background: #a5915f;
  border-radius: 50%;
  position: absolute;
  left: 100%;
  bottom: 100%;
  transform: translate(-1px, 4px);
  color: #1e1e1e;
  font-size: 13px;
  display: block;
  font-weight: bold;
  text-align: center;
  width: 24px;
  height: 24px;
  padding-top: 3px;
}

.system-fixed-block {
  transform: translate(0, 100%);
  transition: transform .3s;
}

.system-fixed-block.modal-logic-alert {
  transform: translate(0, 0);
}