/*
    @author Reinis Buls
    @description Modula darbs
    @version 1.0.1
*/

html,body {
    height:100%;
    margin:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f3f4f6;
    shape-rendering: crispEdges;
}

svg {
    touch-action: none;
    border:1px solid #ddd;
    background:#120623;
}

#svg1 {
    width:400px;
    height:400px;
}

#svg2 {
    width:200px;
    height:200px;
}

#menu {
    width:200px;
    height:195px;
    background:#120623;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#menu::-webkit-scrollbar {
    display: none;
}

.menu_btn {
    width:180px;
    margin:2px 10px;
    cursor:pointer;
    background:#e7c058;
}

.draggable {
    cursor:move;
    mix-blend-mode:difference;
    fill:#e7c058;
}

.static {
    fill:#a6906d;
    mix-blend-mode:difference;
}



#popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 999;
}

#popupBox {
    background: white;
    padding: 20px;
    border-radius: 10px;
    min-width: 300px;
    text-align: center;
}

.hidden {
    display: none !important;
}

#popupButtons button {
    margin: 10px;
}