body{
	padding:0;
	margin:0;
	}
html,body,#map{
    height:100%;
    width:100%;
}

.leaflet-control-container .leaflet-routing-container-hide {
    display: none;
}
body {
    font-family: "Nunito", sans-serif;
}

* {
    outline: none;
  }

  .language-container {
    position: absolute;
    top: 1rem;          /* Distance from top */
    right: 1rem;        /* Distance from right */
    z-index: 1000;      /* Make sure it's above the map */
}

  /* Reset scope */
.bootstrap-scope {
  all: revert;
}

/* Core button group styles */
.btn-group {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  z-index: 9999;
}

/* Individual button styles */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: all .15s ease-in-out;
  background-color: #339764;
}

.btn-outline-primary {
  color: #fff;
  border: 1px solid #246a46;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #246a46;
}

/* Handle adjacent button borders/radius */
.btn-group > .btn:not(:first-child) {
  margin-top: -1px; /* Prevents double borders */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn:not(:last-child) {
  
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}


/* Active state for current language */
.btn-group > .btn:active,
.btn-group > .btn.active {
  color: #fff;
  background-color: #246a46;
}


  .search-container {
    display: table;
    width: 100%;
  }
  
  .search-input {
    display: table-cell;
    vertical-align: middle;
  }
  
  input,
  .search-button {
    color: #fff;
    font-family: Nunito, sans-serif;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: transparent;
  }
  
  #cover {
    position: absolute;
    z-index: 9999;
    top: 0.5%;
    left: 50%;
    transform: translateX(-50%) scale(0.3);
    width: 550px;
    padding: 35px;
    background-color: #339764;
    border-radius: 20px;
    box-shadow: 0 10px 40px #5cac83, 0 0 0 20px #ffffffeb;
    
  }
  
  #icaoForm {
    height: 96px;
  }
  
  input[type="text"] {
    width: 100%;
    height: 96px;
    font-size: 60px;
    line-height: 1;
  }
  
  input[type="text"]::placeholder {
    color: #246a46;
  }
  
  #s-cover {
    width: 1px;
    padding-left: 35px;
  }
  
  .search-button {
    position: relative;
    display: block;
    width: 84px;
    height: 96px;
    cursor: pointer;
  }
  
  #s-circle {
    position: relative;
    top: -8px;
    left: 0;
    width: 43px;
    height: 43px;
    margin-top: 0;
    border-width: 15px;
    border: 15px solid #fff;
    background-color: transparent;
    border-radius: 50%;
    transition: 0.5s ease all;
  }
  
  .search-button span {
    position: absolute;
    top: 68px;
    left: 43px;
    display: block;
    width: 45px;
    height: 15px;
    background-color: transparent;
    border-radius: 10px;
    transform: rotateZ(52deg);
    transition: 0.5s ease all;
  }
  
  .search-button span:before,
  .search-button span:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 15px;
    background-color: #fff;
    border-radius: 10px;
    transform: rotateZ(0);
    transition: 0.5s ease all;
  }
  
  #s-cover:hover #s-circle {
    top: -1px;
    width: 67px;
    height: 15px;
    border-width: 0;
    background-color: #fff;
    border-radius: 20px;
  }
  
  #s-cover:hover span {
    top: 50%;
    left: 56px;
    width: 25px;
    margin-top: -9px;
    transform: rotateZ(0);
  }
  
  #s-cover:hover .search-button span:before {
    bottom: 11px;
    transform: rotateZ(52deg);
  }
  
  #s-cover:hover .search-button span:after {
    bottom: -11px;
    transform: rotateZ(-52deg);
  }
  #s-cover:hover .search-button span:before,
  #s-cover:hover .search-button span:after {
    right: -6px;
    width: 40px;
    background-color: #fff;
  }

  #phone-cover {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 165px;
    padding: 35px;
    margin: -250px auto 0 auto;
    background-color: whitesmoke;
    border-radius: 20px;
    box-shadow: 0 10px 10px lightgray, 0 0 0;
    z-index: 9999;
    font-family: Nunito, sans-serif;
    text-align: center;
    font-size: 1rem;
  }
  #infocard, #phonenum {
    margin: 0;
  }

  .error-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    font-family: 'Nunito', sans-serif;
    color: #d62828;
    text-align: center;
}