.staticlib-popup-content {
    margin: 1em;
    width: 80%;
}
.staticlib-popup {

    overflow: hidden;
    color: #4e5055;
    padding: 1em;
    box-shadow: 0px 4px 3px 0px rgba(0,0,0,0.1);
    border: 1px solid #d6d6d6;
 
    z-index: 1000;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 4px;

    margin-top: 20px;
    width: 100%;

    position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50%;

}

.staticlib input {
    min-width: 100% ;
}

.staticlib textarea {
   min-width: 100% ;
    min-height: 200px;
}

.staticlib.btn.selected {
    background-color: #fff;
    border: 2px solid #FF4F1F;
    color: #FF4F1F;

}
.staticlib.btn {
    background-color: #fff;
    border: 2px solid #4e5055;
    color:  #4e5055;

}

[v-cloak] {
    display: none !important;
}

.staticlib-hide {
    transition: opacity 2s ease-out;
    opacity: 0;
    display: none !important;
}

.staticlib-show {
    opacity:  0.60;
    transition: opacity 2s ease-in-out;
    display: block;
}