.map-simple {
    width: 100%;
    height: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.08), 0 2px 12px 0 rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
}
/*
@media (max-width: 805px) {

    .map-simple {
        border-radius: 8px;
    }
}

@media (max-width: 532px) {

    .map-simple {
        width: calc(100vw - 32px);
    }
}
*/
.map-simple #map-simple {
    width: 100%;
    height: 100%;
}

.map-simple-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: #fff;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.08), 0 2px 12px 0 rgba(0, 0, 0, 0.08);
}

.ymaps3x0--map-copyrights {
    display: none !important;
}

.map-simple-marker {
    transform: translate(-50%, -50%);
    position: relative;
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
}

.map-simple-marker:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.map-simple-marker-icon {
    position: absolute;
    top: 8px;
    left: 8px;
}

.map-simple-marker-caption {
    text-wrap: nowrap;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff,
    -1px 0 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, 0 1px 0 #fff;
    font-family: SF Pro Display;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;
}