@charset "UTF-8"; 

/* @import url('https://fonts.googleapis.com/css?family=Roboto&display=swap'); */

@font-face {
    font-family: "Proxima Nova Regular";
    font-display: swap;
    src: local('ProximaNova'), local('Proxima Nova'), url(./assets/ProximaNova-Regular.woff) format('woff');
}

@font-face {
    font-family: "Roboto"; /*   */
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'),
         url(./assets/Roboto-Regular.woff) format('woff'),
         url(./assets/Roboto-Regular.otf) format('opentype');
}

@font-face {
    font-family: "Roboto Light";
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'),
         url(./assets/Roboto-Light.woff) format('woff'),
         url(./assets/Roboto-Light.otf) format('opentype');
}

body {
    font-family: Open Sans;
    font-weight: normal;
}

#generator_app {
    min-width: 32em;
    display: block;
    margin: 3em;
    padding: 0.75em;
    border: 1px solid #000;
}

#logo {
    width: 100%;
    margin-bottom: 2em;
    }

#controls label {
    font-family: Open Sans;
    display: inline-block;
    width: 8em;
    text-align: right;
}

#controls select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-radius: 3px;
    background: #f0f0f0;
    padding: 10px;
    margin: 5px;
    width: 100%;
    cursor: pointer;
    box-sizing: border-box;
}

#controls select option {
    color: #666;
}

#controls select::-ms-expand {
    display: none;
}

#controls select:focus::-ms-value {
    background-color: transparent;
}

#controls .select-wrapper {
    display: inline-block;
    position: relative;
    min-width: 17.25em;
    width: 1em;
}
#controls .select-wrapper::before {
    font-family: 'mfg_labs_iconsetregular'; /* Needs MFG Labs Iconset to be loaded (mfglabs_iconset.css) */
    color: #444;
    font-size: 20px;
    pointer-events: none;
    position: absolute;
    content: "\f004";
    right: 15px;
    top: 10px;
}

#controls input {
    border: none;
    border-radius: 3px;
    background: #f0f0f0;
    padding: 10px;
    margin: 5px;
    min-width: 16em;
}

#controls button {
    background: gray;
    display: inline-block;
    padding: 10px;
    margin-top: 10px;
    font-weight: bold;
    font-size: large;
    border-radius: 3px;
    cursor: pointer;
}

#controls button:hover {
    background: darkgreen;
}

#controls button:focus, button:active {
    background: gray;
    border: 2px solid darkgreen;
}

