body {
    margin: 0;
    width: 100%;
    height: 100vh;
}

.header {
    width: 100%;
    height: 60px;
    background-color: #444;
}

.map {
    width: 100%;
    height: calc(100% - 60px);
}

.dgis-icon {
    background-image: url(2gis.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;
    margin-left: 5px;
    display: inline-block;
    /*position: absolute;
    top: 10px;
    left: 20px;*/
}

.popup{
    min-width: 500px
}

.pin2 {
    position: absolute;
    top: 40%;
    left: 50%;
    margin-left: -15px;
    margin-top: -40px; 
    border-radius: 50%;
    background-color: #326fa8; 
    width: 75px; 
    height: 75px;
    color: white; 
    text-align: center;
    font-size: 30px
}

.pin2::after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    bottom: -20px;
    left: 50%; 
    transform: translateX(-50%); 
    border: 5px solid transparent;
    border-top: 15px solid #326fa8;
}


