@charset "UTF-8";
.b-map-overlay {
    position: fixed;
    z-index: 10090;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}

.b-map-overlay__body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    width: 440px;
    background-color: #ffffff;
    padding: 160px 30px 30px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 100% auto;
    text-align: center;
    font-size: 12px;
    color: #8ea4b5;
    line-height: 18px;
}

.b-map-overlay__body_cancel {
    background-image: url(../img/cancel-form__bg.svg);
}

.b-map-overlay__body_cancel_client {
    background-image: url(../img/cancel-form__bg_client.svg);
}

.b-map-overlay__body_cancel_doc {
    background-image: url(../img/cancel-form__bg_doc.svg);
}

.b-map-overlay__body_delete {
    background-image: url(../img/remove__bg.svg);
}

.b-map-overlay__body_send {
    background-image: url(../img/send-form__bg.svg);
}

.b-map-overlay__body_send_client {
    background-image: url(../img/send-form__bg_client.svg);
}

.b-map-overlay__title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    color: #475364;
}

.b-map-overlay__buttons {
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b-map-overlay__buttons a, .b-map-overlay__buttons button {
    margin: 0 8px;
}