.infobutton-container {
  position: relative; /* Position the container relative to its parent */
  background-color: transparent;
}

.popup {
  display: none;
  position: absolute;
  width: 300px;
  height: auto;
  background-color: rgb(37, 35, 35);
  padding: 15px 30px;
  z-index: 10000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  text-align: left;
}

@media (max-width: 850px) {
  .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 851px) {
  .popupcenter {
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
  }
  .popupright,
  .popupleft {
    top: 50%;
    transform: translateY(-50%);
  }
  .popupright {
    left: calc(100% + 10px);
  }
  .popupleft {
    right: calc(100% + 10px);
  }
}

.popup-message {
  color: white;
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 1px;
}
.flextoppartpopup{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popuptitle {
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
}

.infobutton {
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.infobuttonimg {
  width: 15px;
  height: 15px;
}




.flex_topname {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}