form input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.6875rem;
    border: 0.063rem solid #e87722;
    border-radius: 0.5rem;
    height: 1.375rem;
    width: 1.375rem;
    min-width: 1.375rem;
}
.checkmark:hover {
    cursor: pointer;
}
form input[type="checkbox"]:checked ~ .checkmark > .dot {
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 100%;
    background-color: #e87722;
}
textarea {
    line-height: 1.5;
    max-height: calc(1.5em * 16);
    min-height: 6rem;
    overflow-y: auto;
    scrollbar-gutter: stable;
    resize: vertical;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    background-color: #f2f2f2;
    margin: 15% auto;
    padding: 1rem 3rem 2.5rem;
    width: 70%;
    max-width: 530px;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;

    p {
        color: #070401;
        padding-bottom: 0.5rem;
    }
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    height: 30px;
}

.close:hover {
    color: black;
}

#map {
    height: 528px;
    z-index: 0;
}
.leaflet-container .leaflet-popup-content {
    font-family: 'Inter';
}
.leaflet-container .leaflet-popup {
    position: absolute;
    text-align: center;
    margin-bottom: 37px;
    left: -169px !important;
}
.leaflet-container img.leaflet-tile {
    mix-blend-mode: normal !important;
    @media (-webkit-min-device-pixel-ratio: 1) {
        width: 258px !important;
        height: 258px !important;
    }
    @media (-webkit-min-device-pixel-ratio: 2) {
        width: 256px !important;
        height: 256px !important;
    }
}
