@media screen and (min-width: 360px) and (max-width: 480px) {
  
  #popup-container{
  
    top: 20px;

  }
}










#popup-container {
  display:block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#popup {
  position: relative;
  max-width: 400px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

#popup-close {
  position: absolute;
  top:-2px;
  right: 10px;
  font-size: 24px;
  color: #333;
  text-decoration: none;
}

#popup-close:hover {
  color: #702F9C;
}

#popup h3 {
  margin: 0;
  padding: 7px;
  font-size: 17px;
  border-bottom: 1px solid #eee;
  background-color: rgb(118 133 155 / 25%);
}

#popup p {
  margin: 0;
  padding: 10px;
  font-size: 18px;
}
 
#popup-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;
}

#popup-buttons a {
  display: inline-block;
  padding: 10px 28px;
  background-color: #702F9C;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}

#popup-buttons a:hover {
  background-color: #702F9C;
}

#android-btn {
  margin-right: 10px;
}

#apple-btn {
  margin-left: 10px;
  background-color: #000;
}

#apple-btn:hover {
  background-color: #333;
}

#resize-handle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #702F9C;
  border-radius: 10px 0 0 0;
  cursor: nwse-resize;
}
