.text_edit {
    overflow:hidden;
    width: 100%;
    resize: none;
   /* height: 500px;
    margin-top: 9%;*/
    box-shadow: none;
    border:0;
    font-family: Consolas,Monaco,monospace;
    font-size:13px;
}
.ed input[type=text]
{
border: 1px solid #ddd;
}
.ed_toolbar input[value=link] {
    text-decoration: underline !important;
}
#view_text {
    width: 100%;
    margin-bottom:10%;
}
.qt-dfw:before, i.mce-i-dfw:before, i.mce-i-fullscreen:before, i.mce-i-wp_fullscreen:before {
    content: "\f211";
}
textarea:focus {
    border-color: #5b9dd9;
    outline: 0;
    }
input.button.button-small {
    margin: 2px;
    font-size: 12px;
    height: 26px;
    line-height: 24px;
    padding: 0 8px 1px;
    color: #555;
    border-color: #ccc;
    background: #f7f7f7;
    box-shadow: 0 1px 0 #ccc;
    vertical-align: top;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
}
.ed_toolbars
{
/*  position: -webkit-sticky;
  position: sticky;
  top: 0; /* become sticky once touching top edge */
/*position: absolute; 
top: 10px;
padding-right: 35px; 
width: 100%;
border-bottom: 1px solid #ddd;
background: #f5f5f5;
/*min-height: 30px;*/
 margin-top: 10px;
}
#tagiddiv
{
    background: #ccc;
    height: 75px;
    line-height: 25px;
    margin-top: 10px;
    font-size: 30px;
    padding-left: 10px;
    position:-webkit-sticky; position:sticky; top:0;
}
#makeiddiv
{
    background: #ccc;
    height: 75px;
    line-height: 25px;
    margin-top: 10px;
    font-size: 30px;
    padding-left: 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 75px;
}
.divborderboth
{
padding:10px;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.divbordertop
{
padding:10px;
border-top: 1px solid #ddd;
}
.ed details {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: .5em .5em 0;
    margin-bottom:20px;
}

.ed summary {
    font-weight: bold;
    margin: -.5em -.5em 0;
    padding: .5em;
}

.ed details[open] {
    padding: .5em;
}

.ed details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: .5em;
}
.buttonstyle {
                background-color: #50c1e9;
                border: 1px solid rgba(0,0,0,.1);
                color: rgb(255,255,255);
                font-family: 'Varela Round', sans-serif;
                font-size: 1em;
                padding: .55em .9em;
                transition: all 400ms ease;
             }
.buttonstyle:hover{
       background-color: #1bc5b3;
       cursor: pointer;
}
input[type=text], select, textarea{
  width: 100%;
  padding: 10px 90px 10px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}
.row-actions {
    color: #957cdc;
    font-size: 13px;
    position: relative;
    cursor:pointer;
}
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #9e9e9e99;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.autocomplete-suggestions { border: 1px solid #999; background: #fff; cursor: default; overflow: auto; }
.autocomplete-suggestion { padding: 10px 5px; font-size: 1.2em; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { background: #f0f0f0; }
.autocomplete-suggestions strong { font-weight: normal; color: #3399ff; }