.bar {
    display: grid;
    grid-template-columns: 40% 20% 40%;
    padding-left: 0px;
    margin-left: 0px;
    margin-top: -10px;
    width:  100%;
    height: 100 px;
    background-color: black;
    vertical-align: middle;
    text-align: center;
    color: aliceblue;
}

.popupGrid {
    display: grid;
    grid-template-columns: 25% auto auto auto 25%;
    width: 90%;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
}

.inputGrid {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    row-gap: 20px;
    width: 350px;
    margin: 20px auto 20px auto;
    font-size: large;
}

.inputGrid2 {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    row-gap: 2px;
    width: 350px;
    margin: 2px auto 2px auto;
    font-size: large;
}

.checkboxGrid1 {
    display: grid;
    grid-template-columns: 50% 50%;
    margin: auto;
    width: 70%;
}

.checkboxGrid2 {
    display: grid;
    grid-template-columns: 50% 50%;
    row-gap: -10px;
    margin-top: 15px;
}

.typeGrid {
    display: grid;
    margin-left: 10px;
    grid-template-columns: 35% 65%;
}

.buttons {
    grid-column: 3;
    margin-top: auto;
    margin-bottom: auto;
    text-align: right;
    margin-right: 20px;
}

.collected {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.map {
    grid-column: 1 / -2;
    z-index: 1;
    position: relative;
}

#popup-content {
    background-color: aliceblue;
    height: 600px;
    width: 400px;
    border-radius: 20px;
    text-align: center;
    overflow: auto;
}

#filter {
    grid-column: -2;
    font-family: 'Urbanist';
    background-color: aliceblue;
    z-index: 2;
    overflow: auto;
}

h1, h2, h3{
    text-align: center;
}

.textButton{
    width: 120px;
    height: 40px;
    border-radius: 10px;
    text-align: center;
    font-family: "Urbanist";
    font-size: medium;
}

.mainGrid {
    display: grid;
    height: 800px;
    grid-template-columns: repeat(5, 20%);
    grid-column-gap: 0px;
}

.filters {
    justify-content: center;
}

.countDisplay {
    margin-left: 8px;
}

.imagePreview {
    margin-top: 20px;
    width: 200px;
    height: 200px;
}

.outerIcon {
    width: 44px;
    height: 44px;
    padding-left: 0%;
}

.icons {
    width: 40px;
    height: 40px;
    padding: 0%;
}

.popcol1 {
    text-align: left;
}

.popcol2, .popcol3, .popcol4 {
    margin: auto;
}

.popcol5 {
    text-align: right;
}

.leftButton {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.rightButton {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

#abbrPopup {
    position: absolute;
    z-index: 3;
}

.checkbox {
    margin-right: 15px;
    margin-left: 15px;
    transform: scale(1.7);
}

.checkboxLabel {
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: left;
}

#yearDisplay {
    height: 40px;
    margin-top: 10px;
    margin-bottom: 5px;
}

#cycleButtons {
    text-align: center;
    margin-bottom: 10px;
}

#changeSize {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 20px;
    width: 44px;
    height: 44px;
    padding-left: 0%;
}

button {
    -webkit-appearance: none;
    padding-top: 0px;
}

#top {
    margin-top: 5px;
}

.switch-toggle {
    position: inline-block;
    margin-top: 20px;
    margin-left: 20px;
    width: 210px;
    height: 20px;
    float: left;
    background: #242729;
 }
 .switch-toggle input {
    position: relative;
    width: 70px;
    height: 20px;
    top: -20px;
    left: 0;
    opacity: 0;
 }
 .switch-toggle label {
    width: 70px;
    height: 20px;
    border: 0px;
    float:left;
    color: #fff;
 }