.mgrlg_shortcode_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.google-link-box {
  /*    width: 40%;*/
  padding: 20px;
  border-radius: 10px;
  font-family: sans-serif;
  border: 2px solid gray;
}
.google-link-box h3 {
  color: black;
  font-size: 50px;
  font-weight: 700;
  margin: 22px 0px;
}
#placeid {
  border: 3px dashed #eee !important;
}
.google-link-box p {
  margin-top: 15px;
  margin-bottom: 0;
  color: rgb(98, 104, 110);
  text-align: center;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.mgrlg_search_bar {
  width: 100%;
  padding: 8px 15px !important;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}
.mgrlg_link_bar {
  width: 100%;
  padding: 8px 15px !important;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  border: 3px dashed #eee;
}

.mgrlg_search_results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 99;
}

.mgrlg_search_results li {
  padding: 7px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mgrlg_search_results li:hover {
  background-color: #f5f5f5;
}
.mgrlg_tips {
  font-size: 15px;
  margin: 0px !important;
}
.mgrlg_location_name {
  font-weight: bold;
}

@media only screen and (max-width: 1440px) {
  .google-link-box h3 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 999px) {
  .google-link-box h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .google-link-box h3 {
    font-size: 18px;
  }
}

/* Loader */
.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #fff;
  animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
