﻿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
}

.radiusInfo{
    color: white;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #a3cc4e;
    width: 12px;
    height: 12px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }