.ui-suggest-cursor[data-v-16b086] {
    position: relative;
    display: inline-block;
}
.ui-suggest-cursor .suggestions[data-v-16b086] {
    position: absolute;
    border: 1px solid #ccc;
    background: white;
    padding: 10px;
    width: 100%;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
    z-index: 100000;
}
.ui-suggest-cursor .suggestions ul[data-v-16b086] {
    padding: 0;
    margin: 0;
    margin: -10px;
}
.ui-suggest-cursor .suggestions li[data-v-16b086] {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 5px 10px;
}
.ui-suggest-cursor .suggestions li.selected[data-v-16b086] {
  background: yellow;
}
.ui-suggest-cursor input[data-v-16b086] {
    border: 1px solid black;
    width: auto;
    display: inline-block;
}/** @common e5da0b-156d5c-494533-b53424/toast.css
 */

/** 
 * This layout sets the toast message on the left.
 **/
 .toast-container {
	position: fixed;
	right: 5px;
	top: 50px;
	background: white;
	z-index:100000;
}

.toast-message {
	padding: 5px;
	width: 200px;
	font-size: 120%;
	text-align: left;
	background: rgba(255,255,255,0.1);
	margin-bottom: 5px;
    box-shadow: 0 0 5px #aaa;
}
.toast-message-error {
	background: #B71C1C;
	color: white;
	white-space: pre-wrap;
}

.toast-message-success {
	background: rgb(35, 194, 7);
	color: white;
	white-space: pre-wrap;
}
/* @common e11e3d-98d579-b5c5c1-28784a/dialog.css
*/
.dialog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.35);

    z-index: 1000;
}
body.dialog-modal-overlay-active > *:not(.dialog-modal-overlay):not(.dialog-container) {
    filter: blur(5px) grayscale(60%);
}

.dialog-container {
    position: absolute;
    overflow: auto;
    /*
    width: 400px;
    height: 400px;
    */
    box-shadow: 0 0 10px #aaa;
    border: 1px solid #ddd;
    background-color: white;
    z-index: 1000;
}
body.dialog-modal-overlay-active .dialog-container {
    box-shadow: 0 0 20px #333;
}
.dialog-container .dialog-title {
    position: relative;
    padding: 20px 20px;
    font-size: 130%;
    border-bottom: 1px solid #ddd;
    background: white;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dialog-container .dialog-close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
    z-index: 1000;
}
.dialog-container .dialog-close:hover {
    background: #eee;
    cursor: pointer;
    border-radius: 10%;
}
.dialog-container .dialog-content {
    position: absolute;
    overflow: auto;

    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 20px;
}
.dialog-container.with-title .dialog-content {
    top: 75px;
}


.dialog-container .dialog-content pre {
    background: inherit;
    color: inherit;
    border: none;
}
