/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
    background: transparent;
}

noscript {
    display: block;
    text-align: center;
    padding-top: 100px;
    font-size: 20px;
}

.v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

/* removes tap blinking on ios devices */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

form {
    padding: 20px;
    color: white;
    font-family: Arial;
    width: 300px;
}

.form-group {
    margin-bottom: 10px;
    padding: 3px;
    background: transparent;
    display: inline-block;
    text-align: center;
    width: calc(50% - 9px);
}

.form-group-block {
    margin-bottom: 10px;
    padding: 3px;
    background: transparent;
    display: block;
    text-align: center;
}

label {
    display: block;
    font-size: smaller;
    text-align: center;
    padding-bottom:4px;
    /* width: 100px; */
}

input {
    width: 45px;
    color: black;
    /* Set input text color to black */
    background-color: white;
    /* Set input background color to white */
    border: 1px solid black;
    padding: 4px;
    border-radius: 4px;
    font-size: medium;
    text-align: center;
}

input#pitch {
    width: 45px;
    color: black;
    /* Set input text color to black */
    background-color: white;
    /* Set input background color to white */
    border: 1px solid black;
    padding: 4px;
    border-radius: 4px;
    font-size: medium;
    text-align: center;
}

span#pitch-degree {
    font-size: smaller;
    width: 40px;
    display: inline-block;
}

select {
    width: 150px;
    border: 1px solid black;
    padding: 4px;
    border-radius: 4px;
    font-size: medium;
}

.submit-button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    margin: 10px 0;
    cursor: pointer;
}
#lengths {
    width: 350px;
    display: block;
}