.ac-post {
  position: relative;
  z-index: 1;

  .textarea {
    height: 83px;
    width: 100%;
    background-color: $white-100;
    border: 1px solid $color-border;
    border-radius: 4px;
    padding: 30px 170px 30px 30px;
    font-size: 14px;
    overflow: hidden;
    font-weight: 500;

    &::placeholder {
      color: #8392a5;
      font-weight: 500;
      // content: "~@appscode/design-system-images/icons/edit-icon.svg";
    }

    &:focus {
      outline: none;
      box-shadow: none;
    }

    &::-webkit-scrollbar {
      width: 0px;
    }
  }

  .file-upload {
    display: flex;
    position: absolute;
    right: 1px;
    width: 170px;
    justify-content: space-between;
    top: 1px;
    height: calc(100% - 2px);
    background-color: $white-100;

    label {
      display: block;
      border-left: 1px solid $color-border;
      padding: 30px;
      cursor: pointer;

      img {
        width: auto;
        height: 20px;
      }
    }

    input {
      display: none;
    }
  }
}

/****************************************
Responsive Classes
*****************************************/
// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) {
}

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) and (max-width: 767.98px) {
}

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) and (max-width: 991.98px) {
}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) and (max-width: 1199.98px) {
}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
}
