﻿:root {
    --white: #FFFFFF;
    --blue: #0093FF;
    --black: #8888;
    --pink: #E6007E;
    --darkpink: #AD005F;
    --green: #3E8800;
    --background: rgba(0,0,0,0.8); /*#564147;*/ /*#E6007E;*/
    --backgroundcomponent: rgba(0,0,0,0.8);
    --foreground: #FFFFFF; /*#BBD1EA;*/
    --backgroundaccent: lightgray; /*#8D757C;*/ /*#AD005F;*/
    --foregroundsoft: #B8DBD9; /*#888888;*/
    --button: #0093FF;
    --highlight: #2F4550;
    --foregroundgrey: #847F7F;
    --backgroundgrey: #BDA5AC; /*#525252;*/
    --font: #FFFFFF;
}

[v-cloak] {
    display: none;
}



html, body {
    height: 100%;
    width: 100%;
    font-family: Calibri;
    font-size: 18px;
    max-height: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

th, td {
    font-size: 18px;
    color: var(--font);
    padding: 1px 2px;
}

    th.active {
        color: #fff;
    }

        th.active .arrow {
            opacity: 1;
        }


tr.grid:nth-child(even) {
    background: var(--backgroundaccent)
}

a {
    color: var(--foreground)
}

.arrow {
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    margin-left: 5px;
    opacity: 0.66;
}

    .arrow.asc {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 4px solid #fff;
    }

    .arrow.dsc {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #fff;
    }

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 9999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: yellow;
}

    /* Transparent Overlay */
    .loading:before {
        content: '';
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background-color: rgba(255,255,255,0.3);*/
    }

    /* :not(:required) hides these rules from IE9 and below */
    .loading:not(:required) {
        /* hide "loading..." text */
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
    }

        .loading:not(:required):after {
            content: '';
            display: block;
            font-size: 10px;
            width: 1em;
            height: 1em;
            margin-top: -0.5em;
            -webkit-animation: spinner 1500ms infinite linear;
            -moz-animation: spinner 1500ms infinite linear;
            -ms-animation: spinner 1500ms infinite linear;
            -o-animation: spinner 1500ms infinite linear;
            animation: spinner 1500ms infinite linear;
            border-radius: 0.5em;
            -webkit-box-shadow: rgba(255,0,123, 0.75) 1.5em 0 0 0, rgba(255,0,123, 0.75) 1.1em 1.1em 0 0, rgba(255,0,123, 0.75) 0 1.5em 0 0, rgba(255,0,123, 0.75) -1.1em 1.1em 0 0, rgba(255,0,123, 0.5) -1.5em 0 0 0, rgba(255,0,123, 0.5) -1.1em -1.1em 0 0, rgba(255,0,123, 0.75) 0 -1.5em 0 0, rgba(255,0,123, 0.75) 1.1em -1.1em 0 0;
            box-shadow: rgba(255,0,123, 0.75) 1.5em 0 0 0, rgba(255,0,123, 0.75) 1.1em 1.1em 0 0, rgba(255,0,123, 0.75) 0 1.5em 0 0, rgba(255,0,123, 0.75) -1.1em 1.1em 0 0, rgba(255,0,123, 0.75) -1.5em 0 0 0, rgba(255,0,123, 0.75) -1.1em -1.1em 0 0, rgba(255,0,123, 0.75) 0 -1.5em 0 0, rgba(255,0,123, 0.75) 1.1em -1.1em 0 0;
        }

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.splitter {
    width: 100%;
    height: 100%;
    display: flex;
}

#seperator {
    cursor: col-resize;
    /*background: url(https://raw.githubusercontent.com/RickStrahl/jquery-resizable/master/assets/vsizegrip.png) center center no-repeat var(--black);*/
    background-color: var(--backgroundgrey);
    width: 5px;
    height: 100%;
    min-width: 10px;
}

#mapid {
    width: 100%;
    height: 100%;
    min-width: 10px;
    background-color: var(--backgroundgrey);
}

#second {
    background-color: var(--backgroundgrey);
    z-index: 11; /*above map - opacity?*/
    width: 400px;
    min-width: 10px;
}

.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}


h1 {
    margin: 0;
    line-height: 2;
    text-align: center;
}

h2 {
    margin: 0 0 .5em;
    font-weight: normal;
}

input.tab {
    position: absolute;
    opacity: 0;
    font-size: large;
    min-width: 200px;
    z-index: -1;
}

select {
    font-size: large;
}

.row {
    display: -webkit-box;
    display: flex;
}

    .row .col {
        -webkit-box-flex: 1;
        flex: 1;
    }

        .row .col:last-child {
            margin-left: 1em;
        }
/* Wizard styles*/
input.wizardstep {
    display: none;
}

.wizardstep-label {
    vertical-align: middle;
    display: inline-block;
    padding: 0.5em;
    background: var(--black);
    font-weight: bold;
    cursor: pointer;
    line-height: 2em;
    border: 2px solid var(--backgroundaccent);
    border-radius: 3em;
}

    .wizardstep-label:hover, .wizardstepnext:hover, .wizardstepprevious:hover {
        background: var(--pink);
    }

div.wizardstepnext {
    line-height: 1em;
    min-height: 1.5em;
    border: 2px solid var(--backgroundaccent);
    border-radius: 2em;
    padding: 0.5em;
    display: inline-block;
    content: "&gt;&gt;"
}

div.wizardstepprevious {
    line-height: 1em;
    border: 2px solid var(--backgroundaccent);
    border-radius: 2em;
    display: inline-block;
    padding: 0.5em;
    content: "&lt;&lt;"
}

input:checked + .wizardstep-label {
    background: var(--black);
    border-color: var(--pink);
}


.wizardstep-content {
    display: none;
}

input:checked + .wizardstep-content {
    display: block;
}


/* Accordion styles */
.tabs {
    /*border-radius: 8px;*/
    margin: 0px;
    overflow: hidden;
    /*box-shadow: 0 4px 4px -2px rgba(255,0,123, 0.5);*/
}

.tab {
    /*width: 100%;*/
    color: white;
    overflow: hidden;
}

.tab-label {
    vertical-align: middle;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 0.2em;
    background: var(--black);
    font-weight: bold;
    cursor: pointer;
    line-height: 2em;
    border-bottom: 1px solid var(--backgroundaccent);
    /* Icon */
}

    .tab-label:hover {
        background: var(--pink);
    }

    .tab-label::after {
        content: "\276F";
        width: 1em;
        height: 1em;
        /*text-align: center;*/
        -webkit-transition: all .35s;
        transition: all .35s;
    }

.tab-content {
    max-height: 0;
    text-align: right;
    padding: 0 1em;
    color: var(--font);
    background: var(--backgroundgrey);
    -webkit-transition: all .35s;
    transition: all .35s;
}

.tab-close {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: var(--black);
    cursor: pointer;
}

    .tab-close:hover {
        background: var(--black);
    }

input:checked + .tab-label {
    background: var(--black);
}

    input:checked + .tab-label::after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

input:checked ~ .tab-content {
    max-height: 100vh;
    padding: 1em;
}


#contextaction {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: var(--backgroundaccent);
    color: var(--font);
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 110px;
    font-size: 17px;
    opacity: 0.6;
}

    #contextaction.show {
        visibility: visible;
        /*-webkit-animation: fadein 0.5s, fadeout 0.5s;
        animation: fadein 0.5s, fadeout 0.5s;*/
    }


/*toaster*/
.snackbar {
    /*visibility: hidden;*/
    min-width: 250px;
    margin-left: -125px;
    background-color: var(--black);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1000000;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    max-height: 25vh;
    overflow-y: auto;
    display:none;
    opacity: 0.95;
}

    /*.snackbar.show {
        visibility: visible;*/
        /*-webkit-animation: fadein 0.5s, fadeout 0.5s;
        animation: fadein 0.5s, fadeout 0.5s;*/
    /*}*/

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.leaflet-tooltip {
    padding: 0px;
}

.leaflet-popup-content {
    width: fit-content;
}

/*input, select {
    font-size: 16px;
    padding: 10px 10px 10px 5px;
    display: inline-block;    
    border: none;
    border-bottom: 1px solid #757575;
}*/

table.grid {
    width: 100%;
    border: 1px solid var(--foregroundsoft)
}

/****  floating-Lable style start ****/
.floating-label {
    margin-top: 20px;
    position: relative;
    margin-bottom: 5px;
    margin-right: 10px;
    color: var(--foregroundsoft);
}

.floating-input, .floating-select {
    font-size: 18px;
    color: var(--foreground);
    padding: 4px 4px;
    display: block;
    width: 100%;
    background-color: transparent; /*var(--backgroundaccent);*/
    border: none;
    border-bottom: 1px solid var(--foreground);
}

option.floating-select {
    background-color: var(--backgroundaccent);
}

.floating-input:focus, .floating-select:focus {
    outline: none;
    border-bottom: 2px solid var(--foreground);
}

.floating-textarea {
    font-size: 18px;
    min-height: 30px;
    max-height: 260px;
    width: 100%;
    overflow: hidden;
    overflow-x: hidden;
}

label.floating {
    color: var(--foregroundsoft);
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    text-transform: uppercase;
}

.floating-input:focus ~ label, .floating-input:not(:placeholder-shown) ~ label {
    top: -18px;
    font-size: 14px;
    color: var(--foregroundsoft);
}

/*.floating-select:focus ~ label, .floating-select:not([textContent=""]) ~ label {
    top: -18px;
    font-size: 14px;
    color: #5264AE;
}*/

/* active state */
.floating-input:focus ~ .bar:before, .floating-input:focus ~ .bar:after, .floating-select:focus ~ .bar:before, .floating-select:focus ~ .bar:after {
    width: 50%;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* highlighter */
.highlight {
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.floating-input:focus ~ .highlight, .floating-select:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* animation */
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

/****  floating-Lable style end ****/

.filterpanel {
    position: absolute;
    width: 300px;
    height: calc(100vh - 103px);
    background-color: var(--backgroundaccent);
    opacity: 0.8;
    z-index: 10000;
    top: 103px;
    left: 101px;
    padding: 20px;
    color: var(--font);
    display: none;
}

.toprightpanel {
    position: absolute;
    width: 300px;
    height: calc(100vh - 103px);
    background-color: black;
    opacity: 0.8;
    z-index: 10008;
    top: 40px;
    right: 20px;
    padding: 20px;
    color: var(--font);
    display: none;
}

.leftpanel {
    position: absolute;
    width: fit-content;
    min-width: 100px;
    height: calc(100vh - 59px);
    background-color: black;
    opacity: 0.8;
    z-index: 5000;
    top: 58px;
    left: 0px;
    padding: 5px;
    color: var(--font);
    display: block;
    overflow-y: auto;
}

    .leftpanel .panel-title {
        display: none;
    }

.leftpanel-collapsed {
    position: absolute;
    width: 25px;
    height: calc(100vh - 59px);
    background-color: black;
    opacity: 0.8;
    z-index: 5000;
    top: 59px;
    left: 0px;
    padding: 5px;
    color: var(--font);
    display: block;
    overflow-y: auto;
}

    .leftpanel-collapsed .panel-title {
        writing-mode: vertical-lr;
        cursor: pointer;
    }

    .leftpanel-collapsed .panel-content {
        display: none
    }

.rightpanel {
    position: absolute;
    width: fit-content;
    min-width: 300px;
    height: calc(100vh - 59px);
    background-color: black;
    opacity: 0.8;
    padding: 5px;
    z-index: 10000;
    top: 58px;
    right: 0px;
    color: var(--font);
    display: block;
    overflow-y: auto;
}

    .rightpanel .panel-title {
        display: none;
    }

.rightpanel-collapsed {
    position: absolute;
    width: 25px;
    height: calc(100vh - 59px);
    background-color: black;
    opacity: 0.8;
    padding: 5px;
    z-index: 10000;
    top: 58px;
    right: 0px;
    color: var(--font);
    display: block;
    overflow-y: auto;
}

    .rightpanel-collapsed .panel-title {
        writing-mode: vertical-lr;
        cursor: pointer;
    }

    .rightpanel-collapsed .panel-content {
        display: none
    }


.bottompanel {
    position: absolute;
    width: 100%;
    min-width: 100px;
    /*    height: fit-content;
*/ background-color: var(--background);
    opacity: 0.8;
    padding: 0px;
    z-index: 10002;
    bottom: 0px;
    right: 0px;
    color: var(--font);
    display: block;
    /*overflow-y: auto;
    overflow-x: hidden;*/
}



div.content {
    background-color: var(--background);
    color: var(--foreground);
    /*margin: 1px;
    padding: 1px;*/
    height: calc(100vh - 60px);
}

.sidepanel {
    display: inline-block;
    vertical-align: top;
    margin: -5px -13px 0px 20px;
}

    .sidepanel a {
        background-color: var(--backgroundaccent);
        display: inline-block;
        width: 90px;
        vertical-align: top;
        text-align: left;
        /*margin: 35px -13px 5px 20px;*/
        padding: 10px 20px 10px 20px;
        top: 82px;
        border-bottom: 1px solid black;
        border-left: 1px solid var(--backgroundaccent);
        border-radius: 10px;
    }

    .sidepanel .router-link-active {
        background-color: var(--background);
    }

.topnav {
    overflow: hidden;
    display: inline-block;
    background-color: var(--background);
    margin-bottom: -10px;
    margin-left: 10px;
    margin-top: 10px;
}

    .topnav a {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 5px 14px 14px 14px;
        text-decoration: none;
        font-size: 17px;
        background-color: var(--backgroundaccent);
        border-radius: 10px;
        border-right: 1px solid black;
        box-shadow: black;
    }

        .topnav a:hover {
            background-color: #ddd;
            color: black;
        }

    .topnav .router-link-active {
        background-color: var(--background);
        color: white;
    }

    .topnav .icon {
        display: none;
    }

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive .icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
        }
}




/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 5001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: var(--backgroundaccent);
    color: black;
    fill-opacity: 1;
    margin: 10px auto; /* 15% from the top and centered */
    margin-bottom: 50px;
    padding: 20px;
    border: 2px solid #888;
    border-radius: 15px;
    width: 300px; /* Could be more or less, depending on screen size */
    z-index: 1002;
}

.modal-map {
    background-color: var(--backgroundcomponent);
    margin: 2% auto; /* 15% from the top and centered */
    border: 1px solid #888;
    width: 90vw;
}

.modal-mapcontainer {
    width: 90vw; /* Could be more or less, depending on screen size */
    height: 90vh;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    z-index: 100;
}

    .close:hover,
    .close:focus {
        color: var(--pink);
        text-decoration: none;
        cursor: pointer;
    }

.collapse-left {
    color: #aaa;
    /*float: left;*/
    font-size: 28px;
    font-weight: bold;
    z-index: 100;
}

    .collapse-left:hover,
    .collapse-left:focus {
        color: var(--pink);
        text-decoration: none;
        cursor: pointer;
    }

.collapse-right {
    color: #aaa;
    /*float: right;*/
    width: 100%;
    direction: rtl;
    font-size: 28px;
    font-weight: bold;
    z-index: 100;
}

    .collapse-right:hover,
    .collapse-right:focus {
        color: var(--pink);
        text-decoration: none;
        cursor: pointer;
    }

input[type="file"] {
    display: none;
}

button {
    vertical-align: top;
    font-size: 14pt;
    padding: 5px 10px;
    margin: 5px;
    font-family: Calibri;
    border-radius: 4px;
    background-color: var(--button);
    border: none;
    color: var(--foreground);
}

    button.small {
        padding: 0px 5px;
        font-size: 13pt;
        border-radius: 16px;
        line-height: 1;
    }

.custom-file-upload {
    font-size: 14pt;
    padding: 5px 10px;
    margin: 5px;
    font-family: Calibri;
    border-radius: 4px;
    background-color: var(--button);
    border: none;
    color: var(--foreground);
}

.tablinks {
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 0px;
    background-color: var(--backgroundaccent);
}

.multiselect__tags {
    border: none;
    background-color: var(--backgroundgrey);
    border-radius: 0px;
}

.multiselect__tag {
    background-color: var(--foregroundgrey);
    color: var(--font);
}

.multiselect__tag-icon:after {
    color: var(--font);
}

.plusknop {
    cursor: pointer;
    border: 1px solid white;
    line-height: 1.2;
    border-radius: 25px;
    width: 25px;
    height: 25px;
    text-align: center;
    vertical-align: middle;
    content: '+';
    display: inline-block;
}

.puntjesknop {
    cursor: pointer;
    border: 1px solid white;
    line-height: 0.8;
    border-radius: 25px;
    width: 25px;
    height: 25px;
    text-align: center;
    vertical-align: middle;
    content: '...';
    display: inline-block;
}

.floppyknop {
    cursor: pointer;
    border: 1px solid white;
    line-height: 1.4;
    border-radius: 25px;
    width: 25px;
    height: 25px;
    text-align: center;
    vertical-align: middle;
    content: '\🖫';
    display: inline-block;
}

.rondeknop {
    cursor: pointer;
    border: 2px solid black;
    /*    line-height: 1;
*/ border-radius: 25px;
    width: 25px;
    height: 25px;
    /*text-align: center;
    vertical-align: middle;*/
    display: inline-block;
}

    .rondeknop:first-child {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.rondeknopgroot {
    cursor: pointer;
    border: 2px solid black;
    line-height: 1.8;
    font-size: normal;
    font-weight: bold;
    border-radius: 35px;
    width: 35px;
    height: 35px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
}

@keyframes fade {
    from {
        opacity: 0.5;
    }
}

.blinking {
    animation: fade 1s infinite alternate;
}

.bigbutton {
    width: 20vw;
    /*height: 10vh;*/
    cursor: pointer;
    border: 2px solid white;
    border-radius: 15px;
    margin: 10px;
    padding: 10px;
    background-color: var(--backgroundgrey);
    display: inline-block;
    vertical-align: top;
}

.sidepanelTool {
    background-color: black;
    border: 2px solid white;
    border-radius: 8px;
    margin: 10px;
    margin: auto;
    padding: 10px;
    cursor: pointer;
}

.sidepanelTool-content {
}

.tile {
    width: 12vh;
    height: 12vh;
    /*height: 10vh;*/
    color: white;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 15px;
    margin: 10px;
    padding: 5px 10px;
    background-color: var(--backgroundgrey);
    display: inline-block;
    text-align: center;
    font-size: 1.5vh;
    vertical-align: middle;
}

.tilegroup {
    background-color: var(--backgroundaccent);
    padding: 10px;
    border: 2px solid white;
    border-radius: 15px;
    width: fit-content;
    color: white;
    display: inline-block;
    vertical-align: top;
    margin: 2vh;
}

.tileballoon {
    position: relative;
    margin: -20px;
    float: right;
    padding: 2px 8px;
    background-color: var(--pink);
    font-size: large;
    font-weight: bold;
    color: white;
    border: 1px solid white;
    border-radius: 20px;
    width: fit-content;
}

.textballoon {
    position: relative;
    margin: -20px;
    float: right;
    padding: 2px 8px;
    background-color: var(--pink);
    font-size: large;
    font-weight: bold;
    color: white;
    border: 1px solid white;
    border-radius: 20px;
    width: fit-content;
}

.dimmed {
    position: relative;
    cursor: none;
}

    .dimmed:after {
        content: " ";
        z-index: 10;
        display: block;
        position: absolute;
        height: calc(100% + 4px);
        top: 0;
        left: 0;
        right: 0;
        margin: -2px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.7);
    }

.risicobutton {
    border-radius: 30px;
    padding: 10px;
    width: fit-content;
    cursor: pointer;
    display: inline-block;
}

    .risicobutton.off {
        background-color: darkgrey;
    }

    .risicobutton.on {
        background-color: red;
    }

.tagbutton {
    border-radius: 10px;
    padding: 3px;
    font-size: x-small;
    width: fit-content;
    cursor: pointer;
    display: inline-block;
}

    .tagbutton.off {
        opacity: 0.3;
    }

    .tagbutton.on {
        opacity: 1;
    }

.touchrow {
    font-size: x-large;
    line-height: 2;
    cursor: pointer;
}

    .touchrow:hover {
        background-color: var(--pink)
    }

/*.leaflet-left {
    left: 15%;
    transform: translate(-15%, 0%);
}*/
/*override left/right positions with center top*/
.leaflet-left {
    left: 50%;
    transform: translateX(-50%,0%);
    display: inline-flex;
}

.leaflet-right {
    right: 50%;
    transform: translateX(-50%,0%);
}

.leaflet-control {
    height: fit-content;
}
/*.leaflet-right {
    right: 15%;
    transform: translate(-15%, 0%);
}*/


.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 17px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ca2222;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 17px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 13px;
        width: 13px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #2ab934;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(27px);
}

/*------ ADDED CSS ---------*/
.slider:after {
    content: 'uit';
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 40%;
    left: 70%;
    font-size: 11px;
}

input:checked + .slider:after {
    content: 'aan';
    left: 30%;
}

/*--------- END --------*/


.circular-menu {
    width: 70vw;
    height: 70vh;
    max-width: 600px;
    max-height: 600px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.circle {
    width: 70vw;
    height: 70vh;
    max-width: 600px;
    max-height: 600px;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.open.circle {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.circle a {
    text-decoration: none;
    color: var(--pink);
    display: block;
    height: 80px;
    width: 80px;
    line-height: 2;
    margin-left: -30px;
    margin-top: -30px;
    position: absolute;
    text-align: center;
}

    .circle a:hover {
        color: #eef;
    }

.circlebutton {
    width: 80px;
    height: 80px;
}

    .circlebutton img:hover {
        width: 100px;
    }



.menu-button {
    position: absolute;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
    text-decoration: none;
    text-align: center;
    color: #444;
    border-radius: 50%;
    display: block;
    height: 150px;
    width: 150px;
    line-height: 150px;
    padding: 10px;
    /*background: #dde;*/
}

    .menu-button:hover {
        /*background-color: #eef;*/
    }

.contextcircle {
    width: 250px;
    height: 250px;
    max-width: 600px;
    max-height: 600px;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.open.contextcircle {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.contextcircle a {
    text-decoration: none;
    color: var(--pink);
    display: block;
    height: 20px;
    width: 20px;
    line-height: 2;
    margin-left: -30px;
    margin-top: -30px;
    position: absolute;
    text-align: center;
}

    .contextcircle a:hover {
        color: #eef;
    }

.contextcirclebutton {
    width: 30px;
    height: 30px;
}

table.alternatinggrid {
    border-collapse: collapse;
    border-spacing: 0;
}

    table.alternatinggrid tr td {
        color: black;
        background-color: whitesmoke;
        line-height: 2;
        border-left: 1px solid #404040;
    }

        table.alternatinggrid tr td a {
            color: black;
            border-color: black;
            background-color: mediumpurple;
        }

    table.alternatinggrid tr th {
        position: sticky;
        top: 0;
        background-color: #404040;
    }

    table.alternatinggrid tr:nth-child(odd) {
    }

    table.alternatinggrid tr:nth-child(even) td {
        background-color: lightgray;
    }

table.itemview {
    border-collapse: collapse;
    border-spacing: 0;
}

    table.itemview tr td {
        color: black;
        background-color: lightgray;
        line-height: 2;
        padding: 5px;
    }

        table.itemview tr td input {
            width: 350px;
            border: none;
            line-height: 2;
        }

        table.itemview tr td textarea {
            width: 350px;
        }

.navigationlink {
    margin: 2px;
    text-decoration: underline;
    cursor: pointer;
}

    .navigationlink:hover {
        color: var(--pink);
    }

    .navigationlink.selected {
        border: 1px solid white;
    }
