pre {
    font-family: consolas, monospace;
}
.styled-table {
    border-collapse: collapse;/*
    margin: 25px 0; */
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
    background-color: #3b3c8c;
    color: #ffffff;
    text-align: left;
}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #3b3c8c;
}
.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #3b3c8c;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 2px;
}
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #3b3c8c; 
    border-radius: 0px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #3b3c8c; 
    border-radius: 0px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #3b3c8c; 
}

/* Firefox Scrollbar */
html, body, div {
    scrollbar-color: #3b3c8c grey;
    scrollbar-width: thin;
}

a[href^="http://maps.google.com/maps"]{display:none !important}
a[href^="https://maps.google.com/maps"]{display:none !important}

.gmnoprint a, .gmnoprint span, .gm-style-cc {
    display:none;
}
.gmnoprint div {
    background:none !important;
}

.marker-position {
    bottom: -18px;
    left: 0;
    position: relative;
}

#markerLayer img {
    animation: pulse .5s infinite alternate;
    -webkit-animation: pulse .5s infinite alternate;
    transform-origin: center;
    -webkit-transform-origin: center;
}

/* Animaitons */
keyframes pulse{
    to { 
        transform: scale(0.7);
        -webkit-transform: scale(0.7);  
    }
}

@-webkit-keyframes pulse{
    to { 
        transform: scale(0.7);
        -webkit-transform: scale(0.7);  
    }
}