
body {
    margin: 0;
}

.wrapper {
    position: relative;
    max-height: 100vh;
    background-color: black;
    z-index: 99;
}

.cell {
    width: 50px;
    height: 50px;
    /*margin: 1px;*/

    float: left;
    /*transform: skewX(-20deg) translate(-20px, -20px);*/
}

.map {
    position: relative;
    z-index: 100;

    width: 10000px;
    height: 10000px;
    border: 1px solid black;

    /*position: absolute;*/
    top: 50%;
    left: 50%;
    /*transform: translateY(-50%) translateX(-50%) rotate(45deg) skewX(-25deg);*/
    transform: translateY(-50%) translateX(-50%) rotate(45deg) skewX(-25deg);
}

.wrap-center {
    position: relative;
    z-index: 99;

    margin: 0;
    width: 100vw;
    max-height: 100vh;
    bottom: 0px;
    left: 0px;
    background-color: black;

    overflow:hidden;
}

.col-green {
    background-color: green;
}

.col-blue {
    background-color: dodgerblue;
}

.col-yellow {
    background-color: sandybrown;
}

.col-brown {
    background-color: saddlebrown;
}

.col-white {
    background-color: white;
}

.minimap_panel {
    position: absolute;
    z-index: 500;
    width: 380px;
    height: 240px;
    bottom: 0px;
    left: 0px;
    background-color: darkgrey;
    border-top: 5px solid dimgray;
    border-right: 5px solid dimgray;
}

.minimap {
    width: 200px;
    height: 200px;
    border: 1px solid black;

    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(45deg) skewX(-25deg);*/
    transform: translate(95px, 15px) rotate(45deg) skewX(-25deg);
}

.minicell {
    width: 1px;
    height: 1px;
    /*margin: 1px;*/

    float: left;
    /*transform: skewX(-20deg) translate(-20px, -20px);*/
}