body{
    overflow: hidden;
}

a {
    color:inherit;
    text-decoration:none;
    line-height:25px;
}


#bgimg {
    z-index:-10;
    position:fixed;
    background-size:cover;
    background-repeat:no-repeat;
}


#container {
    position: absolute;
    top:0;
    left:0;
    height:100vh;
    width:100vw;
    display:table;
}

#cell {
    display:table-cell;
    vertical-align:middle;
    text-align:center;
}


.sqr {
    display:inline-block;
    width:150px;
    height:150px;
    margin:3px 1px;
    overflow:hidden;
    -moz-transition:all .25s ease-in-out;
    -webkit-transition:all .25s ease-in-out;
    -o-transition:all .25s ease-in-out;
    transition:all .25s ease-in-out;
    vertical-align:middle;
}

.content {
    margin:0 10px 0;
    line-height:25px;
}

span {
    width:inherit;
    height:inherit;
    line-height:150px;
    text-transform:uppercase;
}


#searchinput {
    width:130px;
    height:37px;
    margin-left:-10px;
    padding:0 10px;
    border:none;
}


#popup {
    position: absolute;
    z-index: 100;
    bottom: -200px;
    right: 15px;
    padding: 25px;
    -moz-transition:all .25s ease-in-out;
    -webkit-transition:all .25s ease-in-out;
    -o-transition:all .25s ease-in-out;
    transition:all .25s ease-in-out;
    text-align:left;
}


/* CONFIGMENU */

#configmenu_container {
    position:absolute;
    display:none;
    z-index:120;
    top:0;
    left:0;

    width:100vw;
    height:100vh;

    padding:110px;

    background-color:rgba(255,255,255,0.2);
    box-sizing:border-box;
}
#configmenu_container *:not(.wrapperheading):not(#heading) {
    box-sizing:border-box;
    font-family:Arial;
    font-size:14px;
}

#configmenu {
    width:100%;
    height:100%;

    background-color:#fffafa;
    box-shadow:0 0 15px rgba(0,0,0,0.5);
}

#heading {
    line-height:40px;
    font-size:20px;
    padding-left:10px;

    background-color:#ddd;
    border-bottom:1px solid #ccc;
}

#content {
    margin-top: -1px;
    height:calc(100% - 40px);
    overflow-y: auto;
}

.option {
    display:inline-block;
    width:100%;
    height:25px;

    line-height:25px;
    padding-left:40px;
}
#boolwrapper .option {
    width:50%;
}

#boolwrapper input[type="checkbox"] {
    margin:4px 20px 0 0;
    float:left;
}
#configmenu input[type="text"] {
    width:60%;
    margin:4px 40px 0 0;
    line-height:19px;
    padding:0 0 0 5px;
    border-radius:0;
    border:1px solid #ccc;
    float:right;
}


#boolwrapper {
    margin:40px 0;
}
#stylewrapper {
    margin:40px 0;
}
#extwrapper {
    margin:40px 0;
}

.wrapperheading {
    display:inline-block;
    margin-left:40px;
    margin-bottom:10px;
    font-size:20px;
}

.button {
    width:40px;
    height:40px;

    float:right;

    line-height:40px;
    text-align:center;
}
.button:hover {
    opacity:0.7;
}

#import {
    background-image:url("../img/import.png");
    background-color:#bb9999;
}
#importinput {
    display:none;
}

#export {
    background-image:url("../img/export.png");
    background-color:#9999bb;
}

#done {
    background-image:url("../img/done.png");
    background-color:#99bb99;
}

