span.line-through {
    opacity: 0.6;
}

.modal-s {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-spinner {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
}

.close {
  position: absolute;
  top: 8px; 
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.modal-content {
  animation: modal-entrance 0.5s ease-out;
}

@keyframes modal-entrance {
  from {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.5);
  }
  to {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
  }
}


/*#searchCityContainer {*/
/*  text-align: center;*/
/*  position: relative; */
/*}*/

/*#searchcityInput {*/
/*  padding: 8px;*/
/*  font-size: 16px;*/
/*}*/

/*#searchCityResults {*/
/*  position: absolute;*/
/*  top: 50px;*/
/*  width: 100%;*/
/*  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
/*  background-color: #fff; */
/*  z-index: 1;*/
/*}*/

/*.cityResult {*/
/*  padding: 5px;*/
/*  border: 1px solid #ccc;*/
/*  margin-bottom: 5px;*/
/*  cursor: pointer;*/
/*}*/

