*{
    margin: 0;
    padding: 0;
    scrollbar-color: #190455 rgba(92, 218, 218, 0.671);
    scrollbar-width: thin;
}
body{
    font-family: Tahoma, Geneva, sans-serif;
    font-size: .8em;
}
#mapImg, #mapCanvas, #dotList div, #blipList div, #ExpCard, #toggleSidebar, .monke, .warning{
    position: absolute;
}
#mapImg:hover, #mapCanvas:hover{
    cursor: grab;
}
.dot {
    box-sizing: border-box;
    position: absolute;
    display: block;
    transform: rotate(45deg) scale(var(--ggs,1));
    width: 18px;
    height: 18px;
    border-radius: 100% 100% 0 100%;
    border: 2px solid;
    opacity: 80%;
    cursor: pointer;
}

.hiddenDot {
    box-sizing: border-box;
    position: absolute;
    display: block;
    transform: rotate(45deg) scale(var(--ggs,1));
    height: 9.5px;
    width: 9.5px;
    border-radius: 100% 100% 0 100%;
    border: 2px solid;
    opacity: 80%;
    cursor: not-allowed;
    opacity: 0.35;
}
.blip {
    height: 15px;
    width: 15px;
    border-radius: 3px;
    box-shadow: 1px 1px 1px black;
}

#ExpCard {
    background-color: white;
    text-align: center;
    /* border: 3px solid white; */
    border-radius: 1px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    user-select: none;
}
#sidebar, #toggleSidebar{
    position: fixed;
}
#sidebar {
    top: 20px;
    z-index: 9999;
    display: inline;
    background-color: rgba(216, 79, 120, 0.55);
    overflow: scroll;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 4px;
}
.p-head {
    font-family: 'Roboto', sans-serif;
    color: white;
    text-shadow: 1px 1px black, 1px 1px 1px black, 1px 1px 1px black;
}
#ExpCard{
    z-index: 9998; 
}
#ExpCard p {
    width: auto;
    padding: 2px;
}
#sidebar .head {
    background-color: rgba(3, 2, 2, 0.75);
    color: white;
    padding: 5px;
    cursor: pointer;
    border-radius: 5px;
    min-height: 20px;

}
#mapImg, #mapCanvas, #sidebar .head {
    user-select: none;
}
.row {
    display: flex;
    padding: 1px;
    cursor: pointer;
    border-radius: 2px;
}
.row:hover {
    background-color: rgba(139, 8, 78, 0.75);
}
#sidebar p, input[type="radio"] {
    padding: 2px 2px;
}
.sidebarBlock {
    padding: 4px;
    font-size: 15px;
    max-height: 200px;
    overflow: auto;

}
.bg {
    background-color: aliceblue;
}
input[type="text"] {
    overflow: hidden;
    font-size: 14px;
}
#toggleSidebar {
    margin: 1px;
    padding: 3px;
    border-radius: 5px;
    border: none;
    font-size: 8px;
    background-color: black;
    color: white;
}
#toggleSidebar:hover {
    background-color: rgb(194, 194, 194);
}
.checkboxes {
    text-align:center;
   }

  .checkboxes input{
    margin: 0px 0px 0px 0px;
   }

   .checkboxes label{
     margin: 0px 20px 0px 3px;
   }
input[type="button"]{
    background-color: grey;
    color: white;
    font-size: 12px;
    padding: 4px;
    margin: 1px;
    border: solid black;
    border-radius: 15%;
}
select{
    overflow: hidden;
    font-size: 12px;
}
.warning{
    color: aquamarine;
    overflow: visible;
    text-align: left;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(92, 218, 218, 0.671);
}
::-webkit-scrollbar-thumb {
    background: rgba(38, 44, 70, 0.712);
    border-radius: 5px;
    border-color: grey;
}
::-webkit-scrollbar-thumb:hover,  ::-webkit-scrollbar-thumb:active{
    background: #190455;
    box-shadow: 0px 0px 16px #2812e9;
}