.full-screen-text-edit-box{
    height: 80vh;
}

.full-screen-text-edit-utils{
    position: absolute;
    width: 100%;
    height: 100px;
}

.full-screen-text-edit-utils-box{
    margin-left: 50px;
}

.full-screen-text-edit-utils-box span{
    margin-left: 10px;
}

.full-screen-text-edit-utils-box label{
    margin-right: 10px;
    margin-bottom: 0;
}


.full-screen-text-edit-80{
    height: 100%;
    overflow: hidden;
    line-height: 1;
}

.full-screen-text-edit-editable{
    height: 100%;
    width: 100%;
    font-size: 100px;
}

[contenteditable] {
    outline: 0px solid black;
}

[contenteditable]:hover {
    cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #001aff;
    height: 2px;
  }

  input[type="range"]::-moz-range-track {
    background: #001aff;
    height: 1px;
  }

  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    margin-top: -6.5px;
    background-color: white;
 }

 input[type=range] {
    accent-color: #001aff;
   }