.map {
    position: relative;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.map__textarea {
    position: absolute;
    z-index: 100;
    display:flex;
    flex-direction: column;
    max-height: 80%;
    max-width: 500px;
    padding: 1em 2em;
    background: var(--white);
    border-radius: 4px;
    font-family:'Inter';
    font-family: 500;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    left: 10vw;
}

.map-textarea__item {
    display:flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.map-textarea-item__image {
    width: 40px;
    height: 40px;
}

.map-textarea-item__col {
    display:flex;
    flex-direction: column;
    margin-left: 1.5rem;
}

.map-textarea-item__col > h3 {
    margin-bottom: 0;
    color: var(--semiBlack);
}

@media screen and (max-width: 1000px) {
    .map {
        flex-direction: column;
    }

    .map__textarea {
        position: static;
        box-shadow: none;
    }
}
