/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: #007bff;
    background-image: -webkit-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #007bff;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    margin-top: 0;
}

.maxw-40px {
    max-width: 40px;
}
.maxh-40px {
    max-height: 40px;
}

.leaflet-container {
    width: 100%;
    height: 100vh;
}

/*You can use [title] selector as well*/
[data-title] {
    position: relative;
}

[data-title]:hover::before {
    content: attr(data-title);
    position: absolute;
    bottom: -26px;
    display: inline-block;
    padding: 3px 6px;
    border-radius: 2px;
    background: red;
    color: #fff;
    font-size: 22px;
    font-family: sans-serif;
    white-space: nowrap;
}

.clickplz {
    animation: btn 2s;
    -webkit-animation: btn 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes btn {
    0% {
        color: #8c8;
        background-color: #000;
        text-shadow: 0 0 9px rgba(255, 255, 144, 0);
    }
    50% {
        color: #fff;
        background-color: #0b0;
        text-shadow: 0 0 9px rgba(255, 255, 144, 0.75);
    }
    100% {
        color: #8c8;
        background-color: #000;
        text-shadow: 0 0 9px rgba(255, 255, 144, 0);
    }
}
@-webkit-keyframes btn {
    0% {
        color: #8c8;
        background-color: #000;
        text-shadow: 0 0 9px rgba(255, 255, 144, 0);
    }
    50% {
        color: #fff;
        background-color: #0b0;
        text-shadow: 0 0 9px rgba(255, 255, 144, 0.75);
    }
    100% {
        color: #8c8;
        background-color: #000;
        text-shadow: 0 0 9px rgba(255, 255, 144, 0);
    }
}

.modal-header .btnGrp {
    position: absolute;
    top: 8px;
    right: 10px;
}

.min {
    width: "100%";
    height: 50px;
    overflow: hidden !important;
    padding: 0px !important;
    margin: 0px;

    float: left;
    position: static !important;
}

.min .modal-dialog,
.min .modal-content {
    height: 100%;
    width: 100%;
    margin: 0px !important;
    padding: 0px !important;
}

.min .modal-header {
    height: 100%;
    width: 100%;
    margin: 0px !important;
    padding: 3px 5px !important;
}

.min .fa {
    font-size: 14px;
}

.min .menuTab {
    display: none;
}

.minmaxCon {
    height: 37px;
    bottom: 1px;
    left: 1px;
    position: fixed;
    right: 100px;
    z-index: 9999;
    display: none;
}

.card-header-fixed {
    position: fixed;
    top: 100;
    width: calc(100% - 280px);
    left: 100;
    z-index: 2;
    height: 50px;
}

.card-body-fixed {
    margin-top: 50px;
    height: calc(100vh - 198px);
    overflow: auto;
}