.petition-list {
    margin-left: 299px
}

.petition-map-container {
    padding-bottom: 20px;
    position: relative;
}

.petition-map-container .petition-wrap {
    position: relative;
}

.petition-wrap .petition-map {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

.petition-wrap .petition-marker,
.petition-list-wrap .petition-marker {
    background: crimson;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    position: absolute;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    font-size: 0.9em;
}

.petition-wrap .petition-marker a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    cursor: pointer
}

.petition-wrap .m1 {
    left: 62.40%;
    top: 97.51%;
}

.petition-wrap .m2 {
    left: 27.34%;
    top: 42.40%;
}

.petition-wrap .m3 {
    left: 50.10%;
    top: 97.51%;
}

.petition-wrap .m4 {
    left: 90.23%;
    top: 97.51%;
}

.petition-wrap .m5 {
    left: 0.98%;
    top: 97.51%;
}

.petition-wrap .m6 {
    left: 65.14%;
    top: 60.08%;
}

.petition-wrap .m7 {
    left: 57.62%;
    top: 97.51%;
}

.petition-wrap .m8 {
    left: 7.32%;
    top: 97.51%;
}

.petition-wrap .m9 {
    left: 53.42%;
    top: 97.51%;
}

.petition-wrap .m10 {
    left: 56.25%;
    top: 55.38%;
}

.petition-wrap .m12 {
    left: 70.31%;
    top: 60.50%;
}

.petition-wrap .m13 {
    left: 67.77%;
    top: 47.79%;
}

.petition-wrap .m14 {
    left: 6.93%;
    top: 69.61%;
}

.petition-wrap .m15 {
    left: 9.77%;
    top: 97.51%;
}


.petition-wrap .petition-content-placement {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.petition-wrap .petition-content-wrap {
    box-shadow: 0 0 7px 7px rgba(0, 0, 0, .56);
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 5px;
    width: 75%;
    height: auto;
    border: 1px solid #000;
    display: none;
    z-index: 1000;
    pointer-events: auto;
    overflow: auto
}

.petition-wrap .petition-content-wrap .petition-marker {
    margin-top: 5px;
    margin-left: 5px;
    z-index: 1002;
}

.petition-wrap .petition-content-wrap .close-button {
    position: relative;
    float: right;
    margin-top: 5px;
    margin-right: 5px;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1002;
}

.petition-wrap .petition-content-wrap .petition-content {
    padding: 10px;
    display: none;
    pointer-events: auto;
    z-index: 1001;
}

.petition-list-wrap {
    display: none
}

.petition-list-wrap .petition-marker {
    position: static;
    display: inline-block;
    text-decoration: none;
}

.petition-list-wrap .petition-link {
    display: inline-flex;
    /* keeps marker + text on one line */
    align-items: center;
    /* vertically aligns nicely */
    color: blue;
    text-decoration: underline;
    gap: 0.4em;
    /* small space between marker and text */
}

.petition-list-wrap p {
    margin: 0.25em 0;
}


@media screen and (max-width:1034px) {

    .petition-list-wrap {
        display: block
    }
}

@media screen and (max-width:620px) {
    .petition-list {
        margin: 0;
        clear: both
    }

    .petition-wrap .petition-content-wrap {
        /* allow centering on viewport */
        position: fixed;
        /* box-shadow: 0 0 7px 7px rgba(0, 0, 0, .56); */
        /* border-radius: 5px; */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85vw;
        height: auto;
        max-height: 85vh;
        max-height: 85dvh;
        /* border: 1px solid #000; */
        /* display: none; */
        /* overflow-y: auto; */
    }

    body.no-scroll {
        overflow: hidden;
        touch-action: none;
        /* prevents iOS bounce scroll */
    }

}