
body {
    background-color: transparent;
}
.map {
    width: 100%;
    position: relative;
}
.mapWrap {
    min-height: 580px;
    max-width: 1440px;
    background-color: transparent;
    border-radius: 44px;
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 3.75px solid #658556;
}


.form-check {
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.warehouses {
    height: 22px;
}
input[type="checkbox"] { display: none; }
input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-right: 29px;
    font-family: "Segoe UI", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
    content: '';
    display: block;
    border-radius: 4px;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 0;
}
input[type="checkbox"] + label.delivery_point:before {
    border: 2px solid #cccccc;
}
input[type="checkbox"] + label.warehouses:before {
    border: 2px solid #cccccc;
}
input[type="checkbox"]:checked + label:before {
    border-radius: 4px;
    width: 22px;
    height: 22px;
    border: 0;
}

input[type="checkbox"]:checked + label.delivery_point:before {
    background: url("../img/check.svg") 0 0 no-repeat;
}
input[type="checkbox"]:checked + label.warehouses:before {
    background: url("../img/check2.svg") 0 0 no-repeat;
}
#map {
    background: rgba(0, 0, 0, 0);
    height: 600px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
    border-radius: 16px;
    position: absolute !important;
    bottom: -20px;
}



.content-body {
    font-family: lato, sans-serif;
    font-style: normal;
    font-weight: normal;
    page-break-inside: avoid;
    break-inside: avoid;
    font-size: 18px;
    padding-top: 8px;
    line-height: 22px;
}

.latitude_longitude {
    font-family: lato, sans-serif;
    font-style: normal;
    font-weight: normal;
    flex-wrap: wrap;
    padding-top: 8px;
    display: flex;
    flex-direction: row;
    color: #4e4e53;
    font-size: 13px;
    line-height: 16px;
}
.latitude {
    padding-right: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
    .delivery_points_warehouses {
        column-count: 1;
    }
    .form-check {
        justify-content: space-between;
        max-width: 750px;
    }

    .content_wrapper {
        padding: 0;
    }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
    .delivery_points_warehouses {
        column-count: 1;
    }
    .delivery_page_wrapper {
        padding: 12px;
    }
    .form-check {
        flex-direction: column;
    }
    .warehouses, .delivery_points{
        width: 100%;
        margin: 0 0 20px;
    }
    .content_wrapper {
        padding: 0;
    }
} 