.connecting {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000d9;
    z-index: 10;
    text-align: center;
    padding-top: 200px;
    color: #fff;
    font-size: 30px;
}

.player-info-row{
    margin-bottom: 20px;
}

.inline-badge{
    background: #69c500;
    padding: 2px 10px;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
}

.crumbs{
    margin-bottom: 20px;
}

.crumbs a {
    color: #777;
    text-decoration: none;
    cursor: pointer;
}

.crumbs a:before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin: 0 20px;
}

.crumbs a:first-child:before{
    content: "";
    margin: 0;
}

#scene-editor{
    aspect-ratio: 16 / 9;
    background: #555;
    margin: 0 auto;
    position:relative;
}

#scene-editor .edit-module{
    position: absolute;
    border: dashed 1px #fff;
    color: #fff;
    text-align: center;
}

.module-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #ffffff1f;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    font-size: 20px;
}



.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
    /* background: red; */
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
    /* background: red; */
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
    /* background: blue; */
}

span.mod-size {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 9px;
    font-weight: bold;
    background: #0000007a;
    padding: 1px 5px;
    border-radius: 5px 0 0 0;
    text-align: right;
    line-height: normal;
}

#action-bar button{
    margin-left: 15px;
}

.block-edit {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    line-height: normal;
    /* background: #000000a1; */
    padding: 5px 5px;
    border-radius: 0 0 0 10px;
}

.block-edit a{
    cursor: pointer;
}

a.act-del {
    color: #fff;
    background: #f00;
    padding: 1px 7px;
    border-radius: 4px;
    margin-left: 10px;
}

a.act-cfg {
    color: #585858;
    background: #cbcbcb;
    padding: 1px 7px;
    border-radius: 4px;
}

#scene-editor .edit-module.active {
    background: #557699;
}

#scene-editor .edit-module.active .block-edit {
    display: block;
}

#config-bar {
    position: fixed;
    top: 56px;
    right: 0;
    width: 25%;
    bottom: 0;
    background: #fff;
    box-shadow: -5px 4px 25px rgb(0 0 0 / 20%);
    padding: 20px 30px;
    z-index: 100;
    overflow: auto;
}
#asset_select {
    position: absolute;
    top: 0;
    right: 0;
    background: #6cc607;
    color: #fff;
    border: none;
    bottom: 0;
    border-radius: 4px;
    padding: 0 10px;
}

div#widget-list a,
div#asset-list a {
    cursor: pointer;
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
}

div#widget-list a:hover,
div#asset-list a:hover {
    background: #00000024;
}

.form-field {
    margin-bottom: 10px;
}

span.i-link {
    color: #0c6dfd;
    cursor: pointer;
}

span.i-link.act-activate {
    background: #fdaa0c;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1px 13px;
    border-radius: 28px;
    margin-right: 15px;
}

div#layer-list {
    background: #ddd;
    border-radius: 7px;
    position: absolute;
    left: 30px;
    width: 250px;
    padding: 3px 10px;
}

div#layer-list .layer {
    cursor: pointer;
    background: #fff;
    margin: 6px 0;
    padding: 5px 10px;
    border-radius: 3px;
}

div#layer-list .layer i{
    margin-right: 15px;
}

div#layer-list .layer.active {
    background: #0c6dfd36;
}