.sh-editor {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #ffffff;
    font-family: inherit;
}
.sh-editor__body {
    min-height: 240px;
    max-height: 400px;
    overflow-y: auto;
}
.sh-editor__toolbar {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}

.sh-editor__toolbar button {
    border: 1px solid #d0d0d0;
    background: #ffffff;
    color: #44424B;
    padding: 6px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    font-family: "Roboto", sans-serif !important;
}

.sh-editor__toolbar button.is-active {
    background: #5B330E !important;
}
.sh-editor__toolbar button.is-active svg path {
    fill: #ffffff !important;
}

.sh-editor__body {
    min-height: 180px;
    padding: 12px;
    font-size: 20px;
    line-height: 1.5;
    color: #44424B;
    max-height: 250px;
    font-family: "Roboto", sans-serif !important;
}

.sh-editor__body:focus {
    outline: none;
}

@media (max-width: 1660px) { 
    .sh-editor__body {
       font-size: 18px;    
    }

}