.popup_for_geolocation {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
}
.popup_for_geolocation .bg_close_loc {
  z-index: 5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #121826CC;
}
.popup_for_geolocation .main_content_location {
  z-index: 10;
  width: 90%;
  max-width: 500px;
  height: fit-content;
  max-height: 90%;
  padding: 15px;
  background-color: white;
  border-radius: 15px;
}
.popup_for_geolocation .main_content_location .header_popup {
  width: 100%;
  height: 38px;
  border-bottom: 1px solid #BABCC0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BABCC0;
  font-weight: 600;
  box-sizing: border-box;
}
.popup_for_geolocation .content_text {
  width: 100%;
  min-height: 80px;
  text-align: center;
  color: #3D4356;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.popup_for_geolocation .content_buttons {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.popup_for_geolocation .content_buttons button {
  padding: 3px 10px;
  border-radius: 20px;
  border: none;
  background-color: var(--color-primary);
  font-weight: 500;
  color: white;
}
.popup_for_geolocation .content_buttons .btn_cancel {
  background-color: #bebebe;
}
.popup_for_geolocation[data-open="true"] {
  display: flex;
  animation-name: opacity;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
