
/* SEMCOG Icon */
#semcog_icon {
    width: 40px;
}

/* Drawing App Viewport */
#viewDiv {
    padding: 0;
    margin: 0;
    height: 60%;
    width: 98%;
}

/* Drawing App Buttons */
#buttonRow {
    position: absolute;      
    right: 30%;
    padding: 10px;
}

/* Testing Output */
#runTesting {
    width: 95%;
    height: 20%;
    text-wrap: wrap;
}

/* Map Summary */
#map-summary {
    overflow-y: auto; 
    font-size: 1.2em;
}

/* Change cursor to pointer for link-primary */
.link-primary:hover {
    cursor: pointer;
}

/* BMP Modal Body */
#bmpModalBody {
    overflow-y: auto;
    max-height: 300px;
}

/* Table Font Size */
table {
    font-size: 1.2em;
}




/* Percent Slider */
.percentSlider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.percentSlider:hover {
    opacity: 1;
}

.percentSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #04AA6D;
    cursor: pointer;
}

.percentSlider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #04AA6D;
    cursor: pointer;
}



/* Fade effect */
.fadeIn {
    visibility: visible;
    opacity: 1;
    transition: opacity 2s linear;
}
.fadeOut {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 2s, opacity 2s linear;
}

#about_page {
  display: block;
  position: fixed;
  z-index: 10000001;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
}

#about_page_content {
    position: absolute;
    z-index: 2000;
    background-color: white;
    padding: 50px;
    width: 80%;
    left: 10%;
    top: 5%;
    border-radius: 10px;
    text-align: left;
}


#about_page_content  span{
  vertical-align: super;
}