@font-face {
    font-family: BrandonGrotesque;
    src: url(assets/fonts/717e2752d91b300762fd19e6f74b9913.woff);
}

* {
    margin: 0;
    padding: 0;
}

*::selection {
    color: none;
    background: none;
}
*::-moz-selection {
    color: none;
    background: none;
}

html, body {
    font-family: BrandonGrotesque;
    overflow: hidden;
}

#container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.webgl {
    outline: none;
    align-self: center;
}

#toolkit {
    width: 50%;
    padding-top: 100px;
}

#toolkit-container {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.toolkit-element {
    margin-bottom: 20px;
}

.toolkit-element-container {
    height: 0;
    overflow: hidden;
}

.toolkit-element-container.show {
    height: fit-content;
}

.toolkit-element-title {
    cursor: pointer;
}

.toolkit-element-title.show .arrow-down {
    transform: rotate(180deg);
}

#upload-bg {
    cursor: pointer;
    border: 1px solid black;
    padding: 10px 10px;
}

#upload-bg:hover {
    background-color: black;
    color: white
}

#download {
    font-family: BrandonGrotesque;
    font-size: 1em;
    cursor: pointer;
    background-color: white;
    border: 1px solid black;
    padding: 10px 15px;
    width: 100%;
}

#download:hover {
    background-color: black;
    color: white
}

#date, #name, #title {
    border: 1px solid black;
    padding: 10px;
    border-radius: 0px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 50%;
    height: 1px;
    background: #0c306f;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    cursor: pointer;
}
input[type="range"]:hover {
    opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #000;
}
input[type="range"]::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #000;
}

input[type="color"] {
    cursor: pointer;
    border: 0px solid black;
    background-color: white;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 0px;
}

/*# sourceMappingURL=main.css.map*/