 body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin: 0px;
    background-color: whitesmoke;
}

#mapid {
    height: 500px;
    width: 80%;
    border-radius: 4px;
    box-shadow: 0 0 10px #DDD;
    max-width: 1000px;
}

*{
    font-family: "Nunito Sans";
    box-sizing: border-box;
}


.button1 {
    border-radius: 5px;
    background-color: white;
    color: black;
    border: 2px solid #6D9775;
}

.button1:hover {
    background-color: #6D9775;
    color: white;
}

.button1.current {
    background-color: #6D9775;
    color: white;
}

.slideshowContainer {
    margin: 10px;
}

.coloured-box{
    box-shadow: 0 0 10px #DDD;
    margin:10px;
    width: 100px;
    height: 100px;
    color:white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coloured-box-container{
    margin:10px;
    margin-bottom: 30px;
    display: flex;
}

select {
    height: 50px;
    padding: 0 15px;
    background-color: #fff;
    border-radius: 4px;
    border:none;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 40px 0;
    transition: background-color .25s ease-in-out;
                box-shadow: 0 0 10px #DDD;
}

select:focus-visible{
    outline: none;
    box-shadow: 0 0 10px #6693F5;
}

.header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    width: 100%;
    box-shadow: 0 0 10px #6D9775;
}

.header h1 {
    color: #6D9775;
    margin: 20px;
    padding: 10px;
    margin: auto;
    text-align: center;
}

main{
    width: 100%;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}


.lds-ellipsis {
  display: none;
  position: relative;
  width: 80px;
  height: 80px;

  left: calc(50% - 40px);
  top: calc(50% - 40px);
  z-index: 99999;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #6D9775;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

@media (max-width: calc(630px / 0.8)) {
    .coloured-box-container{
        width: 80%;
        margin:0;
        flex-direction: column;
    }

    .coloured-box{
        width: 100%;
        margin: 5px 0;
        padding: 5px;
        height: auto;
    }

    select{
        margin: 20px 0;
    }
}