* {
    margin: 0;
}

#content-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
}

#map-canvas {
    width: 100%;
    height: auto;
    z-index: 2;
    overflow: hidden;
}



#legend {
    display: flex;
    flex-direction: column;
    background-color: #dce6e6;
    width: 300px;
    height: auto;
    padding-top: 10px;
    /* uncomment to disable 'About These Maps' overlap */
    /*padding-bottom: 25px;*/
    line-height: 150%;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    overflow: auto;
    box-shadow: -2px 0px 10px 0px #6e6e6e;
    z-index: 3;
    color: #0f4d59;
}

#panel {
    height: 25px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

#address-search {
    height: 100%;
    width: calc(100% - 40px);
}

#address-search-btn {
    height: 100%;
    width: 34px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
}

form[name=mapControls] {
    overflow: auto;
    height: 100%;
}

#species-selectors {
    margin-left: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

#species-selectors > div {
    display: flex;
}

#species-selectors > div > p {
    margin-left: 6px;
    margin-right: 5px;
}

#species-selectors select {
    height: 25px;
}

select[name=scientificnames] {
    width: calc(100% - 12px);
    margin-bottom: 10px;
}

#data-collection {
    margin-bottom: 10px;
    margin-left: 10px;
}

.data-collection-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    margin-left: 2px;
}

.data-collection-row img {
    margin: 2px;
}

#map-overlay-menu {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

#map-overlay-menu > p {
    font-weight: bold;
}

.map-overlay-menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.map-overlay-menu-item p {
    margin-left: 7px;
}

#about-maps {
    font-weight: bold;
    font-size: 11px;
    position: fixed;
    height: 21px;
    margin-top: calc(100vh - 34px);
    margin-left: 10px;
}



#summary {
    background-color: #dcdce6;
    color: #294061;
    width: 280px;
    height: auto;
    padding: 10px;
    overflow: auto;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: -2px 0px 10px 0px #6e6e6e;
    z-index: 4;
}

select {
    border-radius: 2px;
    background: linear-gradient(white, #dfdfdf);
}


















/* Customize the label (the container) */
.checkbox-container {
    display: block;
    position: relative;
    cursor: pointer;
    height: 18px;
    width: 18px;
    margin-right: 8px;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background: linear-gradient(white, #dfdfdf);
    border-radius: 2px;
    box-shadow: 0px 0px 3px 0px #6e6e6e;
}

/* On mouse-over, add a grey background color */
.checkmark:hover {
    background: linear-gradient(#dfdfdf, #c9c9c9);
}



















/* Customize the label (the container) */
.radio-container {
    display: block;
    position: relative;
    height: 20px;
    width: 20px;
    cursor: pointer;
    /*margin-bottom: 10px;*/
}

/* Hide the browser's default radio button */
.radio-container input {
    position: absolute;
    opacity: 0;
}

/* Create a custom radio button */
.radio-skin {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background: linear-gradient(white, #dfdfdf);
    border-radius: 100%;
    box-shadow: 0px 0px 3px 0px #6e6e6e;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .radio-skin {
    background: linear-gradient(#dfdfdf, #c9c9c9);
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .radio-skin {
    background: linear-gradient(#2196F3, #0b80dd);
}

.disabled-div {
    pointer-events: none;
    opacity: 0.4;
}






.solar-sys {
    position: relative;
    background-color: #ff7c00;
    width: 10px;
    height: 10px;
    margin: 100px auto;
    border-radius: 50%;
}

.solar-sys:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: -10px;
    top: -5px;
    background-color: rgba(200, 12, 0, 0.78);
    transform-origin: 15px 10px;
    animation: axis 1s linear infinite;
}

.solar-sys:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: -25px;
    top: -15px;
    background-color: rgb(0,155,255);
    transform-origin: 30px 20px;
    animation: axis 2s linear infinite;
}

@keyframes axis {
    0% {
        transform: rotateZ(0deg) translate3d(0,0,0);
    }
    100% {
        transform: rotateZ(360deg) translate3d(0,0,0);
    }
}
