.popup-msg-container {
  border-radius: 40px;
  background: #fff0d4;
  position: fixed;
  z-index: 999999;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 1px 1px 10px rgba(96, 96, 96, 0.326),
    -1px -1px 10px rgba(95, 95, 95, 0.326);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  padding: 20px;
  transition: all 0.45s ease;
}

.popup-msg-container span {
  color: rgb(69, 46, 0);
}

.popup-msg-container svg {
  fill: rgb(69, 46, 0);
}

.top {
  top: 40px;
}