/*form {
    background: rgba(0,0,0,.3);
    padding: .5em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

svg {
    display: block;
    overflow: hidden;
    margin: 3em auto;
    height: 100vh;
    width: 100vw;
}*/

/*
* Custom Color Picker
*/
#color-picker {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 70%;
}
#color-picker input {
    display: none;
}
#color-picker label {
    display: inline-block;
    height: 30px;
    width: 30px;
    border: 2px solid #333333;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: -1px -1px 4px #555;
}
#color-picker input:checked + label {
    border: 2px solid #ffffff;
    box-shadow: 0px 0px 4px #fff;
} 
@media screen and (max-width: 767px) {
    #color-picker {
        width: 100%;
    }
    #color-picker .flex-break {
        display: none;
    }
}

#cm-coloring-book {
    padding: 0;
}

#toolbar {
    display: block;
    position: relative;
    background-color: var(--go-green);
    color: #ffffff;
    padding: 30px 1rem 0 1rem;
    z-index: 999999;
}
#toolbar input[type="color"] {
    border: 3px solid var(--go-green-dark);
    background-color: #ffffff;
    height: 2rem;
    width: 2rem;
    margin-left: 1rem;
    outline: none;
}

#reset-coloring-book {
    border-radius: 0;
    color: var(--go-green-dark);
    background-color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    outline: none;
    position: absolute;
    right: 10px;
    top: 10px;
}

#drawing {
    border: 2px solid var(--go-green);
    display: block;
    cursor: url('../assets/cursor/cursor.cur'), auto;
}
#drawing svg {
    display: block;
}

@media screen and (max-width: 767px) {
    #reset-coloring-book {
        font-size: 16px;
        padding:  5px 10px;
    }
}


.scroll-to-top {
    display: none !important;
}

.download-button-wrapper {
    width: 100%;
    text-align: center;
}
#download-this {
    display: inline-block;
    border: 1px solid var(--go-green-dark);
    color: var(--go-green-dark) !important;
    padding: 15px 35px;
    text-decoration: none !important;
    margin-top: 20px;
}


