.user-controls {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    height: auto;
    bottom: 3vh;
    right: 3vh;
    z-index: 50;
}

/* Color selector */
.color-selector.wrapper {
    position: relative;
    height: auto;
    min-height: 70px;
    width: auto;
    box-sizing: border-box;
    opacity: 0;
    overflow: hidden;
    margin: 0 auto;
}

.color-selector.back-panel {
    width: 100%;
    height: 30px;
    padding: 0;
    /*background: rgba(255, 255, 255, 0.5);
    border: solid 3px rgba(255, 255, 255, 0.3);*/
    border-radius: 40px;
    overflow: hidden;
    opacity: 0;
}

.current-color {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: .3rem 0;
    /*background: rgba(255, 255, 255, 0.3);
    border-radius: 100%;*/
}


.color-selector.button.Current.CurrentWhite {
    background: url("../assets/images/gui/1Colour_White_OFF.png") no-repeat;
    background-size: contain;
}

.color-selector.button.Current.CurrentBlue {
    background: url("../assets/images/gui/1Colour_Blue_OFF.png") no-repeat;
    background-size: contain;
}

.color-selector.button.Current.CurrentPink {
    background: url("../assets/images/gui/1Colour_Pink_OFF.png") no-repeat;
    background-size: contain;
}

.color-selector.button.Current.CurrentGrey {
    background: url("../assets/images/gui/1Colour_Black_OFF.png") no-repeat;
    background-size: contain;
}

.color-selector.button.Current.CurrentGreen {
    background: url("../assets/images/gui/1Colour_Green_OFF.png") no-repeat; 
    background-size: contain;
}

.color-selector.button {
    display: block;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 41px;
    height: 41px;
    margin: 5px 0;
    /*border-radius: 100%;*/
    cursor: pointer;
    /*border: 1px solid rgba(255,255,255, 0.3);*/
    opacity: 0;
}

.color-selector.button.white {
    background: url("../assets/images/gui/1Colour_White_OFF.png") no-repeat;
    background-size: contain;
}

.color-selector.button.white.active {
    background: url("../assets/images/gui/1Colour_White_ON.png") no-repeat;
    background-size: contain;
}

.color-selector.button.blue {
    background: url("../assets/images/gui/1Colour_Blue_OFF.png") no-repeat;
    background-size: contain;
}

.color-selector.button.blue.active {
    background: url("../assets/images/gui/1Colour_Blue_ON.png") no-repeat;
    background-size: contain;
}

.color-selector.button.pink {
    background: url("../assets/images/gui/1Colour_Pink_OFF.png") no-repeat;
    background-size: contain;
}

.color-selector.button.pink.active {
    background: url("../assets/images/gui/1Colour_Pink_ON.png") no-repeat;
    background-size: contain;
}

.color-selector.button.grey {
    background: url("../assets/images/gui/1Colour_Black_OFF.png") no-repeat;
    background-size: contain;
}

.color-selector.button.grey.active {
    background: url("../assets/images/gui/1Colour_Black_ON.png") no-repeat;
    background-size: contain;
}

.color-selector.button.green {
    background: url("../assets/images/gui/1Colour_Green_OFF.png") no-repeat;
    background-size: contain;
}

.color-selector.button.green.active {
    background: url("../assets/images/gui/1Colour_Green_ON.png") no-repeat;
    background-size: contain;
}

.available-colors {
    opacity: 0;
}

#arrow {
    position: absolute;
    width: 25px;
    height: 25px;
    left: 50%;
    bottom: 28%;
    transform: translateX(-50%) rotate(180deg);
    opacity: 0;
    cursor: pointer;
}

/*.color-selector.button.active {
    border: 2px solid grey;
}*/

.color-selector.button.Current {
    opacity: 1;
    background: url("../assets/images/gui/1Colour_Blue_ON.png") no-repeat;
    background-size: contain;
}

/* info button */
.info-button {
    z-index: 99;
    display: none;
    position: absolute;
    top: 3vh;
    right: 3vh;
    margin: 10px auto;
    width: 15vh;
    height: auto;
    cursor: pointer;
}

.hidden {
    display: none;
}

#movement-controls {
    transform: translateX(-50%);
    width: 38px;
    margin: 10px auto;
    display: flex;
    justify-content: flex-end;
    transition: 250ms;
}

.mode-switch-toggles, #movement-control-selector {
    display: flex;
}

#movement-mode-enter-button {
    background: url("../assets/images/gui/1Button_3D_OFF.png") no-repeat;
    background-size: contain;
    width: 41px;
    height: 41px;
}

#movement-mode-exit-button {
    background: url("../assets/images/gui/1Button_Tick_OFF.png") no-repeat;
    background-size: contain;
    width: 41px;
    height: 41px;
}

#plane-movement-mode-button {
    background: url("../assets/images/gui/1Button_Move_OFF.png") no-repeat;
    background-size: contain;
    width: 41px;
    height: 41px;
    margin-right: .5rem;
}

#height-movement-mode-button {
    background: url("../assets/images/gui/1Button_UpDown_OFF.png") no-repeat;
    background-size: contain;
    width: 41px;
    height: 41px;
    margin-right: .5rem;
}

#plane-movement-mode-button.active {
    background: url("../assets/images/gui/1Button_Move_ON.png") no-repeat;
    background-size: contain;
    width: 41px;
    height: 41px;
    margin-right: .5rem;
}

#height-movement-mode-button.active {
    background: url("../assets/images/gui/1Button_UpDown_ON.png") no-repeat;
    background-size: contain;
    width: 41px;
    height: 41px;
}