body {
    margin: 1px;
    font-family: "Ubuntu", sans-serif;
  }
  .fullscreen {
    border: 1px solid black;
    font-size: 10px;
  }
  .map {
    height: 21vw;
    border: solid transparent 1px;
    box-shadow: 0 0 6px #0000004f;
    margin: 1px;
  }
  .title {
    text-align: center;
  }
  #container_total {
    grid-row: 1 / 3;
    grid-column: 1 / 3;
    height: 42.2vw;
  }
  
  #map_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lang_dropdown {
    position: fixed;
    right: 30px;
    /* top: 35px; */
    bottom: 30px;
    z-index: 1;
  }
  .lang_select {
    box-shadow: 0 0 9px 5px #ffffff7a;
    /* border: 1px solid; */
    border-radius: 7px;
    padding: 7px;
  }
  
  .loading {
    margin-top: 10em;
    text-align: center;
    color: gray;
  }
  .rtl {
    direction: rtl;
  }
  
  /* @media only screen and (min-width: 1600px) {
    #map_grid {
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 1.1fr auto auto auto;
    } */
    /* .map {
      height: 70vh;
    } */
  /* } */
  
  @media only screen and (max-width: 1600px) {
    #map_grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .map {
      height: 70vh;
    }
  }
  @media only screen and (max-width: 600px) {
    #map_grid {
      grid-template-columns: repeat(1, 1fr);
    }
    .map {
      height: 90vw;
    }
    #container_total {
      grid-row: 1;
      grid-column: 1;
      height: 90vw;
    }
  }
  
  #export-menu {
    float: right;
    margin: 0 0 -2em 0;
    position: relative;
    z-index: 1;
  }
  
  #export-menu div {
    background-color: #eee;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: none;
    margin: 0;
    right: 0;
    position: absolute;
    white-space: nowrap;
  }
  
  #export-menu span[onclick] {
    cursor: pointer;
    display: block;
    line-height: 2em;
    padding: 0 1em;
  }
  
  #export-menu:hover > div {
    display: block;
  }
  
  #export-menu:hover span[onclick]:hover {
    background-color: #369;
    color: #fff;
  }
  
  .fullscreen_btn {
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .fullscreen_img {
    width: 20px;
  }
  
  .outermap {
    position: relative;
  }
  
  /* Add Swich Mode */
  
  input[type="checkbox"] {
    display: none;
  }
  
  #switch {
      width: 160px;
      height: 50px;
      background-color: #212121;
      border-radius: 50px;
      position: relative;
      overflow: hidden;
  }
  
  #circle {
      width: 80px;
      height: 40px;
      background-color: white;
      position: absolute;
      top: 5px;
      left: 5px;
      border: 1px solid white;
      border-radius: 40px;
      z-index: 2;
      transition: 0.4s ease right, 0.4s ease background-position;
      left: 75px;
  }
  
  #text,
  #text2 {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      text-align: center;
  }
  
  #text {
      left: 10px;
  }
  
  #text2 {
      right: 10px;
  }
  
  #toggle:checked + #switch #circle {
      left: 75px;
  }
  
  #toggle:checked+#switch {
      background: rgb(241, 161, 12);
  }
  
  /* For RTL */
  [dir="rtl"] #circle {
      right: 5px;
      left: auto;
      transition: 0.4s ease right, 0.4s ease background-position;
  }
  
  [dir="rtl"] #text {
      right: 10px;
      left: auto;
  }
  
  [dir="rtl"] #text2 {
      left: 10px;
      right: auto;
  }
  
  [dir="rtl"] #toggle:checked+#switch #circle {
      right: 75px;
      left: auto;
  }
  