.welcome-message-container {
  display: none;
  position: fixed;
  overflow: auto;
  z-index: 999;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background: rgb(0 0 0 / 60%);
}

.popup-overlay {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 57.625rem;
  transform: translate(-50%, -50%);
}

.welcome-message {
  padding: 0;
  width: 100%;
  display: flex;
}

.welcome-message-img {
  width: 50%;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.welcome-message-img img {
  height: auto;
  width: 100%;
}

.welcome-message-content {
  width: 50%;
}

.welcome-message-content-box {
  padding: 20px;
}

@media only screen and (max-width: 767px) {
  .popup-overlay {
    width: 94%;
    top: 10px;
    transform: translate(-50%, 0%);
  }

  .welcome-message {
    flex-direction: column;
  }

  .welcome-message-img,
  .welcome-message-content {
    width: 100%;
  }
}

button.close-welcome-message {
  z-index: 9;
  position: absolute;
  right: 0;
  background: transparent;
  color: #000;
  font-size: 35px;
  border: none;
  cursor: pointer;
}
