html,body{
    padding: 0;
    margin: 0;
}

canvas.pan{
    cursor: move;
}

#editor{
    display: none;
    position: absolute;
    left: 50px;
    top: 100px;
    width: 210px;

}
#editor .section{
    background: white;
    margin-top: 5px;
    padding: 5px;

}
#editor select{
    width: 150px;
    display: inline-block;
}
#editor button{
    display: inline-block;
}

#exportModal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px;
}

#exportModal:before{
    display: block;
    content: "";
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
}

#exportModal textarea{
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.4;

}

#exportModal button{
    position: absolute;
    top: 10px;
    right: 40px;
}

.properties.section{
    display: none;
}
.properties.section div.propertyContainer div{
    display: inline-block;
    width: 60%;
}

.properties.section div.propertyContainer input{
    display: inline-block;
    width: 40%;
}