$filterMargin: 12px;

.filter-entry {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  padding: 12px;
  background-color: #F4F6F6;
  border: 1px solid #D7DBDB;
  border-radius: 3px;

  @media (max-width: 1300px) {
    flex-direction: column;
  }

  &-wrapper {
    padding-bottom: 20px;
  }

  &-is-dirty {
    background-color: $alertOrangeBg;//#FFFBF5;
    border: 1px solid $alertOrange;//#FBB140;
  }

  &-header {
    position: absolute;
    top: 8px;
    right: 12px;
  }

  &-when, &-match {
    align-self: flex-start;
    width: 50%;
    @media (max-width: 1300px) {
      width: 100%;
    }
    label {
      display: block;
      font-size: 12px;
      font-weight: bold;
      padding-bottom: 12px;
    }
    textarea {
      width: 90%;
      font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    }
  }

  &-when {
    padding-right: 10px;
    padding-bottom: 0px;
    @media (max-width: 1300px) {
      padding-right: 0px;
      padding-bottom: 10px;
    }
  }

  &-match {
    padding-left: 10px;
    @media (max-width: 1300px) {
      padding-left: 0px;
    }
  }
}
