.txte_holder {
  position: relative;
  width: 100%;
  border-radius: 20px;
  padding-bottom: 20px;
  background-color: white;
  z-index: 1;
  overflow: hidden;
  transition: ease 0.3s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
  max-width: 100%;
}

.txte_header {
  position: relative;
  width: calc(100% - 20px);
  padding: 10px 10px 10px 10px;
  background-color: #eaeaea;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.txte_toolbox_holder {
  position: relative;
  width: calc(100% - 20px);
  padding: 8px 10px 8px 10px;
  background-color: #f0e9ff99;
  min-height: 24px;
  display: flex;
  overflow-x: auto;
  align-items: center;
  flex-direction: row;
}

.txte_toolbox_group {
  position: relative;
  margin-right: 4px;
  border-right: 1px solid #cccccc;
  display: flex;
  height: 24px;
}

.txte_toolbox_bt {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  margin-right: 4px;
  font-size: 10px;
  transition: ease 0.3s;
  border-radius: 5px;
  opacity: 0.8;
}

.txte_toolbox_bt:active {
  background-color: #f8f8f8;
  opacity: 1;
}

.txte_textArea {
  position: relative;
  margin: 20px 10px 20px 10px;
  padding: 0px 10px 0px 10px;
  height: 140px;
  width: 100%;
  max-width: calc(100% - 40px);
  resize: none;
  outline: none;
  font-size: 16px;
  font-family: "Roboto", "Noto Sans Hebrew-light", sans-serif;
  font-weight: 300;
  color: black;
  transition: ease 0.3s;
  text-align: left;
  word-break: break-word;
  overflow-x: hidden;
  overflow-y: scroll;
  border: none;
}

.txte_expand_bt {
  position: relative;
  width: 42px;
  height: 26px;
  border: 1px solid #4081ff;
  border-radius: 20px;
  transition: ease 0.3s;
}

.txte_expand_arrow_up {
  position: absolute;
  top: 7px;
  left: 21px;
  width: 6px;
  height: 6px;
  background: url(/src/textEditor/expand_arrow_up.svg) center no-repeat;
  background-size: 6px 6px;
  transition: ease 0.3s;
}

.txte_expand_arrow_down {
  position: absolute;
  left: 15px;
  top: 13px;
  width: 6px;
  height: 6px;
  background: url(/src/textEditor/expand_arrow_down.svg) center no-repeat;
  background-size: 6px 6px;
  transition: ease 0.3s;
}

.txte_expand_bt:active .txte_expand_arrow_up {
  background: url(/src/textEditor/expand_arrow_up_hover.svg) center no-repeat;
  background-size: 6px 6px;
  transform: translate(2px, -2px);
}

.txte_expand_bt:active .txte_expand_arrow_down {
  background: url(/src/textEditor/expand_arrow_down_hover.svg) center no-repeat;
  background-size: 6px 6px;
  transform: translate(-2px, 2px);
}

.txte_expand_bt:active {
  background-color: #4081ff;
}

.txte_header_bt {
  position: relative;
  width: 42px;
  height: 26px;
  outline: none;
  border-radius: 20px;
  background-color: transparent;
  font-size: 12px;
  transition: ease 0.3s;
}

.txte_header_bt_positive {
  border: 1px solid #4081ff;
  color: white;
  width: 38px;
  height: 26px;
  background: url(/src/textEditor/v.svg) center no-repeat;
  background-size: 10px 14px;
  margin-right: 10px;
}

.txte_header_bt_negative {
  border: 1px solid #ff6464;
  color: white;
  background: url(/src/textEditor/x.svg) center no-repeat;
  background-size: 10px 10px;
}

.txte_header_bt_positive:active {
  background: url(/src/textEditor/v_hover.svg) center no-repeat;
  background-color: #4081ff;
  background-size: 10px 14px;
}

.txte_header_bt_negative:active {
  background: url(/src/textEditor/x_hover.svg) center no-repeat;
  background-size: 10px 10px;
  background-color: #ff6464;
}

texteditor {
  display: block;
  position: relative;
  max-width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .txte_expand_bt:hover .txte_expand_arrow_up {
    background: url(/src/textEditor/expand_arrow_up_hover.svg) center no-repeat;
    background-size: 6px 6px;
    transform: translate(2px, -2px);
  }
  .txte_expand_bt:hover .txte_expand_arrow_down {
    background: url(/src/textEditor/expand_arrow_down_hover.svg) center
      no-repeat;
    background-size: 6px 6px;
    transform: translate(-2px, 2px);
  }
  .txte_expand_bt:hover {
    background-color: #4081ff;
  }
  .txte_header_bt_positive:hover {
    background: url(/src/textEditor/v_hover.svg) center no-repeat;
    background-color: #4081ff;
    background-size: 10px 14px;
  }
  .txte_header_bt_negative:hover {
    background: url(/src/textEditor/x_hover.svg) center no-repeat;
    background-size: 10px 10px;
    background-color: #ff6464;
  }
  .txte_toolbox_bt:hover {
    background-color: #f8f8f8;
    opacity: 1;
  }
}

/* @media (max-width:1010px) and (min-width:0),
(max-width:1010px) and (min-device-width:0) {
    .txte_holder {
        width: calc(100% - 40px);
        left : 20px;
    }

}

@media (max-width:320px) and (min-width:0),
(max-width:320px) and (min-device-width:0) {
    .txte_holder {
        width: 280px;
        left : 20px;
        top  : 20px;
    }
} */
