/* auto grow textarea based on the content entered by user */
.auto-grow-textarea {
    field-sizing: content;
    resize: none;
    min-height: 58px;
}

/* to make images support responsive */
img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents unwanted whitespace at the bottom */
}
