.shadow-task {
  position: relative;

  display: flex;

  width: 100%;
  margin-bottom: 10px;
  padding: 15px 35px;

  font-size: 12px;

  border: 1px solid lightgray;
  border-radius: 4px;
  box-shadow: 0 0 4px 3px #fbfbfb;

  &__actions {
    cursor: pointer;

    position: absolute;
    top: 6px;
    right: 10px;

    display: flex;
    align-items: center;

    &__toggle-pin,
    &__close {
      display: flex;
    }

    &__toggle-pin {
      padding-right: 8px;
    }
  }

  &,
  &:link,
  &:visited,
  &:focus,
  &:hover,
  &:active {
    cursor: pointer;
    color: #6b7f85;
    text-decoration: none;
  }
}
