@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);


html, body {
    margin: 0;
    padding: 0;
  }
  
  #map {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
  }
  
  #selectContainer {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 11px 0;
  }
  
  #countrySelect {
    width: 200px;
    margin: 0 auto;
  }

  #Overview {
    display: block;
    margin: 10px auto;
    width: 150px;
}


form :where(input, select, button){
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
}

form input:focus{
  padding: 0 14px;
  border: 2px solid #675AFE;
}


.drop-list .select-box{
  width: 115px;
  height: 45px;
}

.select-box select{
  width: auto;
}

.select-box select::-webkit-scrollbar{
  width: 8px;
}

.select-box::-webkit-scrollbar-track{
  background-color: #f1f1f1;
}

.select-box::-webkit-scrollbar-thumb{
  background-color: #888;
  border-radius: 8px;
  border-right: 2px solid #fff;
}

.select-box img{
  max-width: 25px;
}

drop-list .icon{
  cursor: pointer;
}


#newsModalLabel{
  text-align: left;
}

#currentWeather {
  background-color: white;
  padding: 0;
  border-radius: 10px;
}

.modal-title-country {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.modal-title-country span {
  font-size: 1.6rem;
  font-weight: bold;
  margin-left: 70px;
}

.modal-title-country img {
  width: 100px;
  height: auto;
  margin-left: 20px;
  /*margin-left: 60px;*/
}

@keyframes slideIn {
  from {
    transform: translate(-100%, 0); 
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.modal-slide-in {
  animation: slideIn 0.5s ease-in-out;
}


#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Preloader with white background */
.preloader-background {
  background-color: white;
}

/* Preloader without background */
.preloader-nobg {
  background-color: transparent;
}


.spinner {
  width: 80px;
  height: 80px;
  position: relative;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0008ff; 
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1.0s;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(0.0);
  }
  50% {
    transform: scale(1.0);
  }
}


/*Media Queries*/
@media (max-width: 480px) {
  .modal-title-country span {
    font-size: 1rem; 
    margin-left: 20px; 
}
.modal-title-country img {
  width: 40px; 
}
}


@media (max-width: 992px) {
    .navbar .form-select {
        width: 100%; 
        margin-top: 10px; 
    }
}

