/* Box for the direct-to overlay */
.mapSettingsOverlay{
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 100000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.503); /* Black w/ opacity */
  }

.mapSettingsBox {    
    /* background-color: hsla(250, 61%, 10%, 0.841); */
    background: linear-gradient(#040534e0, #014434db);
    /* background: linear-gradient(#040534e0, #280634d4); */
    margin: 30px auto; /* 15% from the top and centered */
    overflow: auto;
    overflow-y: scroll;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 40px;
    width: 85%; /* Could be more or less, depending on screen size */
    max-width: 700px;
    color:#ffffff;
    height: 90%;
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 1);
    font-size: 14px;
  }

.mapSelectionContainer{
    margin: 0px;
    padding: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;   
  }

  .mapSelectionBox{
    background: #00000000;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: center;
    margin: 5px;
    padding: 2px;
    
    width: 100px;
    border: 1px solid #ffffff00;
    border-radius: 16px;
    text-shadow: none;
    cursor: pointer;
  }

.mapSelectionImageContainer{
    background: #00000048;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13px;
    padding: 0px;
    width: 100%;
    aspect-ratio: 1/1;
    border: 2px solid #5a5a5ab8;
    border-radius: 16px;
    text-shadow: none;
    cursor: pointer;
    overflow: hidden;
    transition: border 0.1s;
  }

    .mapSelectionImage{
        width: 100%;
        height: 100%;
        /* border-radius: 16px; */
    }

    .mapSelectionTitle{
        font-weight: bold;
        color: #ffffff;
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .mapSelectionDescription{
        color: #dfdfdf;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }


.updateInProgressOverlay{
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */
  z-index: 10000; /* Sit on top */
  padding-left: 50px;
  padding-right: 50px;
  top: 15px;
  width: 100%;
  height: fit-content;
  background-color: rgba(0, 0, 0, 0);
}

.updateInProgressContentBox{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #0e0c1bcb;
  font-size: 15px;
  padding: 1px;
  width: fit-content;
  margin: auto;
  border: 1px solid #ffffff00;
  border-radius: 10px;
  text-shadow: none;
  cursor: pointer;
}

.updateInProgressText{
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
  margin: 5px;
}

.update-lds-ring,
.update-lds-ring div {
  box-sizing: border-box;
}
.update-lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
.update-lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 4px;
  border: 4px solid rgb(228, 195, 47);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: rgb(228, 195, 47) transparent transparent transparent;
}
.update-lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.update-lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.upddate-lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.updateLoaderContainer{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0px;
}