

.inline-edit-overlay{
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0 , 0.6);
    z-index: 99979;
}

.on-inline-edit-overlay {
    position: relative;
    z-index: 99980;
}

.inline-edit-overlay-highlight{
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.2em;
    z-index: -1;
}

:not(.on-inline-edit-overlay).inline-editable:hover:after{
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    bottom: 0; right: 0;
    width: 100%; height: 100%;
    padding: 0.2em;
    transform: translate(-50%, -50%);
    border: 3px dotted rgba(150, 50, 50, 0.5);
    cursor: pointer;
}

.inline-editable .inline-edit-cp{
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.3em 0.3em 0 0.3em;
    transform: translateY(-100%);
    background-color: #ffffff;
    font-size: 18px;
    font-weight: normal;
}

.inline-editable .inline-edit-cp .ie-close-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px; height: 23px;
    position: absolute;
    top:0; right: 0px;
    transform-origin: bottom left;
    transform: translateY(-50%) translateX(50%);
    padding: 0.2em;
    background-color: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-blue);
    z-index: -1;
}
.inline-editable .inline-edit-cp .ie-close-btn:hover{
    color: var(--color-orange);
}

.inline-editable .inline-edit-cp .title{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    color: #FFFFFF;
    padding: 0.5em;
    font-size: 0.8em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    background-color: rgba(0,0,0,0.5);

}

.ie-default-text{
    color: #d0d0d0;
    font-family: "Courier New";
    font-weight: normal !important;
    font-style: italic;
}