html,
body {
  margin: 0;
  padding: 0;
}

#map {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#homeFlagIcon {
  width: 60px;
  height: 28px;
  margin-left: 2px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 58px;
  color: #ffffff;
}

#selectContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 11px 10px;
}

#countrySelect {
  width: 200px;
  margin: 5px;
}

#countrySelect {
  margin-left: 5px;
  margin-right: 5px;
}

#weather-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-color: #2c3e50;
  color: #ffffff;
  opacity: 0.5;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 2px;
  padding-left: 4px;
  margin: 10px 10px 10px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#txtWidgetWeatherTemperature {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

#txtWidgetWeatherDescription {
  margin: 3px 0;
}


#pre-load {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#pre-load:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #56829e ;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    }
    }
    @keyframes animate-preloader {
    0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    }
}

.modal-body {
  overflow: hidden;
  min-height: 350px;
}

.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 1s linear;
}

.footer {
  position: fixed;
  bottom: 0;
}
