/*MULTI-LINE TEXTBOX CONTROL*/
.mline-tbox-wrap {
    position: relative;
}

.mline-tbox-counter {
    position: absolute;
    right: 8px;
    bottom: 6px;
    font-size: .85rem;
    color: #646464;
}

textarea.mline-tbox {
    display: block;
    width: 100%;
    min-height: 120px;
    padding: 8px 10px;
    border: 1px solid #CCC;
    border-radius: 3px;
    background: #fff;
    font: inherit;
    line-height: 1.5;
    color: #464646;
    resize: vertical;
    box-sizing: border-box;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.06);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

textarea.mline-tbox:focus {
    border-color: #00A1BE !important;
    box-shadow: 0 0 0 3px rgba(0,161,190,.2), inset 0 1px 1px rgba(0,0,0,.06);
    outline: 0;
}

textarea.mline-tbox[disabled],
textarea.mline-tbox[readonly] {
    background: #f5f5f5;
    color: #464646;
    cursor: not-allowed;
}
