/* Blockly Styles included in toolbox_style.css */

/* Button Text (Telemetry, ect.) */

.buttonText {
    top: 7.5px;
    position: relative;
    font-size: 30px;
    font-weight: bolder;
    font-family: Jura;
    color: white;
    cursor: default;
}

.textNormal {
    color: grey;
    cursor: pointer;
    transition-duration: 0.4s;
}

.textNormal:hover {
    color: white;
}

/* White Divider */

.divider {
    width: 7.5px;
    height: 7.5px;
    display: inline-block;
    background-color: white;
    margin-left: 13.75px;
    margin-right: 13.75px;
    top: -3.5px;
    position: relative;
}

/* Loading Screen */

#programLoading {
    border: 1px solid white;
    position: absolute;
    top: 42.5px;
    background-color: #242424;
    z-index: 95;
}

/* Basic Overlay Styles */

#overlayInfo {
    height: 50%;
    background-color: #242424;
    border: 1px solid white;
    height: 200px;
    width: 400px;
    margin-bottom: 150px;
}

@keyframes showOverlayInfo {
    from {
        margin-bottom: 250px;
    }

    to {
        margin-bottom: 150px;
    }
}

@keyframes hideOverlayInfo {
    from {
        margin-bottom: 150px;
    }

    to {
        margin-bottom: 250px;
    }
}

.overlayBttn {
    float: right;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 100px;
    margin-right: 10px;
}