/*******************************************
 * First-time import progress bar
 *******************************************/

.import_helper {
    display: none;
    pointer-events: none;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, .8);
    box-shadow: 0 0 50px rgba(0, 0, 0, .2);
    text-align: center;
    white-space: nowrap;
    line-height: 1.6;
    color: #FFF;
    padding: 40px;
    font-size: 48px;
}

.import_progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background: royalblue;
    opacity: .8;
    width: 0;
}

/*******************************************
 * Management panel invisible button
 *******************************************/

.manage_container ,
.manage_version {
    z-index: 40000;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: transparent;
}
.manage_version{
    top:auto;
    bottom:0;
    direction:ltr;
    text-align:end;
}
.manage_version div{
    display:none;
    background:#000;
    color:#fff;
    font-size:20px;
    font-weight:bold;
    padding:5px;
}
.manage_version.visible{
    height:auto;
    width:auto;
}
.manage_version.visible div{
    display:block;
}

/*******************************************
 * Demo machine settings
 *******************************************/

.demo_machine_settings {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4000;
    display: flex;
    direction: ltr !important;
}

.demo_machine_settings > div {
    color: #FFF;
    font-size: 16px;
    text-shadow: 0 0 1px #000;
    padding: 3px 10px;
    border-radius: 0 0 5px 5px;
    background-color: rgba(0, 0, 0, .5);
    direction: ltr !important;
}

.demo_machine_settings > div ~ div {
    margin-left: 10px;
    direction: ltr !important;
}
