/* html,
body {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
}

body {
    position: relative;
} */

#vnc-container, 
.vnc-container {
    display: inline-block;
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.screen-container {
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0;
    background-image: url(../img/bg.svg), linear-gradient(#2299FF, #01579b);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.ui-container {
    display: block;
}

.ui-menu {
    margin: auto;
    /* z-index: 999; */
    width: 30%;
    min-width: 300px;
    height: 10%;
    max-height: 50px;
}

.ui-dialog {
    /* z-index: 99999; */
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.no-backdrop-blur {
    background-color:transparent;
    backdrop-filter:unset;
}

.ui-dialog > .panel {
    position: absolute;
    margin: auto;
    width: fit-content;
    height: fit-content;
    max-width: 85%;
    background-color: #00838f;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    min-width: 500px;
    box-shadow: 1px 1px 5px 0px #0097a7;
    border: solid 1px #00acc1;
}

.ui-dialog > .panel-error {
    background-color: #e91e63;
    box-shadow: 1px 1px 5px 0px #e91e63;
    border: solid 1px #ff7043;
}

.ui-dialog > .panel-warn {
    background-color: #ffb300;
    box-shadow: 1px 1px 5px 0px #ffeb3b;
    border: solid 1px #ffeb3b;
}

.ui-dialog > .panel > .footer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    padding: 5px;
    border-top: solid 1px #0093a5;
}

.ui-dialog > .panel-warn > .footer {
    border-top: solid 1px #fdd835;
}

.ui-dialog > .panel-error > .footer {
    border-top: solid 1px #ff5722;
}

.ui-dialog > .panel> .caption {
    color: white;
    font-size: 18px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 5px;
}

.ui-dialog > .panel> .caption > .title {
    flex-grow: 1;
    text-align: center;
}

.ui-dialog > .panel> .caption > .actions {
    display: flex;
    color: white;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.ui-dialog > .panel> .caption > .actions > .iconfont {
    font-size: 25px;
    line-height: 25px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    padding: 5px;
    background-color:transparent;
    transition: background-color 0.3s linear;
    border-radius: 50%;
}

.ui-dialog > .panel> .caption > .actions > .iconfont:hover{
    background-color: #1a237e80;
}

.ui-dialog-ele {
    color: white;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin: 10px
}

.ui-dialog-btn {
    background-color: #00bcd4;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-left: 6px;
    transition: all 0.3s linear;
}

.ui-dialog-btn:hover{
    filter: brightness(1.55);
}

.ui-dialog-btn:active{
    filter: brightness(0.75);
}

.ui-dialog-ele > label {
    text-align: right;
    padding-right: 8px;
    width: 120px;
}

.ui-dialog-ele > input,
 .ui-dialog-ele > textarea {
    line-height: 25px;
    flex-grow: 1;
    background-color: rgba(0, 0, 0 , 0.2);
    border: solid 1px #00acc1;
    outline: none;
    color: #fff;
    box-sizing: border-box;
}



.ui-dialog-ele > input{
    height: 25px;
}

.ui-dialog-ele > input:focus,
.ui-dialog-ele > textarea:focus
{
    border: solid 1px #b2ebf2;
    background-color: rgba(0, 0, 0 , 0.5);
}

.ui-dialog-ele > span {
    line-height: 25px;
    height: 25px;
    flex-grow: 1;
    white-space:nowrap; 
    text-overflow:ellipsis;
    overflow: hidden;
}
.ui-dialog-ele > .icon{
    width: 64px;
    padding: 10px;
    line-height: 64px;
    text-align: center;
    font-size: 64px;
    color: rgba(255, 255, 255 , 0.8);
}

.ui-dialog-ele > .message{
    flex-grow: 1;
}

.ui-dialog > .loading-panel {
    position: absolute;
    margin: auto;
    width: fit-content;
    height: fit-content;
    max-width: 85%;
    max-height: 85%;
    background-color: #00838f80;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    box-shadow: 1px 1px 5px 0px #0097a7;
    border: solid 1px #00acc1;
    padding: 15px;
}

.ui-dialog > .loading-panel > .title {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    color: white;
}

.ui-dialog > .loading-panel > .loading-style-circle + .title{
    line-height: 200px;
}

.ui-dialog > .loading-panel > .loading-style-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.ui-dialog > .loading-panel > .loading-style-circle > div {
    width: 100%;
    height: 100%;
    position: absolute;
    animation: loading-style-circle 2.08s linear infinite;
}
.ui-dialog > .loading-panel > .loading-style-circle > div > span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: lightgreen;
    position: absolute;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}

.ui-dialog > .loading-panel > .loading-style-circle > div:nth-child(1){
    animation-delay:0.2s;
}
.ui-dialog > .loading-panel > .loading-style-circle > div:nth-child(2){
    animation-delay:0.4s;
}
.ui-dialog > .loading-panel > .loading-style-circle > div:nth-child(3){
    animation-delay:0.6s;
}
.ui-dialog > .loading-panel > .loading-style-circle > div:nth-child(4){
    animation-delay:0.8s;
}
.ui-dialog > .loading-panel > .loading-style-circle > div:nth-child(5){
    animation-delay:1s;
}

@keyframes loading-style-circle{
    0%{
        transform: rotate(0deg);
    }
    10%{
        transform: rotate(45deg);
    }
    50%{
        opacity: 1;
        transform: rotate(160deg);
    }
    62%{
        opacity: 0;
    }
    65%{
        opacity: 0;
        transform: rotate(200deg);
    }
    90%{
        transform: rotate(340deg);
    }
    100%{
        transform: rotate(360deg);
    }
}


.ui-dialog > .loading-panel > .loading-style-linear + .title{
    line-height: 60px;
}

.ui-dialog > .loading-panel > .loading-style-linear {
    width: 200px;
    height: 60px;
    margin: 0 auto;
    margin-top: 100px;
    position: relative;
}
.ui-dialog > .loading-panel > .loading-style-linear > span{
    width: 50px;
    height: 30px;
    border-radius: 50%;
    background: lightgreen;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    overflow: hidden;
    animation: loading-style-linear 2.08s linear infinite;
}
@keyframes loading-style-linear{
    0%,100%{
        -webkit-transform: translate(70px);
    }
    20%{
        width: 50px;
        height: 30px;
        margin-top:-15px;
        -webkit-transform: translate(0px);
    }
    30%{
        width: 20px;
        height: 60px;
        margin-top:-30px;
        -webkit-transform: translate(0px);
    }
    35%{
        width: 50px;
        height: 30px;
        margin-top:-15px;
        -webkit-transform: translate(5px);
        background: lightblue;
    }
    70%{
        width: 50px;
        height: 30px;
        margin-top:-15px;
        -webkit-transform: translate(160px);
    }
    80%{
        width: 20px;
        height: 60px;
        margin-top:-30px;
        -webkit-transform: translate(160px);
    }
    85%{
        width: 50px;
        height: 30px;
        margin-top:-15px;
        -webkit-transform: translate(155px);
        background: lightgreen;
    }
}

.ui-dialog > .loading-panel > .loading-style-process + .title{
    line-height: 60px;
}

.ui-dialog > .loading-panel > .loading-style-process {
    width: 150px;
    height: 8px;
    border-radius: 4px;
    margin: 0 auto;
    margin-top:100px;
    position: relative;
    background: lightblue;
    overflow: hidden;
}
.ui-dialog > .loading-panel > .loading-style-process > span{
    display:block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    background: lightgreen;
    animation: loading-style-process 4s linear infinite;
}
@keyframes loading-style-process{
    0%{
        transform: translate(-150px);
    }
    50%{
        transform: translate(0);
    }
    100%{
        transform: translate(150px);
    }
}

.tool-bar {
    /* z-index: 100; */
    display: flex;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 50%;
    height: 32px;
    width: auto;
    transform: translate(-50%, 0%);
    background-color: #243749;
    border: #2196f342 solid 1px;
    color: white;
    transition: all 0.5s ease-out;
    box-shadow: 0px 0px 10px 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000;
}

.tool-bar-shrink{
    transform: translate(-50%, -100%);
    visibility: hidden;
}

.btn-shrink {
    width: 16px !important;
    height: 100% !important;
    overflow: hidden !important;
}

.btn-shrink > .iconfont{
    font-size: 16px !important;
}

.tool-bar-handle{
    /* z-index: 99998; */
    display: block;
    visibility: hidden;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 50%;
    height: 16px;
    width: 32px;
    transform: translate(-50%, -100%);
    background-color: #243749;
    color: white;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0px 0px 10px 1px #00e5ff, 0 0 1px #00e5ff, 0 0 1px #00e5ff, 0 0 1px #00e5ff, 0 0 1px #00e5ff, 0 0 1px #00e5ff, 0 0 1px #00e5ff;
    transition: all 0.5s ease-in;
}

.tool-bar-handle-expanded{
    visibility: visible !important;
    transform: translate(-50%, 0%) !important;
}

.tool-bar-handle:hover{
    filter: brightness(1.75);
}

.tool-bar-handle:active{
    filter: brightness(0.75);
}

.tool-bar .tool-bar-button > span {
    font-size: 22px;
    position: relative;
}

.tool-bar-button {
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    transition: background-color 0.1s linear;
}

.tool-bar-button:hover{
    background-color: #2196f3;
}
.tool-bar-button:active{
    background-color: #0d47a1;
}


.icon-down{
    width: 10px; height: 10px;
    background-size: 100%;
    background:url('data:image/svg+xml;utf8,<svg  version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11115" width="10" height="10"><path d="M873.6 419.2l-355.2-361.6c-9.6-9.6-22.4-9.6-32 0l-355.2 368c-9.6 9.6-9.6 22.4 0 32 9.6 9.6 22.4 9.6 32 0l316.8-329.6 0 828.8c0 12.8 9.6 22.4 22.4 22.4s22.4-9.6 22.4-22.4l0-822.4 310.4 316.8c9.6 9.6 22.4 9.6 32 0C883.2 441.6 883.2 425.6 873.6 419.2z" p-id="11116" fill="#ffffff"></path></svg>')
}



.text-primary {
    font-size: 14px;
    line-height: 1.5;
    color: white;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    transition: color .3s ease;
    margin: 0;
}


.wimi-process-cover{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}

.wimi-process-cover > .file-filter::before{
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    filter: blur(20px);
    z-index: -1;
    margin: -30px;
}

.wimi-process-cover > .file-content{
    color: white;
    height: 30px;
    max-width: 80%;
    left: 50%;
    top: 50%;
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    background-color: #2196f345;
    border-radius: 15px;
    font-size: 18px;
    line-height: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;    
    padding: 10px;
    width: fit-content;
}

.wimi-process{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 18px;
    right: 0;
    background-color: #00567d;
    border: solid 1px #00bcd4;
    box-sizing: border-box;
}

.wimi-process > .value{    
    width: 0%;
    background-color: #00bcd4;
    height: 100%;
    display: block;
    transition: 0.5s;
    box-shadow: 0px 0px 10px 1px #00e5ff, 0 0 1px #00e5ff, 0 0 1px #00e5ff, 0 0 1px #00e5ff, 0 0 1px #00e5ff, 0 0 1px #00e5ff, 0 0 1px #00e5ff;
}

.wimi-process > .value > .text{
    height: 100%;
    line-height: 100%;
    color: white;
    text-align: right;
    display: block;
    padding-right: 5px;
}

.wimi-select{
    position: relative;
    width: fit-content;
    height: 100%;
    overflow: hidden;
    background-color:inherit;
    color: white;
    padding: 5px;
    font-size: 16px;
    outline: none;
    border: #2196f342 solid 1px;
    border-bottom: none;
    box-sizing: border-box;
    transition: height 0.3s linear;
}

.wimi-select::after {
    visibility: visible;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent #0066b7;
    border-right: none;
}

.wimi-select:hover{
    background-color: #2196f3;
}

.wimi-select > .option {
    display: none;
    visibility: hidden;
    width: 100%;
    font-size: 16px;
    line-height: 16px;
    padding: 0px 10px;
    box-sizing: border-box;
    white-space:nowrap;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    color: white;
    transition: all 0.1s linear;
}

.wimi-select > .option[selected='true'] {
    display: block;
    visibility:visible;
}

.wimi-select.expanded{
    height: fit-content;
    overflow: visible;
    /* z-index: 9999; */
    border-bottom: #2196f342 solid 1px;
}

.wimi-select.expanded::after{
    visibility: hidden;
}

.wimi-select.expanded:hover{
    background-color: inherit !important;
}

.wimi-select.expanded > .option {
    visibility: visible;
    border-radius: 2px;
    display: block;
    line-height: 32px;
}

.wimi-select.expanded > .option[selected='true'] {
    background-color: #2196f3;
}

.wimi-select.expanded > .option:hover {
    background-color: #0093a5;
    transform: scale(1.1);
}

.wimi-select.expanded > .option:active {
    background-color: #001d20;
    transform: scale(1);
}

.wimi-select > select {
    display: none;
    visibility: hidden;
}

input[disabled]{
    background-color: #b7b7b7;
    color: #857676;
}
