
    body {
        display: block;
        margin: 0px;
    }
    
    .listTs {
        margin-left: 220px;
    }
    .lists {
        background-image: url('files/img_map.jpg');
        height: 100px;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .lists_body{
        /*background-color:#fcfcfc;
        background-image: url('files/img_map.jpg');*/
        font-size:24px;
    }
    .topnav {
        overflow: hidden;
        background-color: #111;
        /*margin-left: 218px;*/
        margin-top: -48px;
        z-index: 0;
    }

    .topnav1 {
        overflow: hidden;
        background-color: #111;
        height: 48px;
        width: 218px;
        z-index: 0;
    }
    .topnav a {
        float: left;
        display: block;
        color: #fff;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }
    .topnav a:hover {
        background-color: #ddd;
        color: black;
        
    }
    .topnav a.active {
        background-color: #2196F3;
        color: white;
    }
    .topnav .login-container {
        float: right;
    }
    .topnav input {
        padding: 6px;
        margin-top: 8px;
        font-size: 17px;
        border: none;
        width: 120px;
    }
    .topnav .login-container button {
        float: right;
        padding: 6px 10px;
        margin-top: 8px;
        margin-right: 16px;
        background-color: #555;
        color: white;
        font-size: 17px;
        border: none;
        cursor: pointer;
    }
    .topnav .login-container button:hover {
        background-color: green;
    }
    
   
    
    
    
    @media screen and (max-width: 600px) {
        .topnav .login-container {
            overflow: hidden;
            float: none;
        }
        .topnav a,
        .topnav input[type=text],
        .topnav .login-container button {
            float: none;
            display: block;
            text-align: left;
            width: 100%;
            margin: 0;
            padding: 14px;
        }
        .topnav input[type=text] {
            border: 1px solid #ccc;
        }
    }


    .sidenav {
        height: 100%;
        width: 218px;
        position: fixed;
        z-index: 1;
        top: 48px;
        left: 0px;
        background-color: #111;
        overflow-x: hidden;
        padding-top: 0px;
      }
      
      .sidenav a {
        padding: 6px 8px 6px 16px;
        text-decoration: none;
        font-size: 18px;
        color: #818181;
        display: block;
      }
      .sidenav p {
        padding: 6px 8px 6px 16px;
        text-decoration: none;
        font-size: 18px;
        color: #fff;
        display: block;
      }
      
      .sidenav a:hover {
        color: #f1f1f1;
      }


/* Модальный (фон) */
.modal {
    display: none; /* Скрыто по умолчанию */
    position: fixed; /* Оставаться на месте */
    z-index: 1; /* Сидеть на вершине */
    padding-top: 100px; /* Расположение коробки */
    left: 0;
    top: 0;
    width: 100%; /* Полная ширина */
    height: 100%; /* Полная высота */
    overflow: auto; /* Включите прокрутку, если это необходимо */
    background-color: rgb(0,0,0); /* Цвет запасной вариант  */
    background-color: rgba(0,0,0,0.4); /*Черный с непрозрачностью */
  }
  
  /* Модальное содержание */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
  }
  
  /* Кнопка закрытия */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  

   
  #myTable {
    border-collapse: collapse;
    width: 80%;
    border: 1px solid #ddd;
    font-size: 14px;
    border-collapse: collapse;
    /*margin-left: 230px;*/
  }
  
  #myTable th, #myTable td {
    /*text-align: left;*/
    padding: 12px;
  }
  
  #myTable tr {
    border-bottom: 1px solid #ddd;
  }
  
  #myTable tr.header, #myTable tr:hover {
    background-color: #f1f1f1;
  }


  /* Колесико загрузки */
  #loader {
    position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 10px;
  height: 10px;
  margin: -75px 0 0 -75px;
  border: 10px solid #f3f3f3;
  border-radius: 50%;
  border-top: 10px solid #424242;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  display: none;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Всплывающая форма изменения по поиску */
.search_form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 2;
}