﻿.gv{
    padding:5px;
}
.gv-header-fixed {
    position: sticky;
    z-index: 1;
    top: 0;
}
.gv-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background-color: white;
}

.gvtool-container {
    display: flex;
    flex-direction:row;
    flex-wrap:nowrap;
    align-items: center;
    justify-content: space-around;
    background-color: white;
    /*border: solid 1px #CCC;*/
    padding: 5px;
    border-bottom: 0;
}

.gv-srarch-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    
}

.gv-button-circle {
    border: solid 1px #CCC;
    padding: 6px 8px;
    background-color: white;
    border-radius: 50%;
    margin: 1px;
}

    .gv-button-circle:hover {
        color: #50bded;
        border-color: #0079f2;
    }

    .gv-button-circle:focus {
        color: #50bded;
        border-color: #37abe6;
        background-color: #EEE;
    }

.gv-search-btn {
    border: solid 1px #000000;
    padding: 2px 3px;
    background-color: #333;
    border-radius: 50%;
    margin-left: -35px;
    opacity: .6;
}

    .gv-search-btn:hover {
        opacity:1;
    }

    .gv-search-btn:focus {
        background-color: #0079f2;
    }

.gv-search-btn.gv-clear {
    background-color: #666;
    margin-left: 5px;
    padding:5px;
}


    .gvicon {
        min-width: 20px;
    }

.gv-pop-panel {
    border: solid 1px #CCC;
    border-radius: 5px;
    padding: 10px 15px;
    position: fixed;
    top: 50px;
    left: 45%;
    z-index: 1001;
    background-color: white;
    width: auto;
    min-width: 200px;
}

.gv-pop-header {
    border-bottom: solid 1px #CCC;
    padding: 5px;
    display: flex;
    justify-content: space-between;
}

.gv-pop-body {
    overflow: auto;
    max-height: 60vh;
    border-bottom: solid 1px #CCC;
    padding: 5px;

}

.gv-pop-close {
    color: red;
    cursor: pointer;
    margin-right: -20px;
}

.gv-pop-close:hover {
    color: #b60707;
}

.gv-pop-footer {
    border-top: solid 1px #CCC;
    padding: 5px;
    display: flex;
    justify-content: right;
}

.gvbtn {
    background-color: #178bff;
    color: white;
    outline: none;
    border: solid 1px #0079f2;
    border-radius: 3px;
    margin-left: 2px;
}

    .gvbtn:focus {
        border: solid 1px #0079f2;
        box-shadow: 0px 0px 5px #0079f2;
    }

    .gvbtn:hover {
        background-color: #0079f2;
    }

    .gvbtn.reset {
        background-color: white;
        border: solid 1px #BBBBBB;
        color: #666666;
    }

        .gvbtn.reset:hover {
            background-color: #EEE;
        }

.pop-panel input[type=checkbox]:is(:checked):before {
    content: '☑';
    color: #178bff;
    font-size: 15pt;
    position: relative;
    top: -22px;
    left: -14px;
}

.pop-panel input[type=checkbox]:is(:checked):disabled:before {
    color: #99d0ba;
}

.pop-panel input[type=checkbox]:not(:checked):before {
    content: '☐';
    color: #178bff;
    font-size: 15pt;
    position: relative;
    top: -22px;
    left: -14px;
}

.pop-panel input[type=checkbox]:not(:checked):disabled:before {
    color: #CCC;
}

.pop-panel input[type=checkbox] {
    width: 0;
    height: 0;
}

.pop-panel input[type=checkbox] {
    margin-left: 10px;
}

    .pop-panel input[type=checkbox] + label {
        margin-left: 5px;
    }

    .pop-panel input[type=checkbox] + label {
        color: #666666;
    }

    .pop-panel input[type=checkbox]:disabled + label {
        color: #AAAAAA;
    }

    .pop-panel input[type=checkbox]:checked + label, input[type=radio]:checked + label {
        color: #178bff;
        font-weight: bold;
    }

.btn-sm {
    padding: 5px;
}
