.editable_opp
{
    position: relative;
    border: 4px solid #ff5252;
    border-radius: 10px;
    padding: 3px;
    background-color: #232323;
    box-shadow: rgba(0,0,0,0.4) 2px 2px 2px inset;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre;
    color: white;
/*
    animation-name: clickboxra;
    animation-duration:  1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
*/

    margin-left: 4%;
    margin-right: 4%;
    height: 200px;
}

.opp
{
  bottom: 6%;
  position: absolute;
  width: 100%;
}
@keyframes clickboxra{
    100%{
      border: 4px solid #ff5252;
    }
    0%{
      border: 4px solid #ff2b2b;
    }
  }


@keyframes clickboxa{
    0%{
      border: 4px solid #ff5252;
    }
    100%{
      border: 4px solid #ff2b2b;
    }
  }
/*
.editable_opp:hover
{
  
    animation-name: clickboxa;
    animation-duration:  1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    
}*/

.editable_opp > textarea:focus
{
    outline: none;
}

.editable_opp > textarea
{
    position: relative;
    z-index: 1;
    border: none;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    height: 100px;
    text-align: left;
    resize: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    margin-left: -1px;
    margin-top: -69px;
    color: #00000000;
    caret-color: white;
    height: 200px;
}

#top_opp
{
    position: absolute;
    left: 4px;
    top: 5px;
    margin-top: 0px;
    pointer-events: none;
    color: red;
    z-index: 2;
}

#topgood_opp
{
    position: absolute;
    left: 4px;
    top: 5px;
    margin-top: 0px;
    pointer-events: none;
    color: green;
    z-index: 2;
}

.editable_opp::after
{
    position: absolute;
    left: 4px;
    top: 5px;
    content: attr(data-placeholder);
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

