      @keyframes fade { 
        from { opacity: 0.1; } 
      }
      @keyframes fadeIn { 
        from { fill-opacity:0; } 
        to { fill-opacity:0.9; } 
      }
      .blinking {
        animation: 1s ease-out 0s 1 fadeIn;
        fill: red;
        fill-opacity: 1;
        transition: all 1s;

        /*animation: fade 1s infinite alternate;*/
      }   
      .blinking:hover {
        animation: 1s ease-out 0s 1 fadeIn;
        fill: red;
        fill-opacity: 1;
        transition: all 1s;

        /*animation: fade 1s infinite alternate;*/
      }   

      .leaflet-popup .leaflet-popup-content-wrapper {
        background: #85929e; /*#2c3e50;*/
        color:#fff;
        font-size:16px;
        line-height:24px;
      }

      .leaflet-popup .leaflet-popup-content-wrapper a {
        color:   #a3ff95 ;
        /*font-weight: bold; */
        text-decoration: underline;
      }
      .leaflet-popup .leaflet-popup-tip-container {
        width:30px;
        height:15px;
      }
      .leaflet-popup .leaflet-popup-tip {
        border-left:15px solid transparent;
        border-right:15px solid transparent;
        border-top:15px solid #2c3e50;
      }

      .leaflet-container a.leaflet-popup-close-button{
        font-size: 24px;
        width: 28px;
      }

      .opas_0_1{
        opacity: 0.1;
      }
      .opas_1{
        opacity: 1;
      }

      .row2:after {
          content: "";
          display: table;
          clear: both;
        }
      .row3:after {
          content: "";
          display: table;
          clear: both;
        }
      .dr_marker{
        cursor: pointer;
      }

      .leaflet-container.crosshair-cursor-enabled {
          cursor: crosshair !important;
      }
      .text-labels {
          margin-left: 12px !important;
          margin-top: 4px !important;
          font-size: 1em;
          font-weight: 480;
          width: 228px !important;
          color: #333333;
          display: none;
      }

      /*@media screen  and (max-width: 1979px)  {
        .mob_image {
          width: auto;
          height: auto;
        }
        .mob_image2 {
          width: 132px !important;
          height: 100% !important;

        }
      }*/
     
      @media screen and (max-width: 979px)  {
        .mob_image {
          width: 100%;
          height: 200px;
        }
        .mob_image2 {
          width: 92px;
          height: 100%;
        }
      }


      .css-icon {

        }

      .gps_ring { 
        border: 3px solid red;
         -webkit-border-radius: 30px;
         height: 38px;
         width: 38px;   
          -webkit-animation: pulsate 1s ease-out;
          -webkit-animation-iteration-count: infinite; 
          /*opacity: 0.0*/
      }
      
      @-webkit-keyframes pulsate {
            0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
            50% {opacity: 1.0;}
            100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
      }

      #graticule .grey {
        background: #333; /*#2c3e50;*/
      }
      #graticule .green {
        background: 'green'; /*#2c3e50;*/
      }


      /* shipfilter */
      .leaflet-control.custom-filter {
        position: relative;
      }

        .filter-menu {
          display: none;
          position: absolute;
          right: 30px; /* открытие влево */
          top: 35px;
          z-index: 1000;
          background: white;
          padding: 5px;
          border-radius: 8px;
          box-shadow: 0 0 5px rgba(0,0,0,0.3);
        }

        .filter-menu.open {
          display: block;
        }

        .filter-menu label {
          display: flex;
          align-items: center;
          gap: 6px;
          white-space: nowrap;
        }

      .custom-filter-icon {
        width: 30px;
        height: 30px;
        background: #0078ff;
        color: white;
        font-size: 20px;
        text-align: center;
        line-height: 30px;
        border-radius: 50%;
        cursor: pointer;
      }

      /* text label */
      .label {
        font-family: Arial, sans-serif;
        font-size: 14px;
        font-weight: bold;
        background: rgba(0, 0, 0, 0.15); /* почти прозрачный фон */
        color: white;
        border: 1px solid rgba(0, 0, 0, 0.3); /* тоже полупрозрачная граница */
        padding: 2px 6px;
        border-radius: 4px;
        white-space: nowrap;
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
      }