.tabs {
  display: flex;
  background-color: #f1f1f1;
}

.tab {
  flex: 1;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;
}

.tab.active {
  background-color: #abccd8;
  color: white;
}

.tab:hover:not(.active) {
  background-color: #ddd;
}

.content {
  flex: 1;
  display: flex;
  position: relative;
}

.map-container {
  flex: 1;
  height: 100%;
  z-index: 1;
}

#map {
  width: 100%;
  height: 100%;
}

.info-panel {
  width: 300px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  position: absolute;
  z-index: 2;
  padding: 40px 20px;

  top: 0;
}

.info-panel.open {
  transform: translateX(0);
}

.content{
  height: calc(100vh - 186px);
 }

@media screen and (max-width:768px) {
  /* .info-panel{
    top: 70px;
  } */
   footer{
    display: none;
   }
   .content{
    height: calc(100vh - 126px);
   }
   /* #map{
    height: 100% !important;
   } */
}

/* .info-content {
  
} */

.info-content h2 {
  margin-bottom: 10px;
  color: #162d56;
  font-size: 20px;
}

.info-content p {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 15px;
  display: flex;
  gap: 3px;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  background-color: #abccd8;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* .custom-icon {
  background: white;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
} */

.vet-icon {
  background-color: #162d56;
}

.park-icon {
  background-color: #abccd8;
}

.map-btn{
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  margin: 10px 0 !important;
  padding: 7px 0 !important;
}

.map-link-wrapper{
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}
.map-link-wrapper a{
  width: 35px;
  height: 35px;
  transition: all 0.3s ease-in-out;
}
.map-link-wrapper a:hover{
  transform: scale(1.1);
}
.map-link-wrapper a img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#locationWebsite{
  text-decoration: underline;
  cursor: pointer;
}
#locationWebsite:hover{
  color: #162d56;
}


#qodef-page-inner{
  padding: 0 !important;
}
@media screen and (max-width:768px) {
  #qodef-page-outer{
      margin-top: 70px;
  }

  .close-btn{
    width: 25px;
    height: 25px;
    font-size: 21px;
  }
  .info-panel{
    padding: 35px 15px 75px 15px;
    width: 260px;
  }

  /* body{
    overflow-y: hidden;
  } */
}