
* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}



html,
body {
    /* margin: 0; */
    /* padding: 40px; */
    font-family: 'Roboto', sans-serif;
    /* background-color: rgb(239, 239, 239); */

}


body {
    /* width: 90vw; */
    /* align-self: center;
    max-width: 1440px; */
    margin: 4vh 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* add logo class and make it responsive */
.logo {
    width: auto;
    max-width: 100px;
    display: block;
}

header {
    width: 100%;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
}

.size {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 10px;
}

.column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
    width: 100%;
}

.generator {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    /* justify-content: left; */
    /* align-items: top; */
}

.control {
    
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    width: 20vw;
    min-width: 280px;
    max-width: 340px;
    padding-right: 28px;
    /* margin-right: 20px; */
    /* border-right: 1px solid rgb(204, 204, 204); */
    /* height: 100%; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 6px;
    /* justify-content: space-between; */
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
}

/* inputs styled minimalistically with right straight corners */
input {
    border: 0px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
    border-radius: 0;
    padding: 4px;
    font-size: 1rem;
    width: 100%;
}



/* button styled in the same way with hover and focus states*/
button {
    border: 1px solid rgb(0, 0, 0);
    margin-top: 4px;
    /* margin-bottom: 16px; */
    border-radius: 0px;
    background-color: rgb(255, 255, 255);
    padding: 4px;
    font-size: 1rem;
    width: 100%;
    height: 40px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

/* hover state */
button:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

button:active {
    background-color: rgb(100, 100, 100);
    color: rgb(255, 255, 255);
}

/* selctor styled in the same way */
select {
    height: 40px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 0;
    /* margin-bottom: 16px; */
    padding: 4px;
    font-size: 1rem;
    width: 100%;
}

/* small labels */
label {
    font-size: 0.8rem;
    margin-top: 18px;
    margin-bottom: 2px;
    color: gray;
}
label:first-child {
    margin-top: 0;
}

canvas {
    display: block;
}

#canvasContainer {
    width: 80vw;
    /* height: 80vh; */
    /* padding: 0 20px; */
    /* border-left: 1px solid rgb(217, 217, 217); */
    background-color: rgb(255, 255, 255);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: top;
        -ms-flex-align: top;
            align-items: top;
    /* border-radius: 4px; */
    /* padding: 4px; */
    /* margin: 4px; */
    /* background-color: rgb(255, 255, 255); */
    /* box-shadow: 0 0 4px 0 rgb(0, 0, 0); */
}



/* #canvasContainer {
    width: 100%;
} */
/* -------------------SLIDER-------------------- */
input[type=range] {
    border: None;
    height: 28px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    animate: 0.2s;
    /* box-shadow: 1px 1px 1px #000000; */
    background: #0C1B29;
    border-radius: 0px;
    border: 0px solid #000000;
}

input[type=range]::-webkit-slider-thumb {
    /* box-shadow: 1px 1px 1px #000000; */
    border: 1px solid #000000;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -10px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #0C1B29;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 1px 1px 1px #000000;
    background: #0C1B29;
    border-radius: 0px;
    border: 0px solid #000000;
}

input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000;
    border: 0px solid #000000;
    height: 30px;
    width: 9px;
    border-radius: 0px;
    background: #000000;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #0C1B29;
    border: 0px solid #000000;
    border-radius: 0px;
    box-shadow: 1px 1px 1px #000000;
}

input[type=range]::-ms-fill-upper {
    background: #0C1B29;
    border: 0px solid #000000;
    border-radius: 0px;
    box-shadow: 1px 1px 1px #000000;
}

input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 1px 1px 1px #000000;
    border: 0px solid #000000;
    height: 30px;
    width: 9px;
    border-radius: 0px;
    background: #000000;
    cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
    background: #0C1B29;
}

input[type=range]:focus::-ms-fill-upper {
    background: #0C1B29;
}

option {
    font-size: 0.8rem;
    color: gray;
}

.checkBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    /* margin-top: 4px; */
    /* margin-bottom: 4px; */
}

input[type=checkbox] {
    width: auto;
    margin-right: 8px;
}

#defaultCanvas0 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    flex-direction: column;
    /* padding-left: 40px; */
    /* align-content: baseline; */
    max-width: 70vw;
    max-height: 80vh;
    align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            /* align-items: flex-start; */
    /* max-height: 60vh; */
}