html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: forestgreen;
    border-radius: 50%;
    display: inline-block;
}

#map {
    width: 100%;
    height: 600px
}

#loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* make sure it's above the map */
}

.spinner {
    border: 8px solid #f3f3f3; /* Light gray */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#module {
}

#module p.collapse:not(.show) {
    display: block;
    height: 20px !important;
    overflow: hidden;
}
#module p.collapse {
    margin-bottom: 8px;
}

/*#module p.collapsing:not(.show) {
    height: 60px !important;
}*/

    #module #test[aria-expanded="false"]:after {
        content: '+ Show More';
    }

    #module #test[aria-expanded="true"]:after {
        content: '- Show Less';
    }
    #module #test {
        padding-top: 0px;
    }