.form {
    z-index: 9;
    background-color: #f1f1f1;
    border: 1px solid #d3d3d3;
    text-align: center;
    min-height: 30px;
    min-width: 300px;
    max-width: 900px;

    pointer-events: all;
    font-family: Roboto,Arial,Tahoma,Verdana,sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,.5);
    /*
    line-height: 1.3;
    */
    overflow-y: auto;
    overflow-wrap: break-word;
    word-wrap: break-word;

    left: 35%;
    top: 4.3em;

}

/* Draggable */

.form {
/*  resize: both; */
    overflow: hidden;
    display: inline-block;
    position: sticky;
}

.form-header {
    height: 35px;
    cursor: move;
    z-index: 10;
    background-color: #2196f3;
    color: #fff;
    text-align: left;
}

.form-header span {
    height: 100%;
    display: inline-flex;
    align-items: center;
    border: 0 solid aqua;
    padding-left: 16px;
    font-size: larger;
}


/* Resizeable */

.form .resizer-left {
    width: 10px;
    height: 100%;
    background: transparent;
    position: absolute;
    left: -5px;
    bottom: 0;
    cursor: e-resize;
}

.form .resizer-right {
    width: 10px;
    height: 100%;
    background: transparent;
    position: absolute;
    right: -5px;
    bottom: 0;
    cursor: e-resize;
}

.form .resizer-top {
    width: 100%;
    height: 10px;
    background: transparent;
    position: absolute;
    right: 0;
    top: -5px;
    cursor: n-resize;
}

.form .resizer-bottom {
    width: 100%;
    height: 10px;
    background: transparent;
    position: absolute;
    right: 0;
    bottom: -5px;
    cursor: n-resize;
}

.form .resizer-both {
    width: 5px;
    height: 5px;
    background: transparent;
    z-index: 10;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: nw-resize;
}

.form * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Buttons */
.frm-button {
    width: 48px;
    padding: 0 2px;
    height: 100%;
    transition: opacity .1s cubic-bezier(0.4,0,1,1);
    overflow: hidden;

    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border: none;
    background-color: transparent;
}

.frm-button:hover {
    /*
	box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
	border: 1px solid #c6c6c6;
	color: #222;
	*/
}


.frm-button:not([aria-disabled=true]):not([disabled]):not([aria-hidden=true]) {
    cursor: pointer;
}

.frm-svg-shadow {
    stroke: var(--border-shadow-color);
    /*
	stroke: #000;
	*/
    stroke-opacity: .15;
    stroke-width: 2px;
    fill: none;
}
.frm-svg-fill {
	fill: #fff;
}


