
.moreMapButtons_Container{
    z-index: 1;
    position: absolute;
    top: 100px;
    left: 15px !important;
    transition: .5s ease;
    justify-content: center;
    align-items: center;
}

.map_btn{
    height: 32px;
    width: 32px;
    margin: 2px;
    
    background: #002244;
    border: none;
    border-radius: 5px;
    color: #fff;
    justify-content: center;
    align-items: center;

}
.map_btn i{
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;

    padding: 5px;
}

.map_btn.active {
    background-color: #002244;
    color: #fff;
    border: 2px solid;
    height: 32px;
    width: 32px;
    margin: 2px;
}



.map_btn.active:focus {
    box-shadow: none;
} 










.home_select{
    display: block;
    width: 100%;
    padding: 0.5rem 0.45rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #0f0f0f;
    /* appearance: none; */
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #000000;
    border-radius: 0.375rem;
    transition: 0.2s ease;


}

.home_select:focus {
    color: #404040;
    background-color: transparent;
    border: 1px solid #000000;
    outline: 0;
    box-shadow: none;
  }







  
  .nav_icons_imgs{
    /* width: inherit; */
    /* height: 60px !important; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: inherit; */
  }
  .nav_icons_imgs img{
    height: 40px;

    /* width: 30px; */

  }





/* ----------------------------- */
/* Loader */
/* ----------------------------- */

  .loader_container {
    position: fixed;
    top: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    right: 0px;
    left: 0px;
    bottom: 0px;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  
  
  
  .loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #262626;
    width: 120px;
    height: 120px;
    -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);
    }
  }

  


.map_layer_loader_container {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 10px;
  
  
  
  }
  
  .map_loader_container {
    position: absolute;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    right: 0px;
    left: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
  
  
  }
  
  .map_loader_container .map_loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #262626;
    width: 120px;
    height: 120px;
    -webkit-animation: spinMapLayerLoader 2s linear infinite;
    animation: spinMapLayerLoader 2s linear infinite;
  }
  
  @-webkit-keyframes spinMapLayerLoader {
    0% {
      -webkit-transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  
  @keyframes spinMapLayerLoader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

  


/* ----------------------------- */
/* Map Legend */
/* ----------------------------- */
#legend_btn{
position: absolute;
  bottom: 50px;
    left: 10px;
        z-index: 900;
}
  #legend-container {
    width: 200px;
    bottom: 90px;
    left: 10px;
    z-index: 900;
    position: absolute;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
  }
  
  .legend-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
  }
  
  .legend-bar {
    height: 20px;
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 5px;
  }
  
  .legend-labels span {
    font-size: 12px;
  }
  
  .legend-items {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  
  .legend-items-color {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    margin-right: 8px;
  }
  
  .legend-items-desc {
    font-size: 12px;
    flex: 1;
  }
  


  .form_input{

  }

  .form_input input{
    padding: 5px;
    border: 0.5px solid rgb(192, 192, 192);
    width: 100%;
    border-radius: 5px;
  }









#alert_container {

  position: fixed;
  bottom: 20px;
  right: 20px;
  min-width: 20vw;
  /* color: rgb(0, 43, 63);
      background-color: #6ed5f7; */
  /* color: rgb(0, 0, 0); */
  /* background-color: #FFC107; */
  /* padding: 15px 25px; */
  /* border-radius: 5px 0px 0px 5px; */
  opacity: 1;
  visibility: visible;
  animation: fade-in 0.5s ease-out forwards;
  z-index: 10000;
}
.show_alert{
    display: block;
    animation: fade-in 0.5s ease-out forwards;

}
.hide_alert{
    display: none;
    animation: fade-out 0.5s ease-in forwards;
}

@keyframes fade-in {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
  
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fade-out {
    from {
      opacity: 1;
      transform: translateX(0);
    }
  
    to {
      opacity: 0;
      /* transform: translateX(50px); */
    }
  }

  .search_btn{
    /* background-color: whitesmoke; */
    background-color: transparent;
    padding: 5px 10px;
    border-radius: 5px;
    border: none !important;
  }

  .search_btn:focus{
    outline: none;
  }


  #layer_controller{
    z-index: 100;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background-color: #000000;
    color: rgb(255, 255, 255);
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 5px;
  }



/* Video Style */



    .video-wrapper {
    position: relative;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
  }

  .video-wrapper video {
    width: 100%;
    display: block;
  }

  .custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 2;
  }

  .custom-play-button::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 26px;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent rgb(0, 37, 29);
  }

  .video-wrapper video.show-controls {
    controls: true;
  }

