body {
    margin: 0px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

#wrapper_all {
    height: 100%;
    width: 100%;
    overflow: hidden !important;
}

.gui{
    position: absolute;
  /*  overflow: hidden;*/
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}
.gui-left {
    left: 25%;
    top: 50%;
    transform: translateX(-50%), translateY(-50%);
}


.hidden {
    display: none !important;
}



#guiTextSelect{
    width: 100%;
}
.startConfigurationBtn {
    position: absolute;
    bottom: 5px;
    margin:5px;
    width: 100%;
    background-color: white;
    color: black;
    border: none;
}




.visibleBtn {
    position: relative;
    padding: 3px;
    border: none;
    word-break: break-all;
    flex: 1;
    background-color: rgba(211,211,211,0.8);
    border-right: lightgray solid 1px;
    border-left: lightgray solid 1px;
    color: black;
    transition: all 200ms ease-in-out;
}
.visibleBtn.current {
    color: white;
    background-color: rgba(0, 119, 186, 0.8);
}
.progressWrapper{
    width: 85vw;
    position: absolute;
    display: flex;
    flex-direction: row;
    left:15vw;
}

.visibleBtn:focus {
    outline: none !important;
}

.closeBtn {
    position: absolute;
    white-space: nowrap;
    border: none;
}



@media (min-width: 767.98px) { 
    
    
    .startConfigurationBtn {
        width: 50%;
        left:50%;
        transform: translateX(-50%);
    }

    .progressWrapper {
        width: 60vw;
    }
}
    
@media (max-width: 767.98px) { 
    .visibleBtn{
        font-size: 3vw;
    }

    


}