@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

.teko-location-2-view {
  cursor: pointer;
  font-size: 13px;
  color: #1607da;
  font-family: "Nunito";
  /* font-weight: bold; */
  display: flex;
  align-items: center;
}

.teko-location-2-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teko-location-2-modal {
  background: #fff;
  padding: 24px 20px 16px 20px;
  border-radius: 10px;
  width: 340px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
  position: relative;
  font-family: "Nunito";
}

.teko-location-2-modal-title {
  font-size: 13px;
  /* font-weight: bold; */
  margin-bottom: 8px;
}

.teko-location-2-modal-footer {
  text-align: right;
  margin-top: 20px;
}

.teko-location-2-modal-decline-btn {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
}

.teko-location-2-modal-ok-btn {
  background: #1607da;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
}