.forwarding-message-input,
.forwarding-message-input * {
  box-sizing: border-box;
}
.forwarding-message-input {
  background: var(--main-background, #ffffff);
  padding: 10px 12px 10px 12px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.forwarding-message-input-input {
  background: var(--incoming-background, #e4e6e8);
  border-radius: 4px;
  padding: 10px 8px 10px 16px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
  justify-content: flex-start;
  flex: 1;
  position: relative;

  textarea {
    overflow: auto;
    scrollbar-width: none;
  }

  textarea::-webkit-scrollbar {
    display: none;
  }
}
.forwarding-message-input-input-type-message {
  color: var(--main-text, #636d78);
  background: var(--incoming-background, #e4e6e8);
  text-align: left;
  font: var(--body-body-large, 400 16px/24px "Roboto", sans-serif);
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  resize: none;
  border: none;
  outline: none;
  width: 100%;
  height: 26px;
  min-height: 26px;
  max-height: 26px;


}

.forwarding-message-input-icon-send {
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 44px;
  position: relative;

  &__icon{
    width: 24px;
    height: 24px;
    cursor: pointer;
    fill: var(--secondary-elements);
    &__send {
      width: 24px;
      height: 24px;
      cursor: pointer;
      fill: var(--main-elements);
    }

    svg path{
      width: 24px;
      height: 24px;
      fill: var(--main-elements);
    }
  }
  &__icon--disable{
    fill: var(--disabled-elements);
    cursor: default;
    width: 24px;
    height: 24px;
    svg path{
      width: 24px;
      height: 24px;
      fill: var(--disabled-elements);
    }
  }

}
.actions-send {
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}
