﻿body {
}

.mm-node {
    position: relative;
    padding-left: 1rem
}

.mm-node-description {
    padding-left: 40px;
}

.mm-node-20-space {
    padding-left: 10px;
}

.mm-node-list {
    padding-left: 1rem;
    overflow: hidden;
}

    .mm-node-list.mm-list-close {
        height: 0;
    }

.mm-collapse-button {
    /*falls within the padding of mm-node class*/
    position: absolute;
    top: 0;
    left: 0;
}

    .mm-collapse-button.mm-collapse-button-default::before {
        font-weight: bold;
        font-family: FontAwesome;
        content: "\f068";
    }

    .mm-collapse-button.mm-collapse-button-default.mm-list-button-close-default::before {
        font-weight: bold;
        font-family: FontAwesome;
        content: "\f067";
    }

.mm-info-window-container {
    
}

.mm-info-window-controls {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.mm-info-window-status {
    font-weight: 600
}

.mm-info-window-prev-button {
    margin-right: 1rem;
    cursor: pointer;
}

.mm-info-window-next-button {
    margin-left: 1rem;
    cursor: pointer;
}

.mm-info-window-prev-button::before {
    content: "<<";
}

.mm-info-window-next-button::before {
    content: ">>";
}

.mm-node-feature-label {
    display: flex;
    align-items: center;
    min-width: 14px;
    min-height: 14px;
    margin-right: 5px;
    margin-left: 5px;
    float: right;
}

.mm-feature-button-base-default {
    background-color: lightgrey;
}

.mm-feature-button-active-default {
    background-color: green
}

.mm-node-flex-container {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-content: center;
}

.mm-node-features {
    display: flex;
    justify-content: flex-end;
    align-content: center;
    flex-direction: row-reverse;
}

.mm-feature-line {
    display: inline-block;
    height: 2px;
    min-height: 0;
}

.mm-feature-polygon {
    display: inline-block;
    border: 1px solid grey;
    background-color: rgba(255, 0, 0, 0.3);
}

.mm-feature-point {
    display: inline-block;
    border-radius: 50%;
    border: 1px solid grey;
}

.mm-feature-heatmap {
    display: inline-block;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff0000+0,00ff00+100 */
    background: #ff0000; /* Old browsers */
    background: -moz-linear-gradient(left, #ff0000 0%, #00ff00 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #ff0000 0%,#00ff00 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #ff0000 0%,#00ff00 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}


/* Checkboxes */
.mm-node-label {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    line-height: 24px;
    height: 24px;
    width: 100%;
    clear: both;
}

    .mm-node-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .mm-node-label .checkbox-custom {
        position: absolute;
        top: 0px;
        left: 10px;
        height: 24px;
        width: 24px;
        background-color: transparent;
        border-radius: 5px;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        border: 2px solid #1d1d1d;
    }


    .mm-node-label input:checked ~ .checkbox-custom {
        background-color: #FF920A;
        border-radius: 5px;
        -webkit-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
        opacity: 1;
        border: 2px solid #1d1d1d;
    }


    .mm-node-label .checkbox-custom::after {
        position: absolute;
        content: "";
        left: 12px;
        top: 12px;
        height: 0px;
        width: 0px;
        border-radius: 5px;
        border: solid #1d1d1d;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(0deg) scale(0);
        -ms-transform: rotate(0deg) scale(0);
        transform: rotate(0deg) scale(0);
        opacity: 1;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }


    .mm-node-label input:checked ~ .checkbox-custom::after {
        -webkit-transform: rotate(45deg) scale(1);
        -ms-transform: rotate(45deg) scale(1);
        transform: rotate(45deg) scale(1);
        opacity: 1;
        left: 8px;
        top: 3px;
        width: 6px;
        height: 12px;
        border: solid #1d1d1d;
        border-width: 0 2px 2px 0;
        background-color: transparent;
        border-radius: 0;
    }



    /* For Ripple Effect */
    .mm-node-label .checkbox-custom::before {
        position: absolute;
        content: "";
        left: 10px;
        top: 10px;
        width: 0px;
        height: 0px;
        border-radius: 5px;
        border: 2px solid #1d1d1d;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .mm-node-label input:checked ~ .checkbox-custom::before {
        left: -3px;
        top: -3px;
        width: 24px;
        height: 24px;
        border-radius: 5px;
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        opacity: 0;
        z-index: 999;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }