.gdn-textarea {
    position: relative;
}

.gdn-textarea__label {
    display: block;
    font-size: 16px;
    line-height: 18px;
    color: #656C7D;
    margin: 0 0 5px;
    padding: 0 15px;
    font-weight: 400;
}

.gdn-textarea__field {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #BDC4D9;
    border-radius: 20px;
    padding: 15px;
    color: #101010;
    background: #FFF;
    font-weight: 600;
    transition: border-color .2s ease-in-out;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 22px;
    resize: none;
    scrollbar-width: thin;
    scrollbar-color: #BDC4D9 transparent;
}

.gdn-textarea__field::placeholder {
    font-weight: 400;
    color: #8D8D8D;
}

.gdn-textarea__field:focus,
.gdn-textarea__field:hover {
    border-color: #435B97;
    outline: none;
}

.gdn-textarea__field::-webkit-scrollbar {
    width: 5px;
}

.gdn-textarea__field::-webkit-scrollbar-track {
    background: transparent;
    padding: 10px 5px;
    border-radius: 10px;
}

.gdn-textarea__field::-webkit-scrollbar-thumb {
    background: #BDC4D9;
}

.gdn-textarea__field::-webkit-scrollbar-thumb:hover {
    background: #8596C1;
}

.gdn-textarea__resize {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gdn-textarea__resize::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: #2F4680;
    -webkit-mask: url("../../../images/icons/iconStretch.svg") center / contain no-repeat;
    mask: url("../../../images/icons/iconStretch.svg") center / contain no-repeat;
}

.gdn-textarea.is-error .gdn-textarea__field {
    border-color: #D01E1E;
}

.gdn-textarea.is-error .gdn-textarea__field:focus {
    box-shadow: 0 0 0 1px #D01E1E;
}

.gdn-textarea.is-disabled .gdn-textarea__field,
.gdn-textarea.is-disabled .gdn-textarea__field::placeholder {
    color: #5C5C5C;
}

.gdn-textarea.is-disabled .gdn-textarea__field {
    pointer-events: none;
    background: #F4F4F4;
    border-color: #DADADA;
}

.gdn-textarea.is-autoresize .gdn-textarea__field {
    overflow-y: hidden;
    scrollbar-width: none;
}